various fixes for "advanced" operations on range selections. ctrl-drags now add a...
[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 &, bool preserve_fade_anchor = false);
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         bool _preserve_fade_anchor;
536 };
537
538 /** Meter marker drag */
539 class MeterMarkerDrag : public Drag
540 {
541 public:
542         MeterMarkerDrag (Editor *, ArdourCanvas::Item *, bool);
543
544         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
545         void motion (GdkEvent *, bool);
546         void finished (GdkEvent *, bool);
547         void aborted (bool);
548
549         bool allow_vertical_autoscroll () const {
550                 return false;
551         }
552
553         bool y_movement_matters () const {
554                 return false;
555         }
556
557         void setup_pointer_frame_offset ();
558
559 private:
560         MeterMarker* _marker;
561         bool _copy;
562         XMLNode* before_state;
563 };
564
565 /** Tempo marker drag */
566 class TempoMarkerDrag : public Drag
567 {
568 public:
569         TempoMarkerDrag (Editor *, ArdourCanvas::Item *, bool);
570
571         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
572         void motion (GdkEvent *, bool);
573         void finished (GdkEvent *, bool);
574         void aborted (bool);
575
576         bool allow_vertical_autoscroll () const {
577                 return false;
578         }
579
580         bool y_movement_matters () const {
581                 return false;
582         }
583
584         void setup_pointer_frame_offset ();
585
586 private:
587         TempoMarker* _marker;
588         bool _copy;
589         XMLNode* before_state;
590 };
591
592
593 /** Drag of the playhead cursor */
594 class CursorDrag : public Drag
595 {
596 public:
597         CursorDrag (Editor *, ArdourCanvas::Item *, bool);
598
599         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
600         void motion (GdkEvent *, bool);
601         void finished (GdkEvent *, bool);
602         void aborted (bool);
603
604         bool active (Editing::MouseMode) {
605                 return true;
606         }
607
608         bool allow_vertical_autoscroll () const {
609                 return false;
610         }
611
612         bool y_movement_matters () const {
613                 return true;
614         }
615
616 private:
617         void fake_locate (framepos_t);
618
619         bool _stop; ///< true to stop the transport on starting the drag, otherwise false
620         double _grab_zoom; ///< editor frames per unit when our grab started
621 };
622
623 /** Region fade-in drag */
624 class FadeInDrag : public RegionDrag
625 {
626 public:
627         FadeInDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
628
629         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
630         void motion (GdkEvent *, bool);
631         void finished (GdkEvent *, bool);
632         void aborted (bool);
633
634         bool y_movement_matters () const {
635                 return false;
636         }
637
638         void setup_pointer_frame_offset ();
639 };
640
641 /** Region fade-out drag */
642 class FadeOutDrag : public RegionDrag
643 {
644 public:
645         FadeOutDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
646
647         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
648         void motion (GdkEvent *, bool);
649         void finished (GdkEvent *, bool);
650         void aborted (bool);
651
652         bool y_movement_matters () const {
653                 return false;
654         }
655
656         void setup_pointer_frame_offset ();
657 };
658
659 /** Marker drag */
660 class MarkerDrag : public Drag
661 {
662 public:
663         MarkerDrag (Editor *, ArdourCanvas::Item *);
664         ~MarkerDrag ();
665
666         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
667         void motion (GdkEvent *, bool);
668         void finished (GdkEvent *, bool);
669         void aborted (bool);
670
671         bool allow_vertical_autoscroll () const {
672                 return false;
673         }
674
675         bool y_movement_matters () const {
676                 return false;
677         }
678
679         void setup_pointer_frame_offset ();
680
681 private:
682         void update_item (ARDOUR::Location *);
683
684         Marker* _marker; ///< marker being dragged
685         std::list<ARDOUR::Location*> _copied_locations;
686         ArdourCanvas::Points _points;
687 };
688
689 /** Control point drag */
690 class ControlPointDrag : public Drag
691 {
692 public:
693         ControlPointDrag (Editor *, ArdourCanvas::Item *);
694
695         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
696         void motion (GdkEvent *, bool);
697         void finished (GdkEvent *, bool);
698         void aborted (bool);
699
700         bool active (Editing::MouseMode m);
701
702 private:
703
704         ControlPoint* _point;
705         double _fixed_grab_x;
706         double _fixed_grab_y;
707         double _cumulative_x_drag;
708         double _cumulative_y_drag;
709         static double _zero_gain_fraction;
710 };
711
712 /** Gain or automation line drag */
713 class LineDrag : public Drag
714 {
715 public:
716         LineDrag (Editor *e, ArdourCanvas::Item *i);
717
718         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
719         void motion (GdkEvent *, bool);
720         void finished (GdkEvent *, bool);
721         void aborted (bool);
722
723         bool active (Editing::MouseMode) {
724                 return true;
725         }
726
727 private:
728
729         AutomationLine* _line;
730         double _fixed_grab_x;
731         double _fixed_grab_y;
732         uint32_t _before;
733         uint32_t _after;
734         double _cumulative_y_drag;
735 };
736
737 /** Transient feature line drags*/
738 class FeatureLineDrag : public Drag
739 {
740 public:
741         FeatureLineDrag (Editor *e, ArdourCanvas::Item *i);
742
743         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
744         void motion (GdkEvent *, bool);
745         void finished (GdkEvent *, bool);
746         void aborted (bool);
747
748         bool active (Editing::MouseMode) {
749                 return true;
750         }
751
752 private:
753
754         ArdourCanvas::Line* _line;
755         AudioRegionView* _arv;
756
757         double _region_view_grab_x;
758         double _cumulative_x_drag;
759
760         float _before;
761         uint32_t _max_x;
762 };
763
764 /** Dragging of a rubberband rectangle for selecting things */
765 class RubberbandSelectDrag : public Drag
766 {
767 public:
768         RubberbandSelectDrag (Editor *, ArdourCanvas::Item *);
769
770         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
771         void motion (GdkEvent *, bool);
772         void finished (GdkEvent *, bool);
773         void aborted (bool);
774
775         std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
776                 return std::make_pair (8, 1);
777         }
778
779         void do_select_things (GdkEvent *, bool);
780
781         /** Select some things within a rectangle.
782          *  @param button_state The button state from the GdkEvent.
783          *  @param x1 The left-hand side of the rectangle in session frames.
784          *  @param x2 The right-hand side of the rectangle in session frames.
785          *  @param y1 The top of the rectangle in trackview coordinates.
786          *  @param y2 The bottom of the rectangle in trackview coordinates.
787          *  @param drag_in_progress true if the drag is currently happening.
788          */
789         virtual void select_things (int button_state, framepos_t x1, framepos_t x2, double y1, double y2, bool drag_in_progress) = 0;
790         
791         virtual void deselect_things () = 0;
792
793   protected:
794         bool _vertical_only;
795 };
796
797 /** A general editor RubberbandSelectDrag (for regions, automation points etc.) */
798 class EditorRubberbandSelectDrag : public RubberbandSelectDrag
799 {
800 public:
801         EditorRubberbandSelectDrag (Editor *, ArdourCanvas::Item *);
802
803         void select_things (int, framepos_t, framepos_t, double, double, bool);
804         void deselect_things ();
805 };
806
807 /** A RubberbandSelectDrag for selecting MIDI notes */
808 class MidiRubberbandSelectDrag : public RubberbandSelectDrag
809 {
810 public:
811         MidiRubberbandSelectDrag (Editor *, MidiRegionView *);
812
813         void select_things (int, framepos_t, framepos_t, double, double, bool);
814         void deselect_things ();
815
816 private:
817         MidiRegionView* _region_view;
818 };
819
820 /** A RubberbandSelectDrag for selecting MIDI notes but with no horizonal component */
821 class MidiVerticalSelectDrag : public RubberbandSelectDrag
822 {
823 public:
824         MidiVerticalSelectDrag (Editor *, MidiRegionView *);
825
826         void select_things (int, framepos_t, framepos_t, double, double, bool);
827         void deselect_things ();
828
829 private:
830         MidiRegionView* _region_view;
831 };
832
833 /** Region drag in time-FX mode */
834 class TimeFXDrag : public RegionDrag
835 {
836 public:
837         TimeFXDrag (Editor *, ArdourCanvas::Item *, RegionView *, std::list<RegionView*> const &);
838
839         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
840         void motion (GdkEvent *, bool);
841         void finished (GdkEvent *, bool);
842         void aborted (bool);
843 };
844
845 /** Scrub drag in audition mode */
846 class ScrubDrag : public Drag
847 {
848 public:
849         ScrubDrag (Editor *, ArdourCanvas::Item *);
850
851         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
852         void motion (GdkEvent *, bool);
853         void finished (GdkEvent *, bool);
854         void aborted (bool);
855 };
856
857 /** Drag in range select mode */
858 class SelectionDrag : public Drag
859 {
860 public:
861         enum Operation {
862                 CreateSelection,
863                 SelectionStartTrim,
864                 SelectionEndTrim,
865                 SelectionMove,
866                 SelectionExtend
867         };
868
869         SelectionDrag (Editor *, ArdourCanvas::Item *, Operation);
870
871         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
872         void motion (GdkEvent *, bool);
873         void finished (GdkEvent *, bool);
874         void aborted (bool);
875
876         void setup_pointer_frame_offset ();
877
878 private:
879         Operation _operation;
880         bool _add;
881         bool _extend;
882         int _original_pointer_time_axis;
883         int _last_pointer_time_axis;
884         std::list<TimeAxisView*> _added_time_axes;
885         bool _time_selection_at_start;
886         framepos_t start_at_start;
887         framepos_t end_at_start;
888 };
889
890 /** Range marker drag */
891 class RangeMarkerBarDrag : public Drag
892 {
893 public:
894         enum Operation {
895                 CreateRangeMarker,
896                 CreateTransportMarker,
897                 CreateCDMarker
898         };
899
900         RangeMarkerBarDrag (Editor *, ArdourCanvas::Item *, Operation);
901
902         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
903         void motion (GdkEvent *, bool);
904         void finished (GdkEvent *, bool);
905         void aborted (bool);
906
907         bool allow_vertical_autoscroll () const {
908                 return false;
909         }
910
911         bool y_movement_matters () const {
912                 return false;
913         }
914
915 private:
916         void update_item (ARDOUR::Location *);
917
918         Operation _operation;
919         ArdourCanvas::SimpleRect* _drag_rect;
920         bool _copy;
921 };
922
923 /** Drag of rectangle to set zoom */
924 class MouseZoomDrag : public Drag
925 {
926 public:
927         MouseZoomDrag (Editor *, ArdourCanvas::Item *);
928
929         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
930         void motion (GdkEvent *, bool);
931         void finished (GdkEvent *, bool);
932         void aborted (bool);
933
934         std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
935                 return std::make_pair (4, 4);
936         }
937
938 private:
939         bool _zoom_out;
940 };
941
942 /** Drag of a range of automation data (either on an automation track or region gain),
943  *  changing value but not position.
944  */
945 class AutomationRangeDrag : public Drag
946 {
947 public:
948         AutomationRangeDrag (Editor *, AutomationTimeAxisView *, std::list<ARDOUR::AudioRange> const &);
949         AutomationRangeDrag (Editor *, AudioRegionView *, std::list<ARDOUR::AudioRange> const &);
950
951         void start_grab (GdkEvent *, Gdk::Cursor* c = 0);
952         void motion (GdkEvent *, bool);
953         void finished (GdkEvent *, bool);
954         void aborted (bool);
955
956         bool x_movement_matters () const {
957                 return false;
958         }
959
960         bool active (Editing::MouseMode) {
961                 return true;
962         }
963
964 private:
965         void setup (std::list<boost::shared_ptr<AutomationLine> > const &);
966         double y_fraction (boost::shared_ptr<AutomationLine>, double global_y_position) const;
967
968         std::list<ARDOUR::AudioRange> _ranges;
969
970         /** A line that is part of the drag */
971         struct Line {
972                 boost::shared_ptr<AutomationLine> line; ///< the line
973                 std::list<ControlPoint*> points; ///< points to drag on the line
974                 std::pair<ARDOUR::framepos_t, ARDOUR::framepos_t> range; ///< the range of all points on the line, in session frames
975                 XMLNode* state; ///< the XML state node before the drag
976                 double original_fraction; ///< initial y-fraction before the drag
977         };
978
979         std::list<Line> _lines;
980         double y_origin;
981         bool _nothing_to_drag;
982 };
983
984 /** Drag of one edge of an xfade
985  */
986 class CrossfadeEdgeDrag : public Drag
987 {
988   public:
989         CrossfadeEdgeDrag (Editor*, AudioRegionView*, ArdourCanvas::Item*, bool start);
990
991         void start_grab (GdkEvent*, Gdk::Cursor* c = 0);
992         void motion (GdkEvent*, bool);
993         void finished (GdkEvent*, bool);
994         void aborted (bool);
995         
996         bool y_movement_matters () const {
997                 return false;
998         }
999
1000         virtual std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
1001                 return std::make_pair (4, 4);
1002         }
1003
1004   private:
1005         AudioRegionView* arv;
1006         bool start;
1007 };
1008
1009 #endif /* __gtk2_ardour_editor_drag_h_ */
1010