provide some numerical data during automation trim (range) drags, and correct computa...
[ardour.git] / gtk2_ardour / editor_drag.h
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk2_ardour_editor_drag_h_
21 #define __gtk2_ardour_editor_drag_h_
22
23 #include <list>
24
25 #include <gdk/gdk.h>
26 #include <stdint.h>
27
28 #include "ardour/types.h"
29
30 #include "canvas.h"
31 #include "editor_items.h"
32
33 namespace ARDOUR {
34         class Location;
35 }
36
37 namespace PBD {
38         class StatefulDiffCommand;
39 }
40
41 namespace Gnome {
42         namespace Canvas {
43                 class CanvasNoteEvent;
44                 class CanvasPatchChange;
45         }
46 }
47
48 class Editor;
49 class EditorCursor;
50 class TimeAxisView;
51 class MidiTimeAxisView;
52 class Drag;
53
54 /** Class to manage current drags */
55 class DragManager
56 {
57 public:
58
59         DragManager (Editor* e);
60         ~DragManager ();
61
62         bool motion_handler (GdkEvent *, bool);
63
64         void abort ();
65         void add (Drag *);
66         void set (Drag *, GdkEvent *, Gdk::Cursor* c = 0);
67         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
68         bool end_grab (GdkEvent *);
69         bool have_item (ArdourCanvas::Item *) const;
70
71         /** @return true if an end drag or abort is in progress */
72         bool ending () const {
73                 return _ending;
74         }
75
76         bool active () const {
77                 return !_drags.empty ();
78         }
79
80         /** @return current pointer x position in trackview coordinates */
81         double current_pointer_x () const {
82                 return _current_pointer_x;
83         }
84
85         /** @return current pointer y position in trackview coordinates */
86         double current_pointer_y () const {
87                 return _current_pointer_y;
88         }
89
90         /** @return current pointer frame */
91         ARDOUR::framepos_t current_pointer_frame () const {
92                 return _current_pointer_frame;
93         }
94
95 private:
96         Editor* _editor;
97         std::list<Drag*> _drags;
98         bool _ending; ///< true if end_grab or abort is in progress, otherwise false
99         double _current_pointer_x; ///< trackview x of the current pointer
100         double _current_pointer_y; ///< trackview y of the current pointer
101         ARDOUR::framepos_t _current_pointer_frame; ///< frame that the pointer is now at
102         bool _old_follow_playhead; ///< state of Editor::follow_playhead() before the drags started
103 };
104
105 /** Abstract base class for dragging of things within the editor */
106 class Drag
107 {
108 public:
109         Drag (Editor *, ArdourCanvas::Item *);
110         virtual ~Drag () {}
111
112         void set_manager (DragManager* m) {
113                 _drags = m;
114         }
115
116         /** @return the canvas item being dragged */
117         ArdourCanvas::Item* item () const {
118                 return _item;
119         }
120
121         void swap_grab (ArdourCanvas::Item *, Gdk::Cursor *, uint32_t);
122         bool motion_handler (GdkEvent*, bool);
123         void abort ();
124
125         ARDOUR::framepos_t adjusted_frame (ARDOUR::framepos_t, GdkEvent const *, bool snap = true) const;
126         ARDOUR::framepos_t adjusted_current_frame (GdkEvent const *, bool snap = true) const;
127
128         /** Called to start a grab of an item.
129          *  @param e Event that caused the grab to start.
130          *  @param c Cursor to use, or 0.
131          */
132         virtual void start_grab (GdkEvent* e, Gdk::Cursor* c = 0);
133
134         virtual bool end_grab (GdkEvent *);
135
136         /** Called when a drag motion has occurred.
137          *  @param e Event describing the motion.
138          *  @param f true if this is the first movement, otherwise false.
139          */
140         virtual void motion (GdkEvent* e, bool f) = 0;
141
142         /** Called when a drag has finished.
143          *  @param e Event describing the finish.
144          *  @param m true if some movement occurred, otherwise false.
145          */
146         virtual void finished (GdkEvent* e, bool m) = 0;
147
148         /** Called to abort a drag and return things to how
149          *  they were before it started.
150          *  @param m true if some movement occurred, otherwise false.
151          */
152         virtual void aborted (bool m) = 0;
153
154         /** @param m Mouse mode.
155          *  @return true if this drag should happen in this mouse mode.
156          */
157         virtual bool active (Editing::MouseMode m) {
158                 return (m != Editing::MouseGain);
159         }
160
161         /** @return minimum number of frames (in x) and pixels (in y) that should be considered a movement */
162         virtual std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
163                 return std::make_pair (1, 1);
164         }
165
166         virtual bool allow_vertical_autoscroll () const {
167                 return true;
168         }
169
170         /** @return true if x movement matters to this drag */
171         virtual bool x_movement_matters () const {
172                 return true;
173         }
174
175         /** @return true if y movement matters to this drag */
176         virtual bool y_movement_matters () const {
177                 return true;
178         }
179
180         /** Set up the _pointer_frame_offset */
181         virtual void setup_pointer_frame_offset () {
182                 _pointer_frame_offset = 0;
183         }
184
185 protected:
186
187         double grab_x () const {
188                 return _grab_x;
189         }
190
191         double grab_y () const {
192                 return _grab_y;
193         }
194
195         ARDOUR::framepos_t raw_grab_frame () const {
196                 return _raw_grab_frame;
197         }
198
199         ARDOUR::framepos_t grab_frame () const {
200                 return _grab_frame;
201         }
202
203         double last_pointer_x () const {
204                 return _last_pointer_x;
205         }
206
207         double last_pointer_y () const {
208                 return _last_pointer_y;
209         }
210
211         double last_pointer_frame () const {
212                 return _last_pointer_frame;
213         }
214
215         boost::shared_ptr<ARDOUR::Region> add_midi_region (MidiTimeAxisView*);
216
217         void show_verbose_cursor_time (framepos_t);
218         void show_verbose_cursor_duration (framepos_t, framepos_t, double xoffset = 0);
219         void show_verbose_cursor_text (std::string const &);
220
221         Editor* _editor; ///< our editor
222         DragManager* _drags;
223         ArdourCanvas::Item* _item; ///< our item
224         /** Offset from the mouse's position for the drag to the start of the thing that is being dragged */
225         ARDOUR::framecnt_t _pointer_frame_offset;
226         bool _x_constrained; ///< true if x motion is constrained, otherwise false
227         bool _y_constrained; ///< true if y motion is constrained, otherwise false
228         bool _was_rolling; ///< true if the session was rolling before the drag started, otherwise false
229
230 private:
231
232         bool _move_threshold_passed; ///< true if the move threshold has been passed, otherwise false
233         double _grab_x; ///< trackview x of the grab start position
234         double _grab_y; ///< trackview y of the grab start position
235         double _last_pointer_x; ///< trackview x of the pointer last time a motion occurred
236         double _last_pointer_y; ///< trackview y of the pointer last time a motion occurred
237         ARDOUR::framepos_t _raw_grab_frame; ///< unsnapped frame that the mouse was at when start_grab was called, or 0
238         ARDOUR::framepos_t _grab_frame; ///< adjusted_frame that the mouse was at when start_grab was called, or 0
239         ARDOUR::framepos_t _last_pointer_frame; ///< adjusted_frame the last time a motion occurred
240 };
241
242 class RegionDrag;
243
244 /** Container for details about a region being dragged */
245 class DraggingView
246 {
247 public:
248         DraggingView (RegionView *, RegionDrag *);
249
250         RegionView* view; ///< the view
251         /** index into RegionDrag::_time_axis_views of the view that this region is currently being displayed on,
252          *  or -1 if it is not visible.
253          */
254         int time_axis_view;
255         /** layer that this region is currently being displayed on.  This is a double
256             rather than a layer_t as we use fractional layers during drags to allow the user
257             to indicate a new layer to put a region on.
258         */
259         double layer;
260         double initial_y; ///< the initial y position of the view before any reparenting
261         framepos_t initial_position; ///< initial position of the region
262         framepos_t initial_end; ///< initial end position of the region
263         boost::shared_ptr<ARDOUR::Playlist> initial_playlist;
264 };
265
266 /** Abstract base class for drags that involve region(s) */
267 class RegionDrag : public Drag, public sigc::trackable
268 {
269 public:
270         RegionDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
271         virtual ~RegionDrag () {}
272
273 protected:
274
275         RegionView* _primary; ///< the view that was clicked on (or whatever) to start the drag
276         std::list<DraggingView> _views; ///< information about all views that are being dragged
277
278         /** a list of the non-hidden TimeAxisViews sorted by editor order key */
279         std::vector<TimeAxisView*> _time_axis_views;
280         int find_time_axis_view (TimeAxisView *) const;
281
282         int _visible_y_low;
283         int _visible_y_high;
284
285         friend class DraggingView;
286
287 private:
288
289         void region_going_away (RegionView *);
290         PBD::ScopedConnection death_connection;
291 };
292
293
294 /** Drags involving region motion from somewhere */
295 class RegionMotionDrag : public RegionDrag
296 {
297 public:
298
299         RegionMotionDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &, bool);
300         virtual ~RegionMotionDrag () {}
301
302         virtual void start_grab (GdkEvent *, Gdk::Cursor *);
303         virtual void motion (GdkEvent *, bool);
304         virtual void finished (GdkEvent *, bool);
305         virtual void aborted (bool);
306
307         /** @return true if the regions being `moved' came from somewhere on the canvas;
308          *  false if they came from outside (e.g. from the region list).
309          */
310         virtual bool regions_came_from_canvas () const = 0;
311
312 protected:
313
314         double compute_x_delta (GdkEvent const *, ARDOUR::framepos_t *);
315         bool y_movement_allowed (int, double) const;
316
317         bool _brushing;
318         ARDOUR::framepos_t _last_frame_position; ///< last position of the thing being dragged
319         double _total_x_delta;
320         int _last_pointer_time_axis_view;
321         double _last_pointer_layer;
322 };
323
324
325 /** Drags to move (or copy) regions that are already shown in the GUI to
326  *  somewhere different.
327  */
328 class RegionMoveDrag : public RegionMotionDrag
329 {
330 public:
331         RegionMoveDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &, bool, bool);
332         virtual ~RegionMoveDrag () {}
333
334         void motion (GdkEvent *, bool);
335         void finished (GdkEvent *, bool);
336         void aborted (bool);
337
338         bool regions_came_from_canvas () const {
339                 return true;
340         }
341
342         std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
343                 return std::make_pair (4, 4);
344         }
345
346         void setup_pointer_frame_offset ();
347
348 private:
349         typedef std::set<boost::shared_ptr<ARDOUR::Playlist> > PlaylistSet;
350
351         void finished_no_copy (
352                 bool const,
353                 bool const,
354                 ARDOUR::framecnt_t const
355                 );
356
357         void finished_copy (
358                 bool const,
359                 bool const,
360                 ARDOUR::framecnt_t const
361                 );
362
363         RegionView* insert_region_into_playlist (
364                 boost::shared_ptr<ARDOUR::Region>,
365                 RouteTimeAxisView*,
366                 ARDOUR::layer_t,
367                 ARDOUR::framecnt_t,
368                 PlaylistSet&
369                 );
370
371         void remove_region_from_playlist (
372                 boost::shared_ptr<ARDOUR::Region>,
373                 boost::shared_ptr<ARDOUR::Playlist>,
374                 PlaylistSet& modified_playlists
375                 );
376
377         void add_stateful_diff_commands_for_playlists (PlaylistSet const &);
378
379         void collect_new_region_view (RegionView *);
380
381         bool _copy;
382         RegionView* _new_region_view;
383 };
384
385 /** Drag to insert a region from somewhere */
386 class RegionInsertDrag : public RegionMotionDrag
387 {
388 public:
389         RegionInsertDrag (Editor *, boost::shared_ptr<ARDOUR::Region>, RouteTimeAxisView*, ARDOUR::framepos_t);
390
391         void finished (GdkEvent *, bool);
392         void aborted (bool);
393
394         bool regions_came_from_canvas () const {
395                 return false;
396         }
397 };
398
399 /** Region drag in splice mode */
400 class RegionSpliceDrag : public RegionMoveDrag
401 {
402 public:
403         RegionSpliceDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
404
405         void motion (GdkEvent *, bool);
406         void finished (GdkEvent *, bool);
407         void aborted (bool);
408 };
409
410 /** Drags to create regions */
411 class RegionCreateDrag : public Drag
412 {
413 public:
414         RegionCreateDrag (Editor *, ArdourCanvas::Item *, TimeAxisView *);
415
416         void motion (GdkEvent *, bool);
417         void finished (GdkEvent *, bool);
418         void aborted (bool);
419
420 private:
421         MidiTimeAxisView* _view;
422         boost::shared_ptr<ARDOUR::Region> _region;
423 };
424
425 /** Drags to resize MIDI notes */
426 class NoteResizeDrag : public Drag
427 {
428 public:
429         NoteResizeDrag (Editor *, ArdourCanvas::Item *);
430
431         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
432         void motion (GdkEvent *, bool);
433         void finished (GdkEvent *, bool);
434         void aborted (bool);
435
436 private:
437         MidiRegionView*     region;
438         bool                relative;
439         bool                at_front;
440 };
441
442 /** Drags to move MIDI notes */
443 class NoteDrag : public Drag
444 {
445   public:
446         NoteDrag (Editor*, ArdourCanvas::Item*);
447
448         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
449         void motion (GdkEvent *, bool);
450         void finished (GdkEvent *, bool);
451         void aborted (bool);
452
453   private:
454
455         ARDOUR::frameoffset_t total_dx () const;
456         int8_t total_dy () const;
457
458         MidiRegionView* _region;
459         Gnome::Canvas::CanvasNoteEvent* _primary;
460         double _cumulative_dx;
461         double _cumulative_dy;
462         bool _was_selected;
463         double _note_height;
464 };
465
466 class NoteCreateDrag : public Drag
467 {
468 public:
469         NoteCreateDrag (Editor *, ArdourCanvas::Item *, MidiRegionView *);
470         ~NoteCreateDrag ();
471
472         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
473         void motion (GdkEvent *, bool);
474         void finished (GdkEvent *, bool);
475         void aborted (bool);
476
477 private:
478         double y_to_region (double) const;
479         framecnt_t grid_frames (framepos_t) const;
480         
481         MidiRegionView* _region_view;
482         ArdourCanvas::SimpleRect* _drag_rect;
483         framepos_t _note[2];
484 };
485
486 /** Drag to move MIDI patch changes */
487 class PatchChangeDrag : public Drag
488 {
489 public:
490         PatchChangeDrag (Editor *, ArdourCanvas::CanvasPatchChange *, MidiRegionView *);
491
492         void motion (GdkEvent *, bool);
493         void finished (GdkEvent *, bool);
494         void aborted (bool);
495
496         bool y_movement_matters () const {
497                 return false;
498         }
499
500         void setup_pointer_frame_offset ();
501
502 private:
503         MidiRegionView* _region_view;
504         ArdourCanvas::CanvasPatchChange* _patch_change;
505         double _cumulative_dx;
506 };
507
508 /** Drag to trim region(s) */
509 class TrimDrag : public RegionDrag
510 {
511 public:
512         enum Operation {
513                 StartTrim,
514                 EndTrim,
515                 ContentsTrim,
516         };
517
518         TrimDrag (Editor *, ArdourCanvas::Item *, RegionView*, std::list<RegionView*> const &);
519
520         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
521         void motion (GdkEvent *, bool);
522         void finished (GdkEvent *, bool);
523         void aborted (bool);
524
525         bool y_movement_matters () const {
526                 return false;
527         }
528
529         void setup_pointer_frame_offset ();
530
531 private:
532
533         Operation _operation;
534 };
535
536 /** Meter marker drag */
537 class MeterMarkerDrag : public Drag
538 {
539 public:
540         MeterMarkerDrag (Editor *, ArdourCanvas::Item *, bool);
541
542         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
543         void motion (GdkEvent *, bool);
544         void finished (GdkEvent *, bool);
545         void aborted (bool);
546
547         bool allow_vertical_autoscroll () const {
548                 return false;
549         }
550
551         bool y_movement_matters () const {
552                 return false;
553         }
554
555         void setup_pointer_frame_offset ();
556
557 private:
558         MeterMarker* _marker;
559         bool _copy;
560         XMLNode* before_state;
561 };
562
563 /** Tempo marker drag */
564 class TempoMarkerDrag : public Drag
565 {
566 public:
567         TempoMarkerDrag (Editor *, ArdourCanvas::Item *, bool);
568
569         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
570         void motion (GdkEvent *, bool);
571         void finished (GdkEvent *, bool);
572         void aborted (bool);
573
574         bool allow_vertical_autoscroll () const {
575                 return false;
576         }
577
578         bool y_movement_matters () const {
579                 return false;
580         }
581
582         void setup_pointer_frame_offset ();
583
584 private:
585         TempoMarker* _marker;
586         bool _copy;
587         XMLNode* before_state;
588 };
589
590
591 /** Drag of the playhead cursor */
592 class CursorDrag : public Drag
593 {
594 public:
595         CursorDrag (Editor *, ArdourCanvas::Item *, bool);
596
597         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
598         void motion (GdkEvent *, bool);
599         void finished (GdkEvent *, bool);
600         void aborted (bool);
601
602         bool active (Editing::MouseMode) {
603                 return true;
604         }
605
606         bool allow_vertical_autoscroll () const {
607                 return false;
608         }
609
610         bool y_movement_matters () const {
611                 return true;
612         }
613
614 private:
615         void fake_locate (framepos_t);
616
617         bool _stop; ///< true to stop the transport on starting the drag, otherwise false
618         double _grab_zoom; ///< editor frames per unit when our grab started
619 };
620
621 /** Region fade-in drag */
622 class FadeInDrag : public RegionDrag
623 {
624 public:
625         FadeInDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
626
627         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
628         void motion (GdkEvent *, bool);
629         void finished (GdkEvent *, bool);
630         void aborted (bool);
631
632         bool y_movement_matters () const {
633                 return false;
634         }
635
636         void setup_pointer_frame_offset ();
637 };
638
639 /** Region fade-out drag */
640 class FadeOutDrag : public RegionDrag
641 {
642 public:
643         FadeOutDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
644
645         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
646         void motion (GdkEvent *, bool);
647         void finished (GdkEvent *, bool);
648         void aborted (bool);
649
650         bool y_movement_matters () const {
651                 return false;
652         }
653
654         void setup_pointer_frame_offset ();
655 };
656
657 /** Marker drag */
658 class MarkerDrag : public Drag
659 {
660 public:
661         MarkerDrag (Editor *, ArdourCanvas::Item *);
662         ~MarkerDrag ();
663
664         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
665         void motion (GdkEvent *, bool);
666         void finished (GdkEvent *, bool);
667         void aborted (bool);
668
669         bool allow_vertical_autoscroll () const {
670                 return false;
671         }
672
673         bool y_movement_matters () const {
674                 return false;
675         }
676
677         void setup_pointer_frame_offset ();
678
679 private:
680         void update_item (ARDOUR::Location *);
681
682         Marker* _marker; ///< marker being dragged
683         std::list<ARDOUR::Location*> _copied_locations;
684         ArdourCanvas::Points _points;
685 };
686
687 /** Control point drag */
688 class ControlPointDrag : public Drag
689 {
690 public:
691         ControlPointDrag (Editor *, ArdourCanvas::Item *);
692
693         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
694         void motion (GdkEvent *, bool);
695         void finished (GdkEvent *, bool);
696         void aborted (bool);
697
698         bool active (Editing::MouseMode m);
699
700 private:
701
702         ControlPoint* _point;
703         double _fixed_grab_x;
704         double _fixed_grab_y;
705         double _cumulative_x_drag;
706         double _cumulative_y_drag;
707         static double _zero_gain_fraction;
708 };
709
710 /** Gain or automation line drag */
711 class LineDrag : public Drag
712 {
713 public:
714         LineDrag (Editor *e, ArdourCanvas::Item *i);
715
716         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
717         void motion (GdkEvent *, bool);
718         void finished (GdkEvent *, bool);
719         void aborted (bool);
720
721         bool active (Editing::MouseMode) {
722                 return true;
723         }
724
725 private:
726
727         AutomationLine* _line;
728         double _fixed_grab_x;
729         double _fixed_grab_y;
730         uint32_t _before;
731         uint32_t _after;
732         double _cumulative_y_drag;
733 };
734
735 /** Transient feature line drags*/
736 class FeatureLineDrag : public Drag
737 {
738 public:
739         FeatureLineDrag (Editor *e, ArdourCanvas::Item *i);
740
741         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
742         void motion (GdkEvent *, bool);
743         void finished (GdkEvent *, bool);
744         void aborted (bool);
745
746         bool active (Editing::MouseMode) {
747                 return true;
748         }
749
750 private:
751
752         ArdourCanvas::Line* _line;
753         AudioRegionView* _arv;
754
755         double _region_view_grab_x;
756         double _cumulative_x_drag;
757
758         float _before;
759         uint32_t _max_x;
760 };
761
762 /** Dragging of a rubberband rectangle for selecting things */
763 class RubberbandSelectDrag : public Drag
764 {
765 public:
766         RubberbandSelectDrag (Editor *, ArdourCanvas::Item *);
767
768         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
769         void motion (GdkEvent *, bool);
770         void finished (GdkEvent *, bool);
771         void aborted (bool);
772
773         std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
774                 return std::make_pair (8, 1);
775         }
776
777         void do_select_things (GdkEvent *, bool);
778
779         /** Select some things within a rectangle.
780          *  @param button_state The button state from the GdkEvent.
781          *  @param x1 The left-hand side of the rectangle in session frames.
782          *  @param x2 The right-hand side of the rectangle in session frames.
783          *  @param y1 The top of the rectangle in trackview coordinates.
784          *  @param y2 The bottom of the rectangle in trackview coordinates.
785          *  @param drag_in_progress true if the drag is currently happening.
786          */
787         virtual void select_things (int button_state, framepos_t x1, framepos_t x2, double y1, double y2, bool drag_in_progress) = 0;
788         
789         virtual void deselect_things () = 0;
790
791   protected:
792         bool _vertical_only;
793 };
794
795 /** A general editor RubberbandSelectDrag (for regions, automation points etc.) */
796 class EditorRubberbandSelectDrag : public RubberbandSelectDrag
797 {
798 public:
799         EditorRubberbandSelectDrag (Editor *, ArdourCanvas::Item *);
800
801         void select_things (int, framepos_t, framepos_t, double, double, bool);
802         void deselect_things ();
803 };
804
805 /** A RubberbandSelectDrag for selecting MIDI notes */
806 class MidiRubberbandSelectDrag : public RubberbandSelectDrag
807 {
808 public:
809         MidiRubberbandSelectDrag (Editor *, MidiRegionView *);
810
811         void select_things (int, framepos_t, framepos_t, double, double, bool);
812         void deselect_things ();
813
814 private:
815         MidiRegionView* _region_view;
816 };
817
818 /** A RubberbandSelectDrag for selecting MIDI notes but with no horizonal component */
819 class MidiVerticalSelectDrag : public RubberbandSelectDrag
820 {
821 public:
822         MidiVerticalSelectDrag (Editor *, MidiRegionView *);
823
824         void select_things (int, framepos_t, framepos_t, double, double, bool);
825         void deselect_things ();
826
827 private:
828         MidiRegionView* _region_view;
829 };
830
831 /** Region drag in time-FX mode */
832 class TimeFXDrag : public RegionDrag
833 {
834 public:
835         TimeFXDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
836
837         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
838         void motion (GdkEvent *, bool);
839         void finished (GdkEvent *, bool);
840         void aborted (bool);
841 };
842
843 /** Scrub drag in audition mode */
844 class ScrubDrag : public Drag
845 {
846 public:
847         ScrubDrag (Editor *, ArdourCanvas::Item *);
848
849         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
850         void motion (GdkEvent *, bool);
851         void finished (GdkEvent *, bool);
852         void aborted (bool);
853 };
854
855 /** Drag in range select mode */
856 class SelectionDrag : public Drag
857 {
858 public:
859         enum Operation {
860                 CreateSelection,
861                 SelectionStartTrim,
862                 SelectionEndTrim,
863                 SelectionMove
864         };
865
866         SelectionDrag (Editor *, ArdourCanvas::Item *, Operation);
867
868         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
869         void motion (GdkEvent *, bool);
870         void finished (GdkEvent *, bool);
871         void aborted (bool);
872
873         void setup_pointer_frame_offset ();
874
875 private:
876         Operation _operation;
877         bool _copy;
878         int _original_pointer_time_axis;
879         int _last_pointer_time_axis;
880         std::list<TimeAxisView*> _added_time_axes;
881         bool _time_selection_at_start;
882 };
883
884 /** Range marker drag */
885 class RangeMarkerBarDrag : public Drag
886 {
887 public:
888         enum Operation {
889                 CreateRangeMarker,
890                 CreateTransportMarker,
891                 CreateCDMarker
892         };
893
894         RangeMarkerBarDrag (Editor *, ArdourCanvas::Item *, Operation);
895
896         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
897         void motion (GdkEvent *, bool);
898         void finished (GdkEvent *, bool);
899         void aborted (bool);
900
901         bool allow_vertical_autoscroll () const {
902                 return false;
903         }
904
905         bool y_movement_matters () const {
906                 return false;
907         }
908
909 private:
910         void update_item (ARDOUR::Location *);
911
912         Operation _operation;
913         ArdourCanvas::SimpleRect* _drag_rect;
914         bool _copy;
915 };
916
917 /** Drag of rectangle to set zoom */
918 class MouseZoomDrag : public Drag
919 {
920 public:
921         MouseZoomDrag (Editor *, ArdourCanvas::Item *);
922
923         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
924         void motion (GdkEvent *, bool);
925         void finished (GdkEvent *, bool);
926         void aborted (bool);
927
928         std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
929                 return std::make_pair (4, 4);
930         }
931
932 private:
933         bool _zoom_out;
934 };
935
936 /** Drag of a range of automation data (either on an automation track or region gain),
937  *  changing value but not position.
938  */
939 class AutomationRangeDrag : public Drag
940 {
941 public:
942         AutomationRangeDrag (Editor *, AutomationTimeAxisView *, std::list<ARDOUR::AudioRange> const &);
943         AutomationRangeDrag (Editor *, AudioRegionView *, std::list<ARDOUR::AudioRange> const &);
944
945         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
946         void motion (GdkEvent *, bool);
947         void finished (GdkEvent *, bool);
948         void aborted (bool);
949
950         bool x_movement_matters () const {
951                 return false;
952         }
953
954         bool active (Editing::MouseMode) {
955                 return true;
956         }
957
958 private:
959         void setup (std::list<boost::shared_ptr<AutomationLine> > const &);
960         
961         std::list<ARDOUR::AudioRange> _ranges;
962
963         /** A line that is part of the drag */
964         struct Line {
965                 boost::shared_ptr<AutomationLine> line; ///< the line
966                 std::list<ControlPoint*> points; ///< points to drag on the line
967                 std::pair<ARDOUR::framepos_t, ARDOUR::framepos_t> range; ///< the range of all points on the line, in session frames
968                 XMLNode* state; ///< the XML state node before the drag
969                 double original_fraction; ///< initial y-fraction before the drag
970         };
971
972         std::list<Line> _lines;
973         TimeAxisView* track_view;
974         bool _nothing_to_drag;
975 };
976
977 /** Drag of one edge of an xfade
978  */
979 class CrossfadeEdgeDrag : public Drag
980 {
981   public:
982         CrossfadeEdgeDrag (Editor*, AudioRegionView*, ArdourCanvas::Item*, bool start);
983
984         void start_grab (GdkEvent*, Gdk::Cursor* c = 0);
985         void motion (GdkEvent*, bool);
986         void finished (GdkEvent*, bool);
987         void aborted (bool);
988         
989         bool y_movement_matters () const {
990                 return false;
991         }
992
993         virtual std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
994                 return std::make_pair (4, 4);
995         }
996
997   private:
998         AudioRegionView* arv;
999         bool start;
1000 };
1001
1002 #endif /* __gtk2_ardour_editor_drag_h_ */
1003