797ed4ffd7b9f375b971d21ef746ffb453951bca
[ardour.git] / gtk2_ardour / editor_drag.cc
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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <stdint.h>
25
26 #include "pbd/memento_command.h"
27 #include "pbd/basename.h"
28 #include "pbd/stateful_diff_command.h"
29
30 #include "gtkmm2ext/utils.h"
31
32 #include "ardour/audioengine.h"
33 #include "ardour/audioregion.h"
34 #include "ardour/dB.h"
35 #include "ardour/midi_region.h"
36 #include "ardour/operations.h"
37 #include "ardour/region_factory.h"
38 #include "ardour/session.h"
39
40 #include "editor.h"
41 #include "i18n.h"
42 #include "keyboard.h"
43 #include "audio_region_view.h"
44 #include "midi_region_view.h"
45 #include "ardour_ui.h"
46 #include "gui_thread.h"
47 #include "control_point.h"
48 #include "utils.h"
49 #include "region_gain_line.h"
50 #include "editor_drag.h"
51 #include "audio_time_axis.h"
52 #include "midi_time_axis.h"
53 #include "canvas-note.h"
54 #include "selection.h"
55 #include "midi_selection.h"
56 #include "automation_time_axis.h"
57 #include "debug.h"
58 #include "editor_cursors.h"
59 #include "mouse_cursors.h"
60 #include "verbose_cursor.h"
61
62 using namespace std;
63 using namespace ARDOUR;
64 using namespace PBD;
65 using namespace Gtk;
66 using namespace Gtkmm2ext;
67 using namespace Editing;
68 using namespace ArdourCanvas;
69
70 using Gtkmm2ext::Keyboard;
71
72 double ControlPointDrag::_zero_gain_fraction = -1.0;
73
74 DragManager::DragManager (Editor* e)
75         : _editor (e)
76         , _ending (false)
77         , _current_pointer_frame (0)
78 {
79 }
80
81 DragManager::~DragManager ()
82 {
83         abort ();
84 }
85
86 /** Call abort for each active drag */
87 void
88 DragManager::abort ()
89 {
90         _ending = true;
91
92         for (list<Drag*>::const_iterator i = _drags.begin(); i != _drags.end(); ++i) {
93                 (*i)->abort ();
94                 delete *i;
95         }
96
97         if (!_drags.empty ()) {
98                 _editor->set_follow_playhead (_old_follow_playhead, false);
99         }
100
101         _drags.clear ();
102
103         _ending = false;
104 }
105
106 void
107 DragManager::add (Drag* d)
108 {
109         d->set_manager (this);
110         _drags.push_back (d);
111 }
112
113 void
114 DragManager::set (Drag* d, GdkEvent* e, Gdk::Cursor* c)
115 {
116         d->set_manager (this);
117         _drags.push_back (d);
118         start_grab (e, c);
119 }
120
121 void
122 DragManager::start_grab (GdkEvent* e, Gdk::Cursor* c)
123 {
124         /* Prevent follow playhead during the drag to be nice to the user */
125         _old_follow_playhead = _editor->follow_playhead ();
126         _editor->set_follow_playhead (false);
127
128         _current_pointer_frame = _editor->event_frame (e, &_current_pointer_x, &_current_pointer_y);
129
130         for (list<Drag*>::const_iterator i = _drags.begin(); i != _drags.end(); ++i) {
131                 (*i)->start_grab (e, c);
132         }
133 }
134
135 /** Call end_grab for each active drag.
136  *  @return true if any drag reported movement having occurred.
137  */
138 bool
139 DragManager::end_grab (GdkEvent* e)
140 {
141         _ending = true;
142
143         bool r = false;
144         for (list<Drag*>::iterator i = _drags.begin(); i != _drags.end(); ++i) {
145                 bool const t = (*i)->end_grab (e);
146                 if (t) {
147                         r = true;
148                 }
149                 delete *i;
150         }
151
152         _drags.clear ();
153
154         _ending = false;
155
156         _editor->set_follow_playhead (_old_follow_playhead, false);
157
158         return r;
159 }
160
161 bool
162 DragManager::motion_handler (GdkEvent* e, bool from_autoscroll)
163 {
164         bool r = false;
165
166         _current_pointer_frame = _editor->event_frame (e, &_current_pointer_x, &_current_pointer_y);
167
168         for (list<Drag*>::iterator i = _drags.begin(); i != _drags.end(); ++i) {
169                 bool const t = (*i)->motion_handler (e, from_autoscroll);
170                 if (t) {
171                         r = true;
172                 }
173
174         }
175
176         return r;
177 }
178
179 bool
180 DragManager::have_item (ArdourCanvas::Item* i) const
181 {
182         list<Drag*>::const_iterator j = _drags.begin ();
183         while (j != _drags.end() && (*j)->item () != i) {
184                 ++j;
185         }
186
187         return j != _drags.end ();
188 }
189
190 Drag::Drag (Editor* e, ArdourCanvas::Item* i)
191         : _editor (e)
192         , _item (i)
193         , _pointer_frame_offset (0)
194         , _move_threshold_passed (false)
195         , _raw_grab_frame (0)
196         , _grab_frame (0)
197         , _last_pointer_frame (0)
198 {
199
200 }
201
202 void
203 Drag::swap_grab (ArdourCanvas::Item* new_item, Gdk::Cursor* cursor, uint32_t time)
204 {
205         _item->ungrab (0);
206         _item = new_item;
207
208         if (cursor == 0) {
209                 _item->grab (Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK, time);
210         } else {
211                 _item->grab (Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK, *cursor, time);
212         }
213 }
214
215 void
216 Drag::start_grab (GdkEvent* event, Gdk::Cursor *cursor)
217 {
218         // if dragging with button2, the motion is x constrained, with Alt-button2 it is y constrained
219
220         if (Keyboard::is_button2_event (&event->button)) {
221                 if (Keyboard::modifier_state_equals (event->button.state, Keyboard::SecondaryModifier)) {
222                         _y_constrained = true;
223                         _x_constrained = false;
224                 } else {
225                         _y_constrained = false;
226                         _x_constrained = true;
227                 }
228         } else {
229                 _x_constrained = false;
230                 _y_constrained = false;
231         }
232
233         _raw_grab_frame = _editor->event_frame (event, &_grab_x, &_grab_y);
234         setup_pointer_frame_offset ();
235         _grab_frame = adjusted_frame (_raw_grab_frame, event);
236         _last_pointer_frame = _grab_frame;
237         _last_pointer_x = _grab_x;
238         _last_pointer_y = _grab_y;
239
240         if (cursor == 0) {
241                 _item->grab (Gdk::POINTER_MOTION_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK,
242                              event->button.time);
243         } else {
244                 _item->grab (Gdk::POINTER_MOTION_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK,
245                              *cursor,
246                              event->button.time);
247         }
248
249         if (_editor->session() && _editor->session()->transport_rolling()) {
250                 _was_rolling = true;
251         } else {
252                 _was_rolling = false;
253         }
254
255         switch (_editor->snap_type()) {
256         case SnapToRegionStart:
257         case SnapToRegionEnd:
258         case SnapToRegionSync:
259         case SnapToRegionBoundary:
260                 _editor->build_region_boundary_cache ();
261                 break;
262         default:
263                 break;
264         }
265 }
266
267 /** Call to end a drag `successfully'.  Ungrabs item and calls
268  *  subclass' finished() method.
269  *
270  *  @param event GDK event, or 0.
271  *  @return true if some movement occurred, otherwise false.
272  */
273 bool
274 Drag::end_grab (GdkEvent* event)
275 {
276         _editor->stop_canvas_autoscroll ();
277
278         _item->ungrab (event ? event->button.time : 0);
279
280         finished (event, _move_threshold_passed);
281
282         _editor->verbose_cursor()->hide ();
283
284         return _move_threshold_passed;
285 }
286
287 framepos_t
288 Drag::adjusted_frame (framepos_t f, GdkEvent const * event, bool snap) const
289 {
290         framepos_t pos = 0;
291
292         if (f > _pointer_frame_offset) {
293                 pos = f - _pointer_frame_offset;
294         }
295
296         if (snap) {
297                 _editor->snap_to_with_modifier (pos, event);
298         }
299
300         return pos;
301 }
302
303 framepos_t
304 Drag::adjusted_current_frame (GdkEvent const * event, bool snap) const
305 {
306         return adjusted_frame (_drags->current_pointer_frame (), event, snap);
307 }
308
309 bool
310 Drag::motion_handler (GdkEvent* event, bool from_autoscroll)
311 {
312         /* check to see if we have moved in any way that matters since the last motion event */
313         if (_move_threshold_passed &&
314             (!x_movement_matters() || _last_pointer_frame == adjusted_current_frame (event)) &&
315             (!y_movement_matters() || _last_pointer_y == _drags->current_pointer_y ()) ) {
316                 return false;
317         }
318
319         pair<framecnt_t, int> const threshold = move_threshold ();
320
321         bool const old_move_threshold_passed = _move_threshold_passed;
322
323         if (!from_autoscroll && !_move_threshold_passed) {
324
325                 bool const xp = (::llabs (_drags->current_pointer_frame () - _raw_grab_frame) >= threshold.first);
326                 bool const yp = (::fabs ((_drags->current_pointer_y () - _grab_y)) >= threshold.second);
327
328                 _move_threshold_passed = ((xp && x_movement_matters()) || (yp && y_movement_matters()));
329         }
330
331         if (active (_editor->mouse_mode) && _move_threshold_passed) {
332
333                 if (event->motion.state & Gdk::BUTTON1_MASK || event->motion.state & Gdk::BUTTON2_MASK) {
334                         if (!from_autoscroll) {
335                                 bool const moving_left = _drags->current_pointer_x() < _last_pointer_x;
336                                 bool const moving_up = _drags->current_pointer_y() < _last_pointer_y;
337                                 _editor->maybe_autoscroll (true, allow_vertical_autoscroll (), moving_left, moving_up);
338                         }
339
340                         motion (event, _move_threshold_passed != old_move_threshold_passed);
341
342                         _last_pointer_x = _drags->current_pointer_x ();
343                         _last_pointer_y = _drags->current_pointer_y ();
344                         _last_pointer_frame = adjusted_current_frame (event);
345
346                         return true;
347                 }
348         }
349         return false;
350 }
351
352 /** Call to abort a drag.  Ungrabs item and calls subclass's aborted () */
353 void
354 Drag::abort ()
355 {
356         if (_item) {
357                 _item->ungrab (0);
358         }
359
360         aborted (_move_threshold_passed);
361
362         _editor->stop_canvas_autoscroll ();
363         _editor->verbose_cursor()->hide ();
364 }
365
366 void
367 Drag::show_verbose_cursor_time (framepos_t frame)
368 {
369         _editor->verbose_cursor()->set_time (
370                 frame,
371                 _drags->current_pointer_x() + 10 - _editor->horizontal_position(),
372                 _drags->current_pointer_y() + 10 - _editor->vertical_adjustment.get_value() + _editor->canvas_timebars_vsize
373                 );
374
375         _editor->verbose_cursor()->show ();
376 }
377
378 void
379 Drag::show_verbose_cursor_duration (framepos_t start, framepos_t end, double xoffset)
380 {
381         _editor->verbose_cursor()->show (xoffset);
382
383         _editor->verbose_cursor()->set_duration (
384                 start, end,
385                 _drags->current_pointer_x() + 10 - _editor->horizontal_position(),
386                 _drags->current_pointer_y() + 10 - _editor->vertical_adjustment.get_value() + _editor->canvas_timebars_vsize
387                 );
388 }
389
390 void
391 Drag::show_verbose_cursor_text (string const & text)
392 {
393         _editor->verbose_cursor()->show ();
394
395         _editor->verbose_cursor()->set (
396                 text,
397                 _drags->current_pointer_x() + 10 - _editor->horizontal_position(),
398                 _drags->current_pointer_y() + 10 - _editor->vertical_adjustment.get_value() + _editor->canvas_timebars_vsize
399                 );
400 }
401
402 boost::shared_ptr<Region>
403 Drag::add_midi_region (MidiTimeAxisView* view)
404 {
405         if (_editor->session()) {
406                 const TempoMap& map (_editor->session()->tempo_map());
407                 framecnt_t pos = grab_frame();
408                 const Meter& m = map.meter_at (pos);
409                 /* not that the frame rate used here can be affected by pull up/down which
410                    might be wrong.
411                 */
412                 framecnt_t len = m.frames_per_bar (map.tempo_at (pos), _editor->session()->frame_rate());
413                 return view->add_region (grab_frame(), len, true);
414         }
415
416         return boost::shared_ptr<Region>();
417 }
418
419 struct EditorOrderTimeAxisViewSorter {
420     bool operator() (TimeAxisView* a, TimeAxisView* b) {
421             RouteTimeAxisView* ra = dynamic_cast<RouteTimeAxisView*> (a);
422             RouteTimeAxisView* rb = dynamic_cast<RouteTimeAxisView*> (b);
423             assert (ra && rb);
424             return ra->route()->order_key (EditorSort) < rb->route()->order_key (EditorSort);
425     }
426 };
427
428 RegionDrag::RegionDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v)
429         : Drag (e, i),
430           _primary (p)
431 {
432         _editor->visible_order_range (&_visible_y_low, &_visible_y_high);
433
434         /* Make a list of tracks to refer to during the drag; we include hidden tracks,
435            as some of the regions we are dragging may be on such tracks.
436         */
437
438         TrackViewList track_views = _editor->track_views;
439         track_views.sort (EditorOrderTimeAxisViewSorter ());
440
441         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
442                 _time_axis_views.push_back (*i);
443                 
444                 TimeAxisView::Children children_list = (*i)->get_child_list ();
445                 for (TimeAxisView::Children::iterator j = children_list.begin(); j != children_list.end(); ++j) {
446                         _time_axis_views.push_back (j->get());
447                 }
448         }
449
450         /* the list of views can be empty at this point if this is a region list-insert drag
451          */
452
453         for (list<RegionView*>::const_iterator i = v.begin(); i != v.end(); ++i) {
454                 _views.push_back (DraggingView (*i, this));
455         }
456
457         RegionView::RegionViewGoingAway.connect (death_connection, invalidator (*this), boost::bind (&RegionDrag::region_going_away, this, _1), gui_context());
458 }
459
460 void
461 RegionDrag::region_going_away (RegionView* v)
462 {
463         list<DraggingView>::iterator i = _views.begin ();
464         while (i != _views.end() && i->view != v) {
465                 ++i;
466         }
467
468         if (i != _views.end()) {
469                 _views.erase (i);
470         }
471 }
472
473 /** Given a TimeAxisView, return the index of it into the _time_axis_views vector,
474  *  or -1 if it is not found.
475  */
476 int
477 RegionDrag::find_time_axis_view (TimeAxisView* t) const
478 {
479         int i = 0;
480         int const N = _time_axis_views.size ();
481         while (i < N && _time_axis_views[i] != t) {
482                 ++i;
483         }
484
485         if (i == N) {
486                 return -1;
487         }
488
489         return i;
490 }
491
492 RegionMotionDrag::RegionMotionDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v, bool b)
493         : RegionDrag (e, i, p, v),
494           _brushing (b),
495           _total_x_delta (0)
496 {
497
498 }
499
500
501 void
502 RegionMotionDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
503 {
504         Drag::start_grab (event, cursor);
505
506         show_verbose_cursor_time (_last_frame_position);
507
508         pair<TimeAxisView*, double> const tv = _editor->trackview_by_y_position (_drags->current_pointer_y ());
509         _last_pointer_time_axis_view = find_time_axis_view (tv.first);
510         _last_pointer_layer = tv.first->layer_display() == Overlaid ? 0 : tv.second;
511 }
512
513 double
514 RegionMotionDrag::compute_x_delta (GdkEvent const * event, framepos_t* pending_region_position)
515 {
516         /* compute the amount of pointer motion in frames, and where
517            the region would be if we moved it by that much.
518         */
519         *pending_region_position = adjusted_current_frame (event);
520
521         framepos_t sync_frame;
522         framecnt_t sync_offset;
523         int32_t sync_dir;
524
525         sync_offset = _primary->region()->sync_offset (sync_dir);
526
527         /* we don't handle a sync point that lies before zero.
528          */
529         if (sync_dir >= 0 || (sync_dir < 0 && *pending_region_position >= sync_offset)) {
530
531                 sync_frame = *pending_region_position + (sync_dir*sync_offset);
532
533                 _editor->snap_to_with_modifier (sync_frame, event);
534
535                 *pending_region_position = _primary->region()->adjust_to_sync (sync_frame);
536
537         } else {
538                 *pending_region_position = _last_frame_position;
539         }
540
541         if (*pending_region_position > max_framepos - _primary->region()->length()) {
542                 *pending_region_position = _last_frame_position;
543         }
544
545         double dx = 0;
546
547         /* in locked edit mode, reverse the usual meaning of _x_constrained */
548         bool const x_move_allowed = Config->get_edit_mode() == Lock ? _x_constrained : !_x_constrained;
549
550         if ((*pending_region_position != _last_frame_position) && x_move_allowed) {
551
552                 /* x movement since last time (in pixels) */
553                 dx = (static_cast<double> (*pending_region_position) - _last_frame_position) / _editor->frames_per_unit;
554
555                 /* total x movement */
556                 framecnt_t total_dx = *pending_region_position;
557                 if (regions_came_from_canvas()) {
558                         total_dx = total_dx - grab_frame ();
559                 }
560
561                 /* check that no regions have gone off the start of the session */
562                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
563                         if ((i->view->region()->position() + total_dx) < 0) {
564                                 dx = 0;
565                                 *pending_region_position = _last_frame_position;
566                                 break;
567                         }
568                 }
569
570                 _last_frame_position = *pending_region_position;
571         }
572
573         return dx;
574 }
575
576 bool
577 RegionMotionDrag::y_movement_allowed (int delta_track, double delta_layer) const
578 {
579         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
580                 int const n = i->time_axis_view + delta_track;
581                 if (n < 0 || n >= int (_time_axis_views.size())) {
582                         /* off the top or bottom track */
583                         return false;
584                 }
585
586                 RouteTimeAxisView const * to = dynamic_cast<RouteTimeAxisView const *> (_time_axis_views[n]);
587                 if (to == 0 || !to->is_track() || to->track()->data_type() != i->view->region()->data_type()) {
588                         /* not a track, or the wrong type */
589                         return false;
590                 }
591
592                 double const l = i->layer + delta_layer;
593
594                 /* Note that we allow layer to be up to 0.5 below zero, as this is used by `Expanded'
595                    mode to allow the user to place a region below another on layer 0.
596                 */
597                 if (delta_track == 0 && (l < -0.5 || l >= int (to->view()->layers()))) {
598                         /* Off the top or bottom layer; note that we only refuse if the track hasn't changed.
599                            If it has, the layers will be munged later anyway, so it's ok.
600                         */
601                         return false;
602                 }
603         }
604
605         /* all regions being dragged are ok with this change */
606         return true;
607 }
608
609 void
610 RegionMotionDrag::motion (GdkEvent* event, bool first_move)
611 {
612         assert (!_views.empty ());
613
614         /* Find the TimeAxisView that the pointer is now over */
615         pair<TimeAxisView*, double> const tv = _editor->trackview_by_y_position (_drags->current_pointer_y ());
616
617         if (first_move && tv.first->view()->layer_display() == Stacked) {
618                 tv.first->view()->set_layer_display (Expanded);
619         }
620
621         /* Bail early if we're not over a track */
622         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (tv.first);
623         if (!rtv || !rtv->is_track()) {
624                 _editor->verbose_cursor()->hide ();
625                 return;
626         }
627
628         /* Note: time axis views in this method are often expressed as an index into the _time_axis_views vector */
629
630         /* Here's the current pointer position in terms of time axis view and layer */
631         int const current_pointer_time_axis_view = find_time_axis_view (tv.first);
632         double const current_pointer_layer = tv.first->layer_display() == Overlaid ? 0 : tv.second;
633
634         /* Work out the change in x */
635         framepos_t pending_region_position;
636         double const x_delta = compute_x_delta (event, &pending_region_position);
637
638         /* Work out the change in y */
639         int delta_time_axis_view = current_pointer_time_axis_view - _last_pointer_time_axis_view;
640         double delta_layer = current_pointer_layer - _last_pointer_layer;
641
642         if (!y_movement_allowed (delta_time_axis_view, delta_layer)) {
643                 /* this y movement is not allowed, so do no y movement this time */
644                 delta_time_axis_view = 0;
645                 delta_layer = 0;
646         }
647
648         if (x_delta == 0 && delta_time_axis_view == 0 && delta_layer == 0 && !first_move) {
649                 /* haven't reached next snap point, and we're not switching
650                    trackviews nor layers. nothing to do.
651                 */
652                 return;
653         }
654
655         pair<set<boost::shared_ptr<Playlist> >::iterator,bool> insert_result;
656
657         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
658
659                 RegionView* rv = i->view;
660
661                 if (rv->region()->locked()) {
662                         continue;
663                 }
664
665                 if (first_move) {
666
667                         rv->drag_start (); 
668
669                         /* Absolutely no idea why this is necessary, but it is; without
670                            it, the region view disappears after the reparent.
671                         */
672                         _editor->update_canvas_now ();
673                         
674                         /* Reparent to a non scrolling group so that we can keep the
675                            region selection above all time axis views.
676                            Reparenting means that we will have to move the region view
677                            later, as the two parent groups have different coordinates.
678                         */
679
680                         rv->get_canvas_group()->reparent (*(_editor->_region_motion_group));
681                         
682                         rv->fake_set_opaque (true);
683                 }
684
685                 /* If we have moved tracks, we'll fudge the layer delta so that the
686                    region gets moved back onto layer 0 on its new track; this avoids
687                    confusion when dragging regions from non-zero layers onto different
688                    tracks.
689                 */
690                 double this_delta_layer = delta_layer;
691                 if (delta_time_axis_view != 0) {
692                         this_delta_layer = - i->layer;
693                 }
694
695                 /* The TimeAxisView that this region is now on */
696                 TimeAxisView* tv = _time_axis_views[i->time_axis_view + delta_time_axis_view];
697
698                 /* Ensure it is moved from stacked -> expanded if appropriate */
699                 if (tv->view()->layer_display() == Stacked) {
700                         tv->view()->set_layer_display (Expanded);
701                 }
702                 
703                 /* We're only allowed to go -ve in layer on Expanded views */
704                 if (tv->view()->layer_display() != Expanded && (i->layer + this_delta_layer) < 0) {
705                         this_delta_layer = - i->layer;
706                 }
707                 
708                 /* Set height */
709                 rv->set_height (tv->view()->child_height ());
710                 
711                 /* Update show/hidden status as the region view may have come from a hidden track,
712                    or have moved to one.
713                 */
714                 if (tv->hidden ()) {
715                         rv->get_canvas_group()->hide ();
716                 } else {
717                         rv->get_canvas_group()->show ();
718                 }
719
720                 /* Update the DraggingView */
721                 i->time_axis_view += delta_time_axis_view;
722                 i->layer += this_delta_layer;
723
724                 if (_brushing) {
725                         _editor->mouse_brush_insert_region (rv, pending_region_position);
726                 } else {
727                         double x = 0;
728                         double y = 0;
729
730                         /* Get the y coordinate of the top of the track that this region is now on */
731                         tv->canvas_display()->i2w (x, y);
732                         y += _editor->get_trackview_group_vertical_offset();
733                         
734                         /* And adjust for the layer that it should be on */
735                         StreamView* cv = tv->view ();
736                         switch (cv->layer_display ()) {
737                         case Overlaid:
738                                 break;
739                         case Stacked:
740                                 y += (cv->layers() - i->layer - 1) * cv->child_height ();
741                                 break;
742                         case Expanded:
743                                 y += (cv->layers() - i->layer - 0.5) * 2 * cv->child_height ();
744                                 break;
745                         }
746
747                         /* Now move the region view */
748                         rv->move (x_delta, y - rv->get_canvas_group()->property_y());
749                 }
750
751         } /* foreach region */
752
753         _total_x_delta += x_delta;
754
755         if (first_move) {
756                 _editor->cursor_group->raise_to_top();
757         }
758
759         if (x_delta != 0 && !_brushing) {
760                 show_verbose_cursor_time (_last_frame_position);
761         }
762
763         _last_pointer_time_axis_view += delta_time_axis_view;
764         _last_pointer_layer += delta_layer;
765 }
766
767 void
768 RegionMoveDrag::motion (GdkEvent* event, bool first_move)
769 {
770         if (_copy && first_move) {
771
772                 /* duplicate the regionview(s) and region(s) */
773
774                 list<DraggingView> new_regionviews;
775
776                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
777
778                         RegionView* rv = i->view;
779                         AudioRegionView* arv = dynamic_cast<AudioRegionView*>(rv);
780                         MidiRegionView* mrv = dynamic_cast<MidiRegionView*>(rv);
781
782                         const boost::shared_ptr<const Region> original = rv->region();
783                         boost::shared_ptr<Region> region_copy = RegionFactory::create (original, true);
784                         region_copy->set_position (original->position());
785
786                         RegionView* nrv;
787                         if (arv) {
788                                 boost::shared_ptr<AudioRegion> audioregion_copy
789                                 = boost::dynamic_pointer_cast<AudioRegion>(region_copy);
790
791                                 nrv = new AudioRegionView (*arv, audioregion_copy);
792                         } else if (mrv) {
793                                 boost::shared_ptr<MidiRegion> midiregion_copy
794                                         = boost::dynamic_pointer_cast<MidiRegion>(region_copy);
795                                 nrv = new MidiRegionView (*mrv, midiregion_copy);
796                         } else {
797                                 continue;
798                         }
799
800                         nrv->get_canvas_group()->show ();
801                         new_regionviews.push_back (DraggingView (nrv, this));
802
803                         /* swap _primary to the copy */
804
805                         if (rv == _primary) {
806                                 _primary = nrv;
807                         }
808
809                         /* ..and deselect the one we copied */
810
811                         rv->set_selected (false);
812                 }
813
814                 if (!new_regionviews.empty()) {
815
816                         /* reflect the fact that we are dragging the copies */
817
818                         _views = new_regionviews;
819
820                         swap_grab (new_regionviews.front().view->get_canvas_group (), 0, event ? event->motion.time : 0);
821
822                         /*
823                           sync the canvas to what we think is its current state
824                           without it, the canvas seems to
825                           "forget" to update properly after the upcoming reparent()
826                           ..only if the mouse is in rapid motion at the time of the grab.
827                           something to do with regionview creation taking so long?
828                         */
829                         _editor->update_canvas_now();
830                 }
831         }
832
833         RegionMotionDrag::motion (event, first_move);
834 }
835
836 void
837 RegionMotionDrag::finished (GdkEvent *, bool)
838 {
839         for (vector<TimeAxisView*>::iterator i = _time_axis_views.begin(); i != _time_axis_views.end(); ++i) {
840                 if (!(*i)->view()) {
841                         continue;
842                 }
843
844                 if ((*i)->view()->layer_display() == Expanded) {
845                         (*i)->view()->set_layer_display (Stacked);
846                 }
847         }
848 }
849
850 void
851 RegionMoveDrag::finished (GdkEvent* ev, bool movement_occurred)
852 {
853         RegionMotionDrag::finished (ev, movement_occurred);
854         
855         if (!movement_occurred) {
856                 /* just a click */
857                 return;
858         }
859
860         /* reverse this here so that we have the correct logic to finalize
861            the drag.
862         */
863
864         if (Config->get_edit_mode() == Lock) {
865                 _x_constrained = !_x_constrained;
866         }
867
868         assert (!_views.empty ());
869
870         /* We might have hidden region views so that they weren't visible during the drag
871            (when they have been reparented).  Now everything can be shown again, as region
872            views are back in their track parent groups.
873         */
874         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
875                 i->view->get_canvas_group()->show ();
876         }
877         
878         bool const changed_position = (_last_frame_position != _primary->region()->position());
879         bool const changed_tracks = (_time_axis_views[_views.front().time_axis_view] != &_views.front().view->get_time_axis_view());
880         framecnt_t const drag_delta = _primary->region()->position() - _last_frame_position;
881         
882         _editor->update_canvas_now ();
883
884         if (_copy) {
885
886                 finished_copy (
887                         changed_position,
888                         changed_tracks,
889                         drag_delta
890                         );
891
892         } else {
893
894                 finished_no_copy (
895                         changed_position,
896                         changed_tracks,
897                         drag_delta
898                         );
899
900         }
901
902         if (_editor->session() && Config->get_always_play_range()) {
903                 _editor->session()->request_locate (_editor->get_selection().regions.start());
904         }
905 }
906
907 void
908 RegionMoveDrag::finished_copy (bool const changed_position, bool const /*changed_tracks*/, framecnt_t const drag_delta)
909 {
910         RegionSelection new_views;
911         PlaylistSet modified_playlists;
912         list<RegionView*> views_to_delete;
913
914         if (_brushing) {
915                 /* all changes were made during motion event handlers */
916
917                 for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
918                         delete i->view;
919                 }
920
921                 _editor->commit_reversible_command ();
922                 return;
923         }
924
925         if (_x_constrained) {
926                 _editor->begin_reversible_command (Operations::fixed_time_region_copy);
927         } else {
928                 _editor->begin_reversible_command (Operations::region_copy);
929         }
930
931         /* insert the regions into their new playlists */
932         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
933
934                 if (i->view->region()->locked()) {
935                         continue;
936                 }
937
938                 framepos_t where;
939
940                 if (changed_position && !_x_constrained) {
941                         where = i->view->region()->position() - drag_delta;
942                 } else {
943                         where = i->view->region()->position();
944                 }
945
946                 RegionView* new_view = insert_region_into_playlist (
947                         i->view->region(), dynamic_cast<RouteTimeAxisView*> (_time_axis_views[i->time_axis_view]), i->layer, where, modified_playlists
948                         );
949
950                 if (new_view == 0) {
951                         continue;
952                 }
953
954                 new_views.push_back (new_view);
955
956                 /* we don't need the copied RegionView any more */
957                 views_to_delete.push_back (i->view);
958         }
959
960         /* Delete views that are no longer needed; we can't do this directly in the iteration over _views
961            because when views are deleted they are automagically removed from _views, which messes
962            up the iteration.
963         */
964         for (list<RegionView*>::iterator i = views_to_delete.begin(); i != views_to_delete.end(); ++i) {
965                 delete *i;
966         }
967
968         /* If we've created new regions either by copying or moving
969            to a new track, we want to replace the old selection with the new ones
970         */
971
972         if (new_views.size() > 0) {
973                 _editor->selection->set (new_views);
974         }
975
976         /* write commands for the accumulated diffs for all our modified playlists */
977         add_stateful_diff_commands_for_playlists (modified_playlists);
978
979         _editor->commit_reversible_command ();
980 }
981
982 void
983 RegionMoveDrag::finished_no_copy (
984         bool const changed_position,
985         bool const changed_tracks,
986         framecnt_t const drag_delta
987         )
988 {
989         RegionSelection new_views;
990         PlaylistSet modified_playlists;
991         PlaylistSet frozen_playlists;
992         set<RouteTimeAxisView*> views_to_update;
993
994         if (_brushing) {
995                 /* all changes were made during motion event handlers */
996                 _editor->commit_reversible_command ();
997                 return;
998         }
999
1000         if (_x_constrained) {
1001                 _editor->begin_reversible_command (_("fixed time region drag"));
1002         } else {
1003                 _editor->begin_reversible_command (Operations::region_drag);
1004         }
1005
1006         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ) {
1007
1008                 RegionView* rv = i->view;
1009
1010                 RouteTimeAxisView* const dest_rtv = dynamic_cast<RouteTimeAxisView*> (_time_axis_views[i->time_axis_view]);
1011                 double const dest_layer = i->layer;
1012
1013                 if (rv->region()->locked()) {
1014                         ++i;
1015                         continue;
1016                 }
1017
1018                 views_to_update.insert (dest_rtv);
1019
1020                 framepos_t where;
1021
1022                 if (changed_position && !_x_constrained) {
1023                         where = rv->region()->position() - drag_delta;
1024                 } else {
1025                         where = rv->region()->position();
1026                 }
1027
1028                 if (changed_tracks) {
1029
1030                         /* insert into new playlist */
1031
1032                         RegionView* new_view = insert_region_into_playlist (
1033                                 RegionFactory::create (rv->region (), true), dest_rtv, dest_layer, where, modified_playlists
1034                                 );
1035
1036                         if (new_view == 0) {
1037                                 ++i;
1038                                 continue;
1039                         }
1040
1041                         new_views.push_back (new_view);
1042
1043                         /* remove from old playlist */
1044
1045                         /* the region that used to be in the old playlist is not
1046                            moved to the new one - we use a copy of it. as a result,
1047                            any existing editor for the region should no longer be
1048                            visible.
1049                         */
1050                         rv->hide_region_editor();
1051                         rv->fake_set_opaque (false);
1052
1053                         remove_region_from_playlist (rv->region(), i->initial_playlist, modified_playlists);
1054
1055                 } else {
1056
1057                         rv->region()->clear_changes ();
1058
1059                         /*
1060                            motion on the same track. plonk the previously reparented region
1061                            back to its original canvas group (its streamview).
1062                            No need to do anything for copies as they are fake regions which will be deleted.
1063                         */
1064
1065                         rv->get_canvas_group()->reparent (*dest_rtv->view()->canvas_item());
1066                         rv->get_canvas_group()->property_y() = i->initial_y;
1067                         rv->drag_end ();
1068
1069                         /* just change the model */
1070
1071                         boost::shared_ptr<Playlist> playlist = dest_rtv->playlist();
1072
1073                         if (dest_rtv->view()->layer_display() == Stacked || dest_rtv->view()->layer_display() == Expanded) {
1074                                 playlist->set_layer (rv->region(), dest_layer);
1075                         }
1076
1077                         /* freeze playlist to avoid lots of relayering in the case of a multi-region drag */
1078
1079                         pair<PlaylistSet::iterator, bool> r = frozen_playlists.insert (playlist);
1080
1081                         if (r.second) {
1082                                 playlist->freeze ();
1083                         }
1084
1085                         /* this movement may result in a crossfade being modified, so we need to get undo
1086                            data from the playlist as well as the region.
1087                         */
1088
1089                         r = modified_playlists.insert (playlist);
1090                         if (r.second) {
1091                                 playlist->clear_changes ();
1092                         }
1093
1094                         rv->region()->set_position (where);
1095
1096                         _editor->session()->add_command (new StatefulDiffCommand (rv->region()));
1097                 }
1098
1099                 if (changed_tracks) {
1100
1101                         /* OK, this is where it gets tricky. If the playlist was being used by >1 tracks, and the region
1102                            was selected in all of them, then removing it from a playlist will have removed all
1103                            trace of it from _views (i.e. there were N regions selected, we removed 1,
1104                            but since its the same playlist for N tracks, all N tracks updated themselves, removed the
1105                            corresponding regionview, and _views is now empty).
1106
1107                            This could have invalidated any and all iterators into _views.
1108
1109                            The heuristic we use here is: if the region selection is empty, break out of the loop
1110                            here. if the region selection is not empty, then restart the loop because we know that
1111                            we must have removed at least the region(view) we've just been working on as well as any
1112                            that we processed on previous iterations.
1113
1114                            EXCEPT .... if we are doing a copy drag, then _views hasn't been modified and
1115                            we can just iterate.
1116                         */
1117
1118
1119                         if (_views.empty()) {
1120                                 break;
1121                         } else {
1122                                 i = _views.begin();
1123                         }
1124
1125                 } else {
1126                         ++i;
1127                 }
1128         }
1129
1130         /* If we've created new regions either by copying or moving
1131            to a new track, we want to replace the old selection with the new ones
1132         */
1133
1134         if (new_views.size() > 0) {
1135                 _editor->selection->set (new_views);
1136         }
1137
1138         for (set<boost::shared_ptr<Playlist> >::iterator p = frozen_playlists.begin(); p != frozen_playlists.end(); ++p) {
1139                 (*p)->thaw();
1140         }
1141
1142         /* write commands for the accumulated diffs for all our modified playlists */
1143         add_stateful_diff_commands_for_playlists (modified_playlists);
1144
1145         _editor->commit_reversible_command ();
1146
1147         /* We have futzed with the layering of canvas items on our streamviews.
1148            If any region changed layer, this will have resulted in the stream
1149            views being asked to set up their region views, and all will be well.
1150            If not, we might now have badly-ordered region views.  Ask the StreamViews
1151            involved to sort themselves out, just in case.
1152         */
1153
1154         for (set<RouteTimeAxisView*>::iterator i = views_to_update.begin(); i != views_to_update.end(); ++i) {
1155                 (*i)->view()->playlist_layered ((*i)->track ());
1156         }
1157 }
1158
1159 /** Remove a region from a playlist, clearing the diff history of the playlist first if necessary.
1160  *  @param region Region to remove.
1161  *  @param playlist playlist To remove from.
1162  *  @param modified_playlists The playlist will be added to this if it is not there already; used to ensure
1163  *  that clear_changes () is only called once per playlist.
1164  */
1165 void
1166 RegionMoveDrag::remove_region_from_playlist (
1167         boost::shared_ptr<Region> region,
1168         boost::shared_ptr<Playlist> playlist,
1169         PlaylistSet& modified_playlists
1170         )
1171 {
1172         pair<set<boost::shared_ptr<Playlist> >::iterator, bool> r = modified_playlists.insert (playlist);
1173
1174         if (r.second) {
1175                 playlist->clear_changes ();
1176         }
1177
1178         playlist->remove_region (region);
1179 }
1180
1181
1182 /** Insert a region into a playlist, handling the recovery of the resulting new RegionView, and
1183  *  clearing the playlist's diff history first if necessary.
1184  *  @param region Region to insert.
1185  *  @param dest_rtv Destination RouteTimeAxisView.
1186  *  @param dest_layer Destination layer.
1187  *  @param where Destination position.
1188  *  @param modified_playlists The playlist will be added to this if it is not there already; used to ensure
1189  *  that clear_changes () is only called once per playlist.
1190  *  @return New RegionView, or 0 if no insert was performed.
1191  */
1192 RegionView *
1193 RegionMoveDrag::insert_region_into_playlist (
1194         boost::shared_ptr<Region> region,
1195         RouteTimeAxisView* dest_rtv,
1196         layer_t dest_layer,
1197         framecnt_t where,
1198         PlaylistSet& modified_playlists
1199         )
1200 {
1201         boost::shared_ptr<Playlist> dest_playlist = dest_rtv->playlist ();
1202         if (!dest_playlist) {
1203                 return 0;
1204         }
1205
1206         /* arrange to collect the new region view that will be created as a result of our playlist insertion */
1207         _new_region_view = 0;
1208         sigc::connection c = dest_rtv->view()->RegionViewAdded.connect (sigc::mem_fun (*this, &RegionMoveDrag::collect_new_region_view));
1209
1210         /* clear history for the playlist we are about to insert to, provided we haven't already done so */
1211         pair<PlaylistSet::iterator, bool> r = modified_playlists.insert (dest_playlist);
1212         if (r.second) {
1213                 dest_playlist->clear_changes ();
1214         }
1215
1216         dest_playlist->add_region (region, where);
1217
1218         if (dest_rtv->view()->layer_display() == Stacked || dest_rtv->view()->layer_display() == Expanded) {
1219                 dest_playlist->set_layer (region, dest_layer);
1220         }
1221
1222         c.disconnect ();
1223
1224         assert (_new_region_view);
1225
1226         return _new_region_view;
1227 }
1228
1229 void
1230 RegionMoveDrag::collect_new_region_view (RegionView* rv)
1231 {
1232         _new_region_view = rv;
1233 }
1234
1235 void
1236 RegionMoveDrag::add_stateful_diff_commands_for_playlists (PlaylistSet const & playlists)
1237 {
1238         for (PlaylistSet::const_iterator i = playlists.begin(); i != playlists.end(); ++i) {
1239                 StatefulDiffCommand* c = new StatefulDiffCommand (*i);
1240                 if (!c->empty()) {
1241                         _editor->session()->add_command (c);
1242                 } else {
1243                         delete c;
1244                 }
1245         }
1246 }
1247
1248
1249 void
1250 RegionMoveDrag::aborted (bool movement_occurred)
1251 {
1252         if (_copy) {
1253
1254                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1255                         delete i->view;
1256                 }
1257
1258                 _views.clear ();
1259
1260         } else {
1261                 RegionMotionDrag::aborted (movement_occurred);
1262         }
1263 }
1264
1265 void
1266 RegionMotionDrag::aborted (bool)
1267 {
1268         for (vector<TimeAxisView*>::iterator i = _time_axis_views.begin(); i != _time_axis_views.end(); ++i) {
1269                 if ((*i)->view()->layer_display() == Expanded) {
1270                         (*i)->view()->set_layer_display (Stacked);
1271                 }
1272         }
1273         
1274         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1275                 RegionView* rv = i->view;
1276                 TimeAxisView* tv = &(rv->get_time_axis_view ());
1277                 RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (tv);
1278                 assert (rtv);
1279                 rv->get_canvas_group()->reparent (*rtv->view()->canvas_item());
1280                 rv->get_canvas_group()->property_y() = 0;
1281                 rv->drag_end ();
1282                 rv->fake_set_opaque (false);
1283                 rv->move (-_total_x_delta, 0);
1284                 rv->set_height (rtv->view()->child_height ());
1285         }
1286
1287         _editor->update_canvas_now ();
1288 }
1289
1290 /** @param b true to brush, otherwise false.
1291  *  @param c true to make copies of the regions being moved, otherwise false.
1292  */
1293 RegionMoveDrag::RegionMoveDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v, bool b, bool c)
1294         : RegionMotionDrag (e, i, p, v, b),
1295           _copy (c)
1296 {
1297         DEBUG_TRACE (DEBUG::Drags, "New RegionMoveDrag\n");
1298
1299         double speed = 1;
1300         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (&_primary->get_time_axis_view ());
1301         if (rtv && rtv->is_track()) {
1302                 speed = rtv->track()->speed ();
1303         }
1304
1305         _last_frame_position = static_cast<framepos_t> (_primary->region()->position() / speed);
1306 }
1307
1308 void
1309 RegionMoveDrag::setup_pointer_frame_offset ()
1310 {
1311         _pointer_frame_offset = raw_grab_frame() - _last_frame_position;
1312 }
1313
1314 RegionInsertDrag::RegionInsertDrag (Editor* e, boost::shared_ptr<Region> r, RouteTimeAxisView* v, framepos_t pos)
1315         : RegionMotionDrag (e, 0, 0, list<RegionView*> (), false)
1316 {
1317         DEBUG_TRACE (DEBUG::Drags, "New RegionInsertDrag\n");
1318
1319         assert ((boost::dynamic_pointer_cast<AudioRegion> (r) && dynamic_cast<AudioTimeAxisView*> (v)) ||
1320                 (boost::dynamic_pointer_cast<MidiRegion> (r) && dynamic_cast<MidiTimeAxisView*> (v)));
1321
1322         _primary = v->view()->create_region_view (r, false, false);
1323
1324         _primary->get_canvas_group()->show ();
1325         _primary->set_position (pos, 0);
1326         _views.push_back (DraggingView (_primary, this));
1327
1328         _last_frame_position = pos;
1329
1330         _item = _primary->get_canvas_group ();
1331 }
1332
1333 void
1334 RegionInsertDrag::finished (GdkEvent *, bool)
1335 {
1336         _editor->update_canvas_now ();
1337
1338         RouteTimeAxisView* dest_rtv = dynamic_cast<RouteTimeAxisView*> (_time_axis_views[_views.front().time_axis_view]);
1339
1340         _primary->get_canvas_group()->reparent (*dest_rtv->view()->canvas_item());
1341         _primary->get_canvas_group()->property_y() = 0;
1342
1343         boost::shared_ptr<Playlist> playlist = dest_rtv->playlist();
1344
1345         _editor->begin_reversible_command (Operations::insert_region);
1346         playlist->clear_changes ();
1347         playlist->add_region (_primary->region (), _last_frame_position);
1348         _editor->session()->add_command (new StatefulDiffCommand (playlist));
1349         _editor->commit_reversible_command ();
1350
1351         delete _primary;
1352         _primary = 0;
1353         _views.clear ();
1354 }
1355
1356 void
1357 RegionInsertDrag::aborted (bool)
1358 {
1359         delete _primary;
1360         _primary = 0;
1361         _views.clear ();
1362 }
1363
1364 RegionSpliceDrag::RegionSpliceDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v)
1365         : RegionMoveDrag (e, i, p, v, false, false)
1366 {
1367         DEBUG_TRACE (DEBUG::Drags, "New RegionSpliceDrag\n");
1368 }
1369
1370 struct RegionSelectionByPosition {
1371     bool operator() (RegionView*a, RegionView* b) {
1372             return a->region()->position () < b->region()->position();
1373     }
1374 };
1375
1376 void
1377 RegionSpliceDrag::motion (GdkEvent* event, bool)
1378 {
1379         /* Which trackview is this ? */
1380
1381         pair<TimeAxisView*, double> const tvp = _editor->trackview_by_y_position (_drags->current_pointer_y ());
1382         RouteTimeAxisView* tv = dynamic_cast<RouteTimeAxisView*> (tvp.first);
1383
1384         /* The region motion is only processed if the pointer is over
1385            an audio track.
1386         */
1387
1388         if (!tv || !tv->is_track()) {
1389                 /* To make sure we hide the verbose canvas cursor when the mouse is
1390                    not held over and audiotrack.
1391                 */
1392                 _editor->verbose_cursor()->hide ();
1393                 return;
1394         }
1395
1396         int dir;
1397
1398         if ((_drags->current_pointer_x() - last_pointer_x()) > 0) {
1399                 dir = 1;
1400         } else {
1401                 dir = -1;
1402         }
1403
1404         RegionSelection copy (_editor->selection->regions);
1405
1406         RegionSelectionByPosition cmp;
1407         copy.sort (cmp);
1408
1409         framepos_t const pf = adjusted_current_frame (event);
1410
1411         for (RegionSelection::iterator i = copy.begin(); i != copy.end(); ++i) {
1412
1413                 RouteTimeAxisView* atv = dynamic_cast<RouteTimeAxisView*> (&(*i)->get_time_axis_view());
1414
1415                 if (!atv) {
1416                         continue;
1417                 }
1418
1419                 boost::shared_ptr<Playlist> playlist;
1420
1421                 if ((playlist = atv->playlist()) == 0) {
1422                         continue;
1423                 }
1424
1425                 if (!playlist->region_is_shuffle_constrained ((*i)->region())) {
1426                         continue;
1427                 }
1428
1429                 if (dir > 0) {
1430                         if (pf < (*i)->region()->last_frame() + 1) {
1431                                 continue;
1432                         }
1433                 } else {
1434                         if (pf > (*i)->region()->first_frame()) {
1435                                 continue;
1436                         }
1437                 }
1438
1439
1440                 playlist->shuffle ((*i)->region(), dir);
1441         }
1442 }
1443
1444 void
1445 RegionSpliceDrag::finished (GdkEvent* event, bool movement_occurred)
1446 {
1447         RegionMoveDrag::finished (event, movement_occurred);
1448 }
1449
1450 void
1451 RegionSpliceDrag::aborted (bool)
1452 {
1453         /* XXX: TODO */
1454 }
1455
1456 RegionCreateDrag::RegionCreateDrag (Editor* e, ArdourCanvas::Item* i, TimeAxisView* v)
1457         : Drag (e, i),
1458           _view (dynamic_cast<MidiTimeAxisView*> (v))
1459 {
1460         DEBUG_TRACE (DEBUG::Drags, "New RegionCreateDrag\n");
1461
1462         assert (_view);
1463 }
1464
1465 void
1466 RegionCreateDrag::motion (GdkEvent* event, bool first_move)
1467 {
1468         if (first_move) {
1469                 _region = add_midi_region (_view);
1470                 _view->playlist()->freeze ();
1471         } else {
1472                 if (_region) {
1473                         framepos_t const f = adjusted_current_frame (event);
1474                         if (f < grab_frame()) {
1475                                 _region->set_position (f);
1476                         }
1477
1478                         /* Don't use a zero-length region, and subtract 1 frame from the snapped length
1479                            so that if this region is duplicated, its duplicate starts on
1480                            a snap point rather than 1 frame after a snap point.  Otherwise things get
1481                            a bit confusing as if a region starts 1 frame after a snap point, one cannot
1482                            place snapped notes at the start of the region.
1483                         */
1484
1485                         framecnt_t const len = abs (f - grab_frame () - 1);
1486                         _region->set_length (len < 1 ? 1 : len);
1487                 }
1488         }
1489 }
1490
1491 void
1492 RegionCreateDrag::finished (GdkEvent*, bool movement_occurred)
1493 {
1494         if (!movement_occurred) {
1495                 add_midi_region (_view);
1496         } else {
1497                 _view->playlist()->thaw ();
1498         }
1499 }
1500
1501 void
1502 RegionCreateDrag::aborted (bool)
1503 {
1504         if (_region) {
1505                 _view->playlist()->thaw ();
1506         }
1507
1508         /* XXX */
1509 }
1510
1511 NoteResizeDrag::NoteResizeDrag (Editor* e, ArdourCanvas::Item* i)
1512         : Drag (e, i)
1513         , region (0)
1514 {
1515         DEBUG_TRACE (DEBUG::Drags, "New NoteResizeDrag\n");
1516 }
1517
1518 void
1519 NoteResizeDrag::start_grab (GdkEvent* event, Gdk::Cursor* /*ignored*/)
1520 {
1521         Gdk::Cursor* cursor;
1522         ArdourCanvas::CanvasNoteEvent* cnote = dynamic_cast<ArdourCanvas::CanvasNoteEvent*>(_item);
1523         float x_fraction = cnote->mouse_x_fraction ();
1524
1525         if (x_fraction > 0.0 && x_fraction < 0.25) {
1526                 cursor = _editor->cursors()->left_side_trim;
1527         } else  {
1528                 cursor = _editor->cursors()->right_side_trim;
1529         }
1530
1531         Drag::start_grab (event, cursor);
1532
1533         region = &cnote->region_view();
1534
1535         double const region_start = region->get_position_pixels();
1536         double const middle_point = region_start + cnote->x1() + (cnote->x2() - cnote->x1()) / 2.0L;
1537
1538         if (grab_x() <= middle_point) {
1539                 cursor = _editor->cursors()->left_side_trim;
1540                 at_front = true;
1541         } else {
1542                 cursor = _editor->cursors()->right_side_trim;
1543                 at_front = false;
1544         }
1545
1546         _item->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK, *cursor, event->motion.time);
1547
1548         if (event->motion.state & Keyboard::PrimaryModifier) {
1549                 relative = false;
1550         } else {
1551                 relative = true;
1552         }
1553
1554         MidiRegionSelection& ms (_editor->get_selection().midi_regions);
1555
1556         if (ms.size() > 1) {
1557                 /* has to be relative, may make no sense otherwise */
1558                 relative = true;
1559         }
1560
1561         /* select this note; if it is already selected, preserve the existing selection,
1562            otherwise make this note the only one selected.
1563         */
1564         region->note_selected (cnote, cnote->selected ());
1565
1566         for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end(); ) {
1567                 MidiRegionSelection::iterator next;
1568                 next = r;
1569                 ++next;
1570                 (*r)->begin_resizing (at_front);
1571                 r = next;
1572         }
1573 }
1574
1575 void
1576 NoteResizeDrag::motion (GdkEvent* /*event*/, bool /*first_move*/)
1577 {
1578         MidiRegionSelection& ms (_editor->get_selection().midi_regions);
1579         for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end(); ++r) {
1580                 (*r)->update_resizing (dynamic_cast<ArdourCanvas::CanvasNoteEvent*>(_item), at_front, _drags->current_pointer_x() - grab_x(), relative);
1581         }
1582 }
1583
1584 void
1585 NoteResizeDrag::finished (GdkEvent*, bool /*movement_occurred*/)
1586 {
1587         MidiRegionSelection& ms (_editor->get_selection().midi_regions);
1588         for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end(); ++r) {
1589                 (*r)->commit_resizing (dynamic_cast<ArdourCanvas::CanvasNoteEvent*>(_item), at_front, _drags->current_pointer_x() - grab_x(), relative);
1590         }
1591 }
1592
1593 void
1594 NoteResizeDrag::aborted (bool)
1595 {
1596         MidiRegionSelection& ms (_editor->get_selection().midi_regions);
1597         for (MidiRegionSelection::iterator r = ms.begin(); r != ms.end(); ++r) {
1598                 (*r)->abort_resizing ();
1599         }
1600 }
1601
1602 TrimDrag::TrimDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v)
1603         : RegionDrag (e, i, p, v)
1604 {
1605         DEBUG_TRACE (DEBUG::Drags, "New TrimDrag\n");
1606 }
1607
1608 void
1609 TrimDrag::start_grab (GdkEvent* event, Gdk::Cursor*)
1610 {
1611         double speed = 1.0;
1612         TimeAxisView* tvp = &_primary->get_time_axis_view ();
1613         RouteTimeAxisView* tv = dynamic_cast<RouteTimeAxisView*>(tvp);
1614
1615         if (tv && tv->is_track()) {
1616                 speed = tv->track()->speed();
1617         }
1618
1619         framepos_t const region_start = (framepos_t) (_primary->region()->position() / speed);
1620         framepos_t const region_end = (framepos_t) (_primary->region()->last_frame() / speed);
1621         framecnt_t const region_length = (framecnt_t) (_primary->region()->length() / speed);
1622
1623         framepos_t const pf = adjusted_current_frame (event);
1624
1625         if (Keyboard::modifier_state_equals (event->button.state, Keyboard::PrimaryModifier)) {
1626                 /* Move the contents of the region around without changing the region bounds */
1627                 _operation = ContentsTrim;
1628                 Drag::start_grab (event, _editor->cursors()->trimmer);
1629         } else {
1630                 /* These will get overridden for a point trim.*/
1631                 if (pf < (region_start + region_length/2)) {
1632                         /* closer to front */
1633                         _operation = StartTrim;
1634                         Drag::start_grab (event, _editor->cursors()->left_side_trim);
1635                 } else {
1636                         /* closer to end */
1637                         _operation = EndTrim;
1638                         Drag::start_grab (event, _editor->cursors()->right_side_trim);
1639                 }
1640         }
1641
1642         switch (_operation) {
1643         case StartTrim:
1644                 show_verbose_cursor_time (region_start);
1645                 for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
1646                         i->view->trim_front_starting ();
1647                 }
1648                 break;
1649         case EndTrim:
1650                 show_verbose_cursor_time (region_end);
1651                 break;
1652         case ContentsTrim:
1653                 show_verbose_cursor_time (pf);
1654                 break;
1655         }
1656
1657         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1658                 i->view->region()->suspend_property_changes ();
1659         }
1660 }
1661
1662 void
1663 TrimDrag::motion (GdkEvent* event, bool first_move)
1664 {
1665         RegionView* rv = _primary;
1666
1667         double speed = 1.0;
1668         TimeAxisView* tvp = &_primary->get_time_axis_view ();
1669         RouteTimeAxisView* tv = dynamic_cast<RouteTimeAxisView*>(tvp);
1670         pair<set<boost::shared_ptr<Playlist> >::iterator,bool> insert_result;
1671
1672         if (tv && tv->is_track()) {
1673                 speed = tv->track()->speed();
1674         }
1675
1676         framecnt_t const dt = adjusted_current_frame (event) - raw_grab_frame () + _pointer_frame_offset;
1677
1678         if (first_move) {
1679
1680                 string trim_type;
1681
1682                 switch (_operation) {
1683                 case StartTrim:
1684                         trim_type = "Region start trim";
1685                         break;
1686                 case EndTrim:
1687                         trim_type = "Region end trim";
1688                         break;
1689                 case ContentsTrim:
1690                         trim_type = "Region content trim";
1691                         break;
1692                 }
1693
1694                 _editor->begin_reversible_command (trim_type);
1695
1696                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1697                         RegionView* rv = i->view;
1698                         rv->fake_set_opaque (false);
1699                         rv->enable_display (false);
1700                         rv->region()->playlist()->clear_owned_changes ();
1701
1702                         AudioRegionView* const arv = dynamic_cast<AudioRegionView*> (rv);
1703
1704                         if (arv) {
1705                                 arv->temporarily_hide_envelope ();
1706                                 arv->drag_start ();
1707                         }
1708
1709                         boost::shared_ptr<Playlist> pl = rv->region()->playlist();
1710                         insert_result = _editor->motion_frozen_playlists.insert (pl);
1711
1712                         if (insert_result.second) {
1713                                 pl->freeze();
1714                         }
1715                 }
1716         }
1717
1718         bool non_overlap_trim = false;
1719
1720         if (event && Keyboard::modifier_state_equals (event->button.state, Keyboard::TertiaryModifier)) {
1721                 non_overlap_trim = true;
1722         }
1723
1724         switch (_operation) {
1725         case StartTrim:
1726                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1727                         i->view->trim_front (i->initial_position + dt, non_overlap_trim);
1728                 }
1729                 break;
1730
1731         case EndTrim:
1732                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1733                         i->view->trim_end (i->initial_end + dt, non_overlap_trim);
1734                 }
1735                 break;
1736
1737         case ContentsTrim:
1738                 {
1739                         bool swap_direction = false;
1740
1741                         if (event && Keyboard::modifier_state_equals (event->button.state, Keyboard::PrimaryModifier)) {
1742                                 swap_direction = true;
1743                         }
1744
1745                         framecnt_t frame_delta = 0;
1746
1747                         bool left_direction = false;
1748                         if (last_pointer_frame() > adjusted_current_frame(event)) {
1749                                 left_direction = true;
1750                         }
1751
1752                         if (left_direction) {
1753                                 frame_delta = (last_pointer_frame() - adjusted_current_frame(event));
1754                         } else {
1755                                 frame_delta = (adjusted_current_frame(event) - last_pointer_frame());
1756                         }
1757
1758                         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1759                                 i->view->trim_contents (frame_delta, left_direction, swap_direction);
1760                         }
1761                 }
1762                 break;
1763         }
1764
1765         switch (_operation) {
1766         case StartTrim:
1767                 show_verbose_cursor_time ((framepos_t) (rv->region()->position() / speed));
1768                 break;
1769         case EndTrim:
1770                 show_verbose_cursor_time ((framepos_t) (rv->region()->last_frame() / speed));
1771                 break;
1772         case ContentsTrim:
1773                 show_verbose_cursor_time (adjusted_current_frame (event));
1774                 break;
1775         }
1776 }
1777
1778
1779 void
1780 TrimDrag::finished (GdkEvent* event, bool movement_occurred)
1781 {
1782         if (movement_occurred) {
1783                 motion (event, false);
1784
1785                 /* This must happen before the region's StatefulDiffCommand is created, as it may
1786                    `correct' (ahem) the region's _start from being negative to being zero.  It
1787                    needs to be zero in the undo record.
1788                 */
1789                 if (_operation == StartTrim) {
1790                         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1791                                 i->view->trim_front_ending ();
1792                         }
1793                 }
1794
1795                 if (!_editor->selection->selected (_primary)) {
1796                         _primary->thaw_after_trim ();
1797                 } else {
1798
1799                         set<boost::shared_ptr<Playlist> > diffed_playlists;
1800
1801                         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1802                                 i->view->thaw_after_trim ();
1803                                 i->view->enable_display (true);
1804                                 i->view->fake_set_opaque (true);
1805
1806                                 /* Trimming one region may affect others on the playlist, so we need
1807                                    to get undo Commands from the whole playlist rather than just the
1808                                    region.  Use diffed_playlists to make sure we don't diff a given
1809                                    playlist more than once.
1810                                 */
1811                                 boost::shared_ptr<Playlist> p = i->view->region()->playlist ();
1812                                 if (diffed_playlists.find (p) == diffed_playlists.end()) {
1813                                         vector<Command*> cmds;
1814                                         p->rdiff (cmds);
1815                                         _editor->session()->add_commands (cmds);
1816                                         diffed_playlists.insert (p);
1817                                 }
1818                         }
1819                 }
1820                 for (set<boost::shared_ptr<Playlist> >::iterator p = _editor->motion_frozen_playlists.begin(); p != _editor->motion_frozen_playlists.end(); ++p) {
1821                         (*p)->thaw ();
1822                 }
1823
1824                 _editor->motion_frozen_playlists.clear ();
1825                 _editor->commit_reversible_command();
1826
1827                 for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1828                         i->view->drag_end ();
1829                 }
1830
1831         } else {
1832                 /* no mouse movement */
1833                 _editor->point_trim (event, adjusted_current_frame (event));
1834         }
1835
1836         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1837                 if (_operation == StartTrim) {
1838                         i->view->trim_front_ending ();
1839                 }
1840
1841                 i->view->region()->resume_property_changes ();
1842         }
1843 }
1844
1845 void
1846 TrimDrag::aborted (bool movement_occurred)
1847 {
1848         /* Our motion method is changing model state, so use the Undo system
1849            to cancel.  Perhaps not ideal, as this will leave an Undo point
1850            behind which may be slightly odd from the user's point of view.
1851         */
1852
1853         finished (0, true);
1854
1855         if (movement_occurred) {
1856                 _editor->undo ();
1857         }
1858
1859         for (list<DraggingView>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
1860                 i->view->region()->resume_property_changes ();
1861         }
1862 }
1863
1864 void
1865 TrimDrag::setup_pointer_frame_offset ()
1866 {
1867         list<DraggingView>::iterator i = _views.begin ();
1868         while (i != _views.end() && i->view != _primary) {
1869                 ++i;
1870         }
1871
1872         if (i == _views.end()) {
1873                 return;
1874         }
1875
1876         switch (_operation) {
1877         case StartTrim:
1878                 _pointer_frame_offset = raw_grab_frame() - i->initial_position;
1879                 break;
1880         case EndTrim:
1881                 _pointer_frame_offset = raw_grab_frame() - i->initial_end;
1882                 break;
1883         case ContentsTrim:
1884                 break;
1885         }
1886 }
1887
1888 MeterMarkerDrag::MeterMarkerDrag (Editor* e, ArdourCanvas::Item* i, bool c)
1889         : Drag (e, i),
1890           _copy (c)
1891 {
1892         DEBUG_TRACE (DEBUG::Drags, "New MeterMarkerDrag\n");
1893         _marker = reinterpret_cast<MeterMarker*> (_item->get_data ("marker"));
1894         assert (_marker);
1895 }
1896
1897 void
1898 MeterMarkerDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
1899 {
1900         Drag::start_grab (event, cursor);
1901         show_verbose_cursor_time (adjusted_current_frame(event));
1902 }
1903
1904 void
1905 MeterMarkerDrag::setup_pointer_frame_offset ()
1906 {
1907         _pointer_frame_offset = raw_grab_frame() - _marker->meter().frame();
1908 }
1909
1910 void
1911 MeterMarkerDrag::motion (GdkEvent* event, bool first_move)
1912 {
1913         if (first_move) {
1914
1915                 // create a dummy marker for visual representation of moving the
1916                 // section, because whether its a copy or not, we're going to 
1917                 // leave or lose the original marker (leave if its a copy; lose if its
1918                 // not, because we'll remove it from the map).
1919                 
1920                 MeterSection section (_marker->meter());
1921
1922                 if (!section.movable()) {
1923                         return;
1924                 }
1925                 
1926                 char name[64];
1927                 snprintf (name, sizeof(name), "%g/%g", _marker->meter().divisions_per_bar(), _marker->meter().note_divisor ());
1928                 
1929                 _marker = new MeterMarker (
1930                         *_editor,
1931                         *_editor->meter_group,
1932                         ARDOUR_UI::config()->canvasvar_MeterMarker.get(),
1933                         name,
1934                         *new MeterSection (_marker->meter())
1935                 );
1936                 
1937                 /* use the new marker for the grab */
1938                 swap_grab (&_marker->the_item(), 0, GDK_CURRENT_TIME);
1939
1940                 if (!_copy) {
1941                         TempoMap& map (_editor->session()->tempo_map());
1942                         /* get current state */
1943                         before_state = &map.get_state();
1944                         /* remove the section while we drag it */
1945                         map.remove_meter (section, true);
1946                 }
1947         }
1948
1949         framepos_t const pf = adjusted_current_frame (event);
1950         _marker->set_position (pf);
1951         show_verbose_cursor_time (pf);
1952 }
1953
1954 void
1955 MeterMarkerDrag::finished (GdkEvent* event, bool movement_occurred)
1956 {
1957         if (!movement_occurred) {
1958                 return;
1959         }
1960
1961         motion (event, false);
1962
1963         Timecode::BBT_Time when;
1964
1965         TempoMap& map (_editor->session()->tempo_map());
1966         map.bbt_time (last_pointer_frame(), when);
1967         
1968         if (_copy == true) {
1969                 _editor->begin_reversible_command (_("copy meter mark"));
1970                 XMLNode &before = map.get_state();
1971                 map.add_meter (_marker->meter(), when);
1972                 XMLNode &after = map.get_state();
1973                 _editor->session()->add_command(new MementoCommand<TempoMap>(map, &before, &after));
1974                 _editor->commit_reversible_command ();
1975
1976         } else {
1977                 _editor->begin_reversible_command (_("move meter mark"));
1978
1979                 /* we removed it before, so add it back now */
1980                 
1981                 map.add_meter (_marker->meter(), when);
1982                 XMLNode &after = map.get_state();
1983                 _editor->session()->add_command(new MementoCommand<TempoMap>(map, before_state, &after));
1984                 _editor->commit_reversible_command ();
1985         }
1986
1987         // delete the dummy marker we used for visual representation while moving.
1988         // a new visual marker will show up automatically.
1989         delete _marker;
1990 }
1991
1992 void
1993 MeterMarkerDrag::aborted (bool moved)
1994 {
1995         _marker->set_position (_marker->meter().frame ());
1996
1997         if (moved) {
1998                 TempoMap& map (_editor->session()->tempo_map());
1999                 /* we removed it before, so add it back now */
2000                 map.add_meter (_marker->meter(), _marker->meter().frame());
2001                 // delete the dummy marker we used for visual representation while moving.
2002                 // a new visual marker will show up automatically.
2003                 delete _marker;
2004         }
2005 }
2006
2007 TempoMarkerDrag::TempoMarkerDrag (Editor* e, ArdourCanvas::Item* i, bool c)
2008         : Drag (e, i),
2009           _copy (c)
2010 {
2011         DEBUG_TRACE (DEBUG::Drags, "New TempoMarkerDrag\n");
2012
2013         _marker = reinterpret_cast<TempoMarker*> (_item->get_data ("marker"));
2014         assert (_marker);
2015 }
2016
2017 void
2018 TempoMarkerDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
2019 {
2020         Drag::start_grab (event, cursor);
2021         show_verbose_cursor_time (adjusted_current_frame (event));
2022 }
2023
2024 void
2025 TempoMarkerDrag::setup_pointer_frame_offset ()
2026 {
2027         _pointer_frame_offset = raw_grab_frame() - _marker->tempo().frame();
2028 }
2029
2030 void
2031 TempoMarkerDrag::motion (GdkEvent* event, bool first_move)
2032 {
2033         if (first_move) {
2034
2035                 // create a dummy marker for visual representation of moving the
2036                 // section, because whether its a copy or not, we're going to 
2037                 // leave or lose the original marker (leave if its a copy; lose if its
2038                 // not, because we'll remove it from the map).
2039                 
2040                 // create a dummy marker for visual representation of moving the copy.
2041                 // The actual copying is not done before we reach the finish callback.
2042
2043                 char name[64];
2044                 snprintf (name, sizeof (name), "%.2f", _marker->tempo().beats_per_minute());
2045
2046                 TempoSection section (_marker->tempo());
2047
2048                 _marker = new TempoMarker (
2049                         *_editor,
2050                         *_editor->tempo_group,
2051                         ARDOUR_UI::config()->canvasvar_TempoMarker.get(),
2052                         name,
2053                         *new TempoSection (_marker->tempo())
2054                         );
2055
2056                 /* use the new marker for the grab */
2057                 swap_grab (&_marker->the_item(), 0, GDK_CURRENT_TIME);
2058
2059                 if (!_copy) {
2060                         TempoMap& map (_editor->session()->tempo_map());
2061                         /* get current state */
2062                         before_state = &map.get_state();
2063                         /* remove the section while we drag it */
2064                         map.remove_tempo (section, true);
2065                 }
2066         }
2067
2068         framepos_t const pf = adjusted_current_frame (event);
2069         _marker->set_position (pf);
2070         show_verbose_cursor_time (pf);
2071 }
2072
2073 void
2074 TempoMarkerDrag::finished (GdkEvent* event, bool movement_occurred)
2075 {
2076         if (!movement_occurred) {
2077                 return;
2078         }
2079
2080         motion (event, false);
2081
2082         TempoMap& map (_editor->session()->tempo_map());
2083         framepos_t beat_time = map.round_to_beat (last_pointer_frame(), 0);
2084         Timecode::BBT_Time when;
2085
2086         map.bbt_time (beat_time, when);
2087
2088         if (_copy == true) {
2089                 _editor->begin_reversible_command (_("copy tempo mark"));
2090                 XMLNode &before = map.get_state();
2091                 map.add_tempo (_marker->tempo(), when);
2092                 XMLNode &after = map.get_state();
2093                 _editor->session()->add_command (new MementoCommand<TempoMap>(map, &before, &after));
2094                 _editor->commit_reversible_command ();
2095
2096         } else {
2097                 _editor->begin_reversible_command (_("move tempo mark"));
2098                 /* we removed it before, so add it back now */
2099                 map.add_tempo (_marker->tempo(), when);
2100                 XMLNode &after = map.get_state();
2101                 _editor->session()->add_command (new MementoCommand<TempoMap>(map, before_state, &after));
2102                 _editor->commit_reversible_command ();
2103         }
2104
2105         // delete the dummy marker we used for visual representation while moving.
2106         // a new visual marker will show up automatically.
2107         delete _marker;
2108 }
2109
2110 void
2111 TempoMarkerDrag::aborted (bool moved)
2112 {
2113         _marker->set_position (_marker->tempo().frame());
2114         if (moved) {
2115                 TempoMap& map (_editor->session()->tempo_map());
2116                 /* we removed it before, so add it back now */
2117                 map.add_tempo (_marker->tempo(), _marker->tempo().start());
2118                 // delete the dummy marker we used for visual representation while moving.
2119                 // a new visual marker will show up automatically.
2120                 delete _marker;
2121         }
2122 }
2123
2124 CursorDrag::CursorDrag (Editor* e, ArdourCanvas::Item* i, bool s)
2125         : Drag (e, i),
2126           _stop (s)
2127 {
2128         DEBUG_TRACE (DEBUG::Drags, "New CursorDrag\n");
2129 }
2130
2131 /** Do all the things we do when dragging the playhead to make it look as though
2132  *  we have located, without actually doing the locate (because that would cause
2133  *  the diskstream buffers to be refilled, which is too slow).
2134  */
2135 void
2136 CursorDrag::fake_locate (framepos_t t)
2137 {
2138         _editor->playhead_cursor->set_position (t);
2139
2140         Session* s = _editor->session ();
2141         if (s->timecode_transmission_suspended ()) {
2142                 framepos_t const f = _editor->playhead_cursor->current_frame;
2143                 s->send_mmc_locate (f);
2144                 s->send_full_time_code (f);
2145         }
2146
2147         show_verbose_cursor_time (t);
2148         _editor->UpdateAllTransportClocks (t);
2149 }
2150
2151 void
2152 CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c)
2153 {
2154         Drag::start_grab (event, c);
2155
2156         _grab_zoom = _editor->frames_per_unit;
2157
2158         framepos_t where = _editor->event_frame (event, 0, 0);
2159         _editor->snap_to_with_modifier (where, event);
2160
2161         _editor->_dragging_playhead = true;
2162
2163         Session* s = _editor->session ();
2164
2165         if (s) {
2166                 if (_was_rolling && _stop) {
2167                         s->request_stop ();
2168                 }
2169
2170                 if (s->is_auditioning()) {
2171                         s->cancel_audition ();
2172                 }
2173
2174                 if (AudioEngine::instance()->connected()) {
2175                         s->request_suspend_timecode_transmission ();
2176                         while (AudioEngine::instance()->connected() && !s->timecode_transmission_suspended ()) {
2177                                 /* twiddle our thumbs */
2178                         }
2179                 }
2180         }
2181
2182         fake_locate (where);
2183 }
2184
2185 void
2186 CursorDrag::motion (GdkEvent* event, bool)
2187 {
2188         framepos_t const adjusted_frame = adjusted_current_frame (event);
2189         if (adjusted_frame != last_pointer_frame()) {
2190                 fake_locate (adjusted_frame);
2191 #ifdef GTKOSX
2192                 _editor->update_canvas_now ();
2193 #endif
2194         }
2195 }
2196
2197 void
2198 CursorDrag::finished (GdkEvent* event, bool movement_occurred)
2199 {
2200         _editor->_dragging_playhead = false;
2201
2202         if (!movement_occurred && _stop) {
2203                 return;
2204         }
2205
2206         motion (event, false);
2207
2208         Session* s = _editor->session ();
2209         if (s) {
2210                 s->request_locate (_editor->playhead_cursor->current_frame, _was_rolling);
2211                 _editor->_pending_locate_request = true;
2212                 s->request_resume_timecode_transmission ();
2213         }
2214 }
2215
2216 void
2217 CursorDrag::aborted (bool)
2218 {
2219         if (_editor->_dragging_playhead) {
2220                 _editor->session()->request_resume_timecode_transmission ();
2221                 _editor->_dragging_playhead = false;
2222         }
2223
2224         _editor->playhead_cursor->set_position (adjusted_frame (grab_frame (), 0, false));
2225 }
2226
2227 FadeInDrag::FadeInDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v)
2228         : RegionDrag (e, i, p, v)
2229 {
2230         DEBUG_TRACE (DEBUG::Drags, "New FadeInDrag\n");
2231 }
2232
2233 void
2234 FadeInDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
2235 {
2236         Drag::start_grab (event, cursor);
2237
2238         AudioRegionView* arv = dynamic_cast<AudioRegionView*> (_primary);
2239         boost::shared_ptr<AudioRegion> const r = arv->audio_region ();
2240
2241         show_verbose_cursor_duration (r->position(), r->position() + r->fade_in()->back()->when, 32);
2242
2243         arv->show_fade_line((framepos_t) r->fade_in()->back()->when);
2244 }
2245
2246 void
2247 FadeInDrag::setup_pointer_frame_offset ()
2248 {
2249         AudioRegionView* arv = dynamic_cast<AudioRegionView*> (_primary);
2250         boost::shared_ptr<AudioRegion> const r = arv->audio_region ();
2251         _pointer_frame_offset = raw_grab_frame() - ((framecnt_t) r->fade_in()->back()->when + r->position());
2252 }
2253
2254 void
2255 FadeInDrag::motion (GdkEvent* event, bool)
2256 {
2257         framecnt_t fade_length;
2258
2259         framepos_t const pos = adjusted_current_frame (event);
2260
2261         boost::shared_ptr<Region> region = _primary->region ();
2262
2263         if (pos < (region->position() + 64)) {
2264                 fade_length = 64; // this should be a minimum defined somewhere
2265         } else if (pos > region->last_frame()) {
2266                 fade_length = region->length();
2267         } else {
2268                 fade_length = pos - region->position();
2269         }
2270
2271         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
2272
2273                 AudioRegionView* tmp = dynamic_cast<AudioRegionView*> (i->view);
2274
2275                 if (!tmp) {
2276                         continue;
2277                 }
2278
2279                 tmp->reset_fade_in_shape_width (fade_length);
2280                 tmp->show_fade_line((framecnt_t) fade_length);
2281         }
2282
2283         show_verbose_cursor_duration (region->position(), region->position() + fade_length, 32);
2284 }
2285
2286 void
2287 FadeInDrag::finished (GdkEvent* event, bool movement_occurred)
2288 {
2289         if (!movement_occurred) {
2290                 return;
2291         }
2292
2293         framecnt_t fade_length;
2294
2295         framepos_t const pos = adjusted_current_frame (event);
2296
2297         boost::shared_ptr<Region> region = _primary->region ();
2298
2299         if (pos < (region->position() + 64)) {
2300                 fade_length = 64; // this should be a minimum defined somewhere
2301         } else if (pos > region->last_frame()) {
2302                 fade_length = region->length();
2303         } else {
2304                 fade_length = pos - region->position();
2305         }
2306
2307         _editor->begin_reversible_command (_("change fade in length"));
2308
2309         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
2310
2311                 AudioRegionView* tmp = dynamic_cast<AudioRegionView*> (i->view);
2312
2313                 if (!tmp) {
2314                         continue;
2315                 }
2316
2317                 boost::shared_ptr<AutomationList> alist = tmp->audio_region()->fade_in();
2318                 XMLNode &before = alist->get_state();
2319
2320                 tmp->audio_region()->set_fade_in_length (fade_length);
2321                 tmp->audio_region()->set_fade_in_active (true);
2322                 tmp->hide_fade_line();
2323
2324                 XMLNode &after = alist->get_state();
2325                 _editor->session()->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &after));
2326         }
2327
2328         _editor->commit_reversible_command ();
2329 }
2330
2331 void
2332 FadeInDrag::aborted (bool)
2333 {
2334         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
2335                 AudioRegionView* tmp = dynamic_cast<AudioRegionView*> (i->view);
2336
2337                 if (!tmp) {
2338                         continue;
2339                 }
2340
2341                 tmp->reset_fade_in_shape_width (tmp->audio_region()->fade_in()->back()->when);
2342                 tmp->hide_fade_line();
2343         }
2344 }
2345
2346 FadeOutDrag::FadeOutDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, list<RegionView*> const & v)
2347         : RegionDrag (e, i, p, v)
2348 {
2349         DEBUG_TRACE (DEBUG::Drags, "New FadeOutDrag\n");
2350 }
2351
2352 void
2353 FadeOutDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
2354 {
2355         Drag::start_grab (event, cursor);
2356
2357         AudioRegionView* arv = dynamic_cast<AudioRegionView*> (_primary);
2358         boost::shared_ptr<AudioRegion> r = arv->audio_region ();
2359
2360         show_verbose_cursor_duration (r->last_frame() - r->fade_out()->back()->when, r->last_frame());
2361
2362         arv->show_fade_line(r->length() - r->fade_out()->back()->when);
2363 }
2364
2365 void
2366 FadeOutDrag::setup_pointer_frame_offset ()
2367 {
2368         AudioRegionView* arv = dynamic_cast<AudioRegionView*> (_primary);
2369         boost::shared_ptr<AudioRegion> r = arv->audio_region ();
2370         _pointer_frame_offset = raw_grab_frame() - (r->length() - (framecnt_t) r->fade_out()->back()->when + r->position());
2371 }
2372
2373 void
2374 FadeOutDrag::motion (GdkEvent* event, bool)
2375 {
2376         framecnt_t fade_length;
2377
2378         framepos_t const pos = adjusted_current_frame (event);
2379
2380         boost::shared_ptr<Region> region = _primary->region ();
2381
2382         if (pos > (region->last_frame() - 64)) {
2383                 fade_length = 64; // this should really be a minimum fade defined somewhere
2384         }
2385         else if (pos < region->position()) {
2386                 fade_length = region->length();
2387         }
2388         else {
2389                 fade_length = region->last_frame() - pos;
2390         }
2391
2392         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
2393
2394                 AudioRegionView* tmp = dynamic_cast<AudioRegionView*> (i->view);
2395
2396                 if (!tmp) {
2397                         continue;
2398                 }
2399
2400                 tmp->reset_fade_out_shape_width (fade_length);
2401                 tmp->show_fade_line(region->length() - fade_length);
2402         }
2403
2404         show_verbose_cursor_duration (region->last_frame() - fade_length, region->last_frame());
2405 }
2406
2407 void
2408 FadeOutDrag::finished (GdkEvent* event, bool movement_occurred)
2409 {
2410         if (!movement_occurred) {
2411                 return;
2412         }
2413
2414         framecnt_t fade_length;
2415
2416         framepos_t const pos = adjusted_current_frame (event);
2417
2418         boost::shared_ptr<Region> region = _primary->region ();
2419
2420         if (pos > (region->last_frame() - 64)) {
2421                 fade_length = 64; // this should really be a minimum fade defined somewhere
2422         }
2423         else if (pos < region->position()) {
2424                 fade_length = region->length();
2425         }
2426         else {
2427                 fade_length = region->last_frame() - pos;
2428         }
2429
2430         _editor->begin_reversible_command (_("change fade out length"));
2431
2432         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
2433
2434                 AudioRegionView* tmp = dynamic_cast<AudioRegionView*> (i->view);
2435
2436                 if (!tmp) {
2437                         continue;
2438                 }
2439
2440                 boost::shared_ptr<AutomationList> alist = tmp->audio_region()->fade_out();
2441                 XMLNode &before = alist->get_state();
2442
2443                 tmp->audio_region()->set_fade_out_length (fade_length);
2444                 tmp->audio_region()->set_fade_out_active (true);
2445                 tmp->hide_fade_line();
2446
2447                 XMLNode &after = alist->get_state();
2448                 _editor->session()->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &after));
2449         }
2450
2451         _editor->commit_reversible_command ();
2452 }
2453
2454 void
2455 FadeOutDrag::aborted (bool)
2456 {
2457         for (list<DraggingView>::iterator i = _views.begin(); i != _views.end(); ++i) {
2458                 AudioRegionView* tmp = dynamic_cast<AudioRegionView*> (i->view);
2459
2460                 if (!tmp) {
2461                         continue;
2462                 }
2463
2464                 tmp->reset_fade_out_shape_width (tmp->audio_region()->fade_out()->back()->when);
2465                 tmp->hide_fade_line();
2466         }
2467 }
2468
2469 MarkerDrag::MarkerDrag (Editor* e, ArdourCanvas::Item* i)
2470         : Drag (e, i)
2471 {
2472         DEBUG_TRACE (DEBUG::Drags, "New MarkerDrag\n");
2473
2474         _marker = reinterpret_cast<Marker*> (_item->get_data ("marker"));
2475         assert (_marker);
2476
2477         _points.push_back (Gnome::Art::Point (0, 0));
2478         _points.push_back (Gnome::Art::Point (0, physical_screen_height (_editor->get_window())));
2479 }
2480
2481 MarkerDrag::~MarkerDrag ()
2482 {
2483         for (list<Location*>::iterator i = _copied_locations.begin(); i != _copied_locations.end(); ++i) {
2484                 delete *i;
2485         }
2486 }
2487
2488 void
2489 MarkerDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
2490 {
2491         Drag::start_grab (event, cursor);
2492
2493         bool is_start;
2494
2495         Location *location = _editor->find_location_from_marker (_marker, is_start);
2496         _editor->_dragging_edit_point = true;
2497
2498         update_item (location);
2499
2500         // _drag_line->show();
2501         // _line->raise_to_top();
2502
2503         if (is_start) {
2504                 show_verbose_cursor_time (location->start());
2505         } else {
2506                 show_verbose_cursor_time (location->end());
2507         }
2508
2509         Selection::Operation op = ArdourKeyboard::selection_type (event->button.state);
2510
2511         switch (op) {
2512         case Selection::Toggle:
2513                 _editor->selection->toggle (_marker);
2514                 break;
2515         case Selection::Set:
2516                 if (!_editor->selection->selected (_marker)) {
2517                         _editor->selection->set (_marker);
2518                 }
2519                 break;
2520         case Selection::Extend:
2521         {
2522                 Locations::LocationList ll;
2523                 list<Marker*> to_add;
2524                 framepos_t s, e;
2525                 _editor->selection->markers.range (s, e);
2526                 s = min (_marker->position(), s);
2527                 e = max (_marker->position(), e);
2528                 s = min (s, e);
2529                 e = max (s, e);
2530                 if (e < max_framepos) {
2531                         ++e;
2532                 }
2533                 _editor->session()->locations()->find_all_between (s, e, ll, Location::Flags (0));
2534                 for (Locations::LocationList::iterator i = ll.begin(); i != ll.end(); ++i) {
2535                         Editor::LocationMarkers* lm = _editor->find_location_markers (*i);
2536                         if (lm) {
2537                                 if (lm->start) {
2538                                         to_add.push_back (lm->start);
2539                                 }
2540                                 if (lm->end) {
2541                                         to_add.push_back (lm->end);
2542                                 }
2543                         }
2544                 }
2545                 if (!to_add.empty()) {
2546                         _editor->selection->add (to_add);
2547                 }
2548                 break;
2549         }
2550         case Selection::Add:
2551                 _editor->selection->add (_marker);
2552                 break;
2553         }
2554
2555         /* Set up copies for us to manipulate during the drag */
2556
2557         for (MarkerSelection::iterator i = _editor->selection->markers.begin(); i != _editor->selection->markers.end(); ++i) {
2558                 Location* l = _editor->find_location_from_marker (*i, is_start);
2559                 _copied_locations.push_back (new Location (*l));
2560         }
2561 }
2562
2563 void
2564 MarkerDrag::setup_pointer_frame_offset ()
2565 {
2566         bool is_start;
2567         Location *location = _editor->find_location_from_marker (_marker, is_start);
2568         _pointer_frame_offset = raw_grab_frame() - (is_start ? location->start() : location->end());
2569 }
2570
2571 void
2572 MarkerDrag::motion (GdkEvent* event, bool)
2573 {
2574         framecnt_t f_delta = 0;
2575         bool is_start;
2576         bool move_both = false;
2577         Marker* marker;
2578         Location *real_location;
2579         Location *copy_location = 0;
2580
2581         framepos_t const newframe = adjusted_current_frame (event);
2582
2583         framepos_t next = newframe;
2584
2585         if (Keyboard::modifier_state_equals (event->button.state, Keyboard::PrimaryModifier)) {
2586                 move_both = true;
2587         }
2588
2589         MarkerSelection::iterator i;
2590         list<Location*>::iterator x;
2591
2592         /* find the marker we're dragging, and compute the delta */
2593
2594         for (i = _editor->selection->markers.begin(), x = _copied_locations.begin();
2595              x != _copied_locations.end() && i != _editor->selection->markers.end();
2596              ++i, ++x) {
2597
2598                 copy_location = *x;
2599                 marker = *i;
2600
2601                 if (marker == _marker) {
2602
2603                         if ((real_location = _editor->find_location_from_marker (marker, is_start)) == 0) {
2604                                 /* que pasa ?? */
2605                                 return;
2606                         }
2607
2608                         if (real_location->is_mark()) {
2609                                 f_delta = newframe - copy_location->start();
2610                         } else {
2611
2612
2613                                 switch (marker->type()) {
2614                                 case Marker::SessionStart:
2615                                 case Marker::RangeStart:
2616                                 case Marker::LoopStart:
2617                                 case Marker::PunchIn:
2618                                         f_delta = newframe - copy_location->start();
2619                                         break;
2620
2621                                 case Marker::SessionEnd:
2622                                 case Marker::RangeEnd:
2623                                 case Marker::LoopEnd:
2624                                 case Marker::PunchOut:
2625                                         f_delta = newframe - copy_location->end();
2626                                         break;
2627                                 default:
2628                                         /* what kind of marker is this ? */
2629                                         return;
2630                                 }
2631                         }
2632                         break;
2633                 }
2634         }
2635
2636         if (i == _editor->selection->markers.end()) {
2637                 /* hmm, impossible - we didn't find the dragged marker */
2638                 return;
2639         }
2640
2641         /* now move them all */
2642
2643         for (i = _editor->selection->markers.begin(), x = _copied_locations.begin();
2644              x != _copied_locations.end() && i != _editor->selection->markers.end();
2645              ++i, ++x) {
2646
2647                 copy_location = *x;
2648                 marker = *i;
2649
2650                 /* call this to find out if its the start or end */
2651
2652                 if ((real_location = _editor->find_location_from_marker (marker, is_start)) == 0) {
2653                         continue;
2654                 }
2655
2656                 if (real_location->locked()) {
2657                         continue;
2658                 }
2659
2660                 if (copy_location->is_mark()) {
2661
2662                         /* now move it */
2663
2664                         copy_location->set_start (copy_location->start() + f_delta);
2665
2666                 } else {
2667
2668                         framepos_t new_start = copy_location->start() + f_delta;
2669                         framepos_t new_end = copy_location->end() + f_delta;
2670
2671                         if (is_start) { // start-of-range marker
2672
2673                                 if (move_both) {
2674                                         copy_location->set_start (new_start);
2675                                         copy_location->set_end (new_end);
2676                                 } else  if (new_start < copy_location->end()) {
2677                                         copy_location->set_start (new_start);
2678                                 } else if (newframe > 0) {
2679                                         _editor->snap_to (next, 1, true);
2680                                         copy_location->set_end (next);
2681                                         copy_location->set_start (newframe);
2682                                 }
2683
2684                         } else { // end marker
2685
2686                                 if (move_both) {
2687                                         copy_location->set_end (new_end);
2688                                         copy_location->set_start (new_start);
2689                                 } else if (new_end > copy_location->start()) {
2690                                         copy_location->set_end (new_end);
2691                                 } else if (newframe > 0) {
2692                                         _editor->snap_to (next, -1, true);
2693                                         copy_location->set_start (next);
2694                                         copy_location->set_end (newframe);
2695                                 }
2696                         }
2697                 }
2698
2699                 update_item (copy_location);
2700
2701                 Editor::LocationMarkers* lm = _editor->find_location_markers (real_location);
2702
2703                 if (lm) {
2704                         lm->set_position (copy_location->start(), copy_location->end());
2705                 }
2706         }
2707
2708         assert (!_copied_locations.empty());
2709
2710         show_verbose_cursor_time (newframe);
2711
2712 #ifdef GTKOSX
2713         _editor->update_canvas_now ();
2714 #endif
2715 }
2716
2717 void
2718 MarkerDrag::finished (GdkEvent* event, bool movement_occurred)
2719 {
2720         if (!movement_occurred) {
2721
2722                 /* just a click, do nothing but finish
2723                    off the selection process
2724                 */
2725
2726                 Selection::Operation op = ArdourKeyboard::selection_type (event->button.state);
2727
2728                 switch (op) {
2729                 case Selection::Set:
2730                         if (_editor->selection->selected (_marker) && _editor->selection->markers.size() > 1) {
2731                                 _editor->selection->set (_marker);
2732                         }
2733                         break;
2734
2735                 case Selection::Toggle:
2736                 case Selection::Extend:
2737                 case Selection::Add:
2738                         break;
2739                 }
2740
2741                 return;
2742         }
2743
2744         _editor->_dragging_edit_point = false;
2745
2746         _editor->begin_reversible_command ( _("move marker") );
2747         XMLNode &before = _editor->session()->locations()->get_state();
2748
2749         MarkerSelection::iterator i;
2750         list<Location*>::iterator x;
2751         bool is_start;
2752
2753         for (i = _editor->selection->markers.begin(), x = _copied_locations.begin();
2754              x != _copied_locations.end() && i != _editor->selection->markers.end();
2755              ++i, ++x) {
2756
2757                 Location * location = _editor->find_location_from_marker (*i, is_start);
2758
2759                 if (location) {
2760
2761                         if (location->locked()) {
2762                                 return;
2763                         }
2764
2765                         if (location->is_mark()) {
2766                                 location->set_start ((*x)->start());
2767                         } else {
2768                                 location->set ((*x)->start(), (*x)->end());
2769                         }
2770                 }
2771         }
2772
2773         XMLNode &after = _editor->session()->locations()->get_state();
2774         _editor->session()->add_command(new MementoCommand<Locations>(*(_editor->session()->locations()), &before, &after));
2775         _editor->commit_reversible_command ();
2776 }
2777
2778 void
2779 MarkerDrag::aborted (bool)
2780 {
2781         /* XXX: TODO */
2782 }
2783
2784 void
2785 MarkerDrag::update_item (Location*)
2786 {
2787         /* noop */
2788 }
2789
2790 ControlPointDrag::ControlPointDrag (Editor* e, ArdourCanvas::Item* i)
2791         : Drag (e, i),
2792           _cumulative_x_drag (0),
2793           _cumulative_y_drag (0)
2794 {
2795         if (_zero_gain_fraction < 0.0) {
2796                 _zero_gain_fraction = gain_to_slider_position_with_max (dB_to_coefficient (0.0), Config->get_max_gain());
2797         }
2798
2799         DEBUG_TRACE (DEBUG::Drags, "New ControlPointDrag\n");
2800
2801         _point = reinterpret_cast<ControlPoint*> (_item->get_data ("control_point"));
2802         assert (_point);
2803 }
2804
2805
2806 void
2807 ControlPointDrag::start_grab (GdkEvent* event, Gdk::Cursor* /*cursor*/)
2808 {
2809         Drag::start_grab (event, _editor->cursors()->fader);
2810
2811         // start the grab at the center of the control point so
2812         // the point doesn't 'jump' to the mouse after the first drag
2813         _fixed_grab_x = _point->get_x();
2814         _fixed_grab_y = _point->get_y();
2815
2816         float const fraction = 1 - (_point->get_y() / _point->line().height());
2817
2818         _point->line().start_drag_single (_point, _fixed_grab_x, fraction);
2819
2820         _editor->verbose_cursor()->set (_point->line().get_verbose_cursor_string (fraction),
2821                                         event->button.x + 10, event->button.y + 10);
2822
2823         _editor->verbose_cursor()->show ();
2824
2825         if (!_point->can_slide ()) {
2826                 _x_constrained = true;
2827         }
2828 }
2829
2830 void
2831 ControlPointDrag::motion (GdkEvent* event, bool)
2832 {
2833         double dx = _drags->current_pointer_x() - last_pointer_x();
2834         double dy = _drags->current_pointer_y() - last_pointer_y();
2835
2836         if (event->button.state & Keyboard::SecondaryModifier) {
2837                 dx *= 0.1;
2838                 dy *= 0.1;
2839         }
2840
2841         /* coordinate in pixels relative to the start of the region (for region-based automation)
2842            or track (for track-based automation) */
2843         double cx = _fixed_grab_x + _cumulative_x_drag + dx;
2844         double cy = _fixed_grab_y + _cumulative_y_drag + dy;
2845
2846         // calculate zero crossing point. back off by .01 to stay on the
2847         // positive side of zero
2848         double const zero_gain_y = (1.0 - _zero_gain_fraction) * _point->line().height() - .01;
2849
2850         // make sure we hit zero when passing through
2851         if ((cy < zero_gain_y && (cy - dy) > zero_gain_y) || (cy > zero_gain_y && (cy - dy) < zero_gain_y)) {
2852                 cy = zero_gain_y;
2853         }
2854
2855         if (_x_constrained) {
2856                 cx = _fixed_grab_x;
2857         }
2858         if (_y_constrained) {
2859                 cy = _fixed_grab_y;
2860         }
2861
2862         _cumulative_x_drag = cx - _fixed_grab_x;
2863         _cumulative_y_drag = cy - _fixed_grab_y;
2864
2865         cx = max (0.0, cx);
2866         cy = max (0.0, cy);
2867         cy = min ((double) _point->line().height(), cy);
2868
2869         framepos_t cx_frames = _editor->unit_to_frame (cx);
2870
2871         if (!_x_constrained) {
2872                 _editor->snap_to_with_modifier (cx_frames, event);
2873         }
2874
2875         cx_frames = min (cx_frames, _point->line().maximum_time());
2876
2877         float const fraction = 1.0 - (cy / _point->line().height());
2878
2879         bool const push = Keyboard::modifier_state_contains (event->button.state, Keyboard::PrimaryModifier);
2880
2881         _point->line().drag_motion (_editor->frame_to_unit_unrounded (cx_frames), fraction, false, push);
2882
2883         _editor->verbose_cursor()->set_text (_point->line().get_verbose_cursor_string (fraction));
2884 }
2885
2886 void
2887 ControlPointDrag::finished (GdkEvent* event, bool movement_occurred)
2888 {
2889         if (!movement_occurred) {
2890
2891                 /* just a click */
2892
2893                 if (Keyboard::modifier_state_equals (event->button.state, Keyboard::TertiaryModifier)) {
2894                         _editor->reset_point_selection ();
2895                 }
2896
2897         } else {
2898                 motion (event, false);
2899         }
2900
2901         _point->line().end_drag ();
2902         _editor->session()->commit_reversible_command ();
2903 }
2904
2905 void
2906 ControlPointDrag::aborted (bool)
2907 {
2908         _point->line().reset ();
2909 }
2910
2911 bool
2912 ControlPointDrag::active (Editing::MouseMode m)
2913 {
2914         if (m == Editing::MouseGain) {
2915                 /* always active in mouse gain */
2916                 return true;
2917         }
2918
2919         /* otherwise active if the point is on an automation line (ie not if its on a region gain line) */
2920         return dynamic_cast<AutomationLine*> (&(_point->line())) != 0;
2921 }
2922
2923 LineDrag::LineDrag (Editor* e, ArdourCanvas::Item* i)
2924         : Drag (e, i),
2925           _line (0),
2926           _cumulative_y_drag (0)
2927 {
2928         DEBUG_TRACE (DEBUG::Drags, "New LineDrag\n");
2929 }
2930
2931 void
2932 LineDrag::start_grab (GdkEvent* event, Gdk::Cursor* /*cursor*/)
2933 {
2934         _line = reinterpret_cast<AutomationLine*> (_item->get_data ("line"));
2935         assert (_line);
2936
2937         _item = &_line->grab_item ();
2938
2939         /* need to get x coordinate in terms of parent (TimeAxisItemView)
2940            origin, and ditto for y.
2941         */
2942
2943         double cx = event->button.x;
2944         double cy = event->button.y;
2945
2946         _line->parent_group().w2i (cx, cy);
2947
2948         framecnt_t const frame_within_region = (framecnt_t) floor (cx * _editor->frames_per_unit);
2949
2950         uint32_t before;
2951         uint32_t after;
2952
2953         if (!_line->control_points_adjacent (frame_within_region, before, after)) {
2954                 /* no adjacent points */
2955                 return;
2956         }
2957
2958         Drag::start_grab (event, _editor->cursors()->fader);
2959
2960         /* store grab start in parent frame */
2961
2962         _fixed_grab_x = cx;
2963         _fixed_grab_y = cy;
2964
2965         double fraction = 1.0 - (cy / _line->height());
2966
2967         _line->start_drag_line (before, after, fraction);
2968
2969         _editor->verbose_cursor()->set (_line->get_verbose_cursor_string (fraction),
2970                                         event->button.x + 10, event->button.y + 10);
2971
2972         _editor->verbose_cursor()->show ();
2973 }
2974
2975 void
2976 LineDrag::motion (GdkEvent* event, bool)
2977 {
2978         double dy = _drags->current_pointer_y() - last_pointer_y();
2979
2980         if (event->button.state & Keyboard::SecondaryModifier) {
2981                 dy *= 0.1;
2982         }
2983
2984         double cy = _fixed_grab_y + _cumulative_y_drag + dy;
2985
2986         _cumulative_y_drag = cy - _fixed_grab_y;
2987
2988         cy = max (0.0, cy);
2989         cy = min ((double) _line->height(), cy);
2990
2991         double const fraction = 1.0 - (cy / _line->height());
2992         bool const push = !Keyboard::modifier_state_contains (event->button.state, Keyboard::PrimaryModifier);
2993
2994         /* we are ignoring x position for this drag, so we can just pass in anything */
2995         _line->drag_motion (0, fraction, true, push);
2996
2997         _editor->verbose_cursor()->set_text (_line->get_verbose_cursor_string (fraction));
2998 }
2999
3000 void
3001 LineDrag::finished (GdkEvent* event, bool)
3002 {
3003         motion (event, false);
3004         _line->end_drag ();
3005         _editor->session()->commit_reversible_command ();
3006 }
3007
3008 void
3009 LineDrag::aborted (bool)
3010 {
3011         _line->reset ();
3012 }
3013
3014 FeatureLineDrag::FeatureLineDrag (Editor* e, ArdourCanvas::Item* i)
3015         : Drag (e, i),
3016           _line (0),
3017           _cumulative_x_drag (0)
3018 {
3019         DEBUG_TRACE (DEBUG::Drags, "New FeatureLineDrag\n");
3020 }
3021
3022 void
3023 FeatureLineDrag::start_grab (GdkEvent* event, Gdk::Cursor* /*cursor*/)
3024 {
3025         Drag::start_grab (event);
3026
3027         _line = reinterpret_cast<Line*> (_item);
3028         assert (_line);
3029
3030         /* need to get x coordinate in terms of parent (AudioRegionView) origin. */
3031
3032         double cx = event->button.x;
3033         double cy = event->button.y;
3034
3035         _item->property_parent().get_value()->w2i(cx, cy);
3036
3037         /* store grab start in parent frame */
3038         _region_view_grab_x = cx;
3039
3040         _before = *(float*) _item->get_data ("position");
3041
3042         _arv = reinterpret_cast<AudioRegionView*> (_item->get_data ("regionview"));
3043
3044         _max_x = _editor->frame_to_pixel(_arv->get_duration());
3045 }
3046
3047 void
3048 FeatureLineDrag::motion (GdkEvent*, bool)
3049 {
3050         double dx = _drags->current_pointer_x() - last_pointer_x();
3051
3052         double cx = _region_view_grab_x + _cumulative_x_drag + dx;
3053
3054         _cumulative_x_drag += dx;
3055
3056         /* Clamp the min and max extent of the drag to keep it within the region view bounds */
3057
3058         if (cx > _max_x){
3059                 cx = _max_x;
3060         }
3061         else if(cx < 0){
3062                 cx = 0;
3063         }
3064
3065         ArdourCanvas::Points points;
3066
3067         double x1 = 0, x2 = 0, y1 = 0, y2 = 0;
3068
3069         _line->get_bounds(x1, y2, x2, y2);
3070
3071         points.push_back(Gnome::Art::Point(cx, 2.0)); // first x-coord needs to be a non-normal value
3072         points.push_back(Gnome::Art::Point(cx, y2 - y1));
3073
3074         _line->property_points() = points;
3075
3076         float *pos = new float;
3077         *pos = cx;
3078
3079         _line->set_data ("position", pos);
3080
3081         _before = cx;
3082 }
3083
3084 void
3085 FeatureLineDrag::finished (GdkEvent*, bool)
3086 {
3087         _arv = reinterpret_cast<AudioRegionView*> (_item->get_data ("regionview"));
3088         _arv->update_transient(_before, _before);
3089 }
3090
3091 void
3092 FeatureLineDrag::aborted (bool)
3093 {
3094         //_line->reset ();
3095 }
3096
3097 RubberbandSelectDrag::RubberbandSelectDrag (Editor* e, ArdourCanvas::Item* i)
3098         : Drag (e, i)
3099         , _vertical_only (false)
3100 {
3101         DEBUG_TRACE (DEBUG::Drags, "New RubberbandSelectDrag\n");
3102 }
3103
3104 void
3105 RubberbandSelectDrag::start_grab (GdkEvent* event, Gdk::Cursor *)
3106 {
3107         Drag::start_grab (event);
3108         show_verbose_cursor_time (adjusted_current_frame (event));
3109 }
3110
3111 void
3112 RubberbandSelectDrag::motion (GdkEvent* event, bool)
3113 {
3114         framepos_t start;
3115         framepos_t end;
3116         double y1;
3117         double y2;
3118
3119         framepos_t const pf = adjusted_current_frame (event, Config->get_rubberbanding_snaps_to_grid ());
3120
3121         framepos_t grab = grab_frame ();
3122         if (Config->get_rubberbanding_snaps_to_grid ()) {
3123                 _editor->snap_to_with_modifier (grab, event);
3124         }
3125
3126         /* base start and end on initial click position */
3127
3128         if (pf < grab) {
3129                 start = pf;
3130                 end = grab;
3131         } else {
3132                 end = pf;
3133                 start = grab;
3134         }
3135
3136         if (_drags->current_pointer_y() < grab_y()) {
3137                 y1 = _drags->current_pointer_y();
3138                 y2 = grab_y();
3139         } else {
3140                 y2 = _drags->current_pointer_y();
3141                 y1 = grab_y();
3142         }
3143
3144
3145         if (start != end || y1 != y2) {
3146
3147                 double x1 = _editor->frame_to_pixel (start);
3148                 double x2 = _editor->frame_to_pixel (end);
3149
3150                 _editor->rubberband_rect->property_x1() = x1;
3151                 if (_vertical_only) {
3152                         /* fixed 10 pixel width */
3153                         _editor->rubberband_rect->property_x2() = x1 + 10;
3154                 } else {
3155                         _editor->rubberband_rect->property_x2() = x2;
3156                 } 
3157
3158                 _editor->rubberband_rect->property_y1() = y1;
3159                 _editor->rubberband_rect->property_y2() = y2;
3160
3161                 _editor->rubberband_rect->show();
3162                 _editor->rubberband_rect->raise_to_top();
3163
3164                 show_verbose_cursor_time (pf);
3165
3166                 do_select_things (event, true);
3167         }
3168 }
3169
3170 void
3171 RubberbandSelectDrag::do_select_things (GdkEvent* event, bool drag_in_progress)
3172 {
3173         framepos_t x1;
3174         framepos_t x2;
3175         
3176         if (grab_frame() < last_pointer_frame()) {
3177                 x1 = grab_frame ();
3178                 x2 = last_pointer_frame ();
3179         } else {
3180                 x2 = grab_frame ();
3181                 x1 = last_pointer_frame ();
3182         }
3183
3184         double y1;
3185         double y2;
3186         
3187         if (_drags->current_pointer_y() < grab_y()) {
3188                 y1 = _drags->current_pointer_y();
3189                 y2 = grab_y();
3190         } else {
3191                 y2 = _drags->current_pointer_y();
3192                 y1 = grab_y();
3193         }
3194
3195         select_things (event->button.state, x1, x2, y1, y2, drag_in_progress);
3196 }
3197
3198 void
3199 RubberbandSelectDrag::finished (GdkEvent* event, bool movement_occurred)
3200 {
3201         if (movement_occurred) {
3202
3203                 motion (event, false);
3204                 do_select_things (event, false);
3205
3206         } else {
3207
3208                 /* just a click */
3209
3210                 bool do_deselect = true;
3211                 MidiTimeAxisView* mtv;
3212
3213                 if ((mtv = dynamic_cast<MidiTimeAxisView*>(_editor->clicked_axisview)) != 0) {
3214                         /* MIDI track */
3215                         if (_editor->selection->empty()) {
3216                                 /* nothing selected */
3217                                 add_midi_region (mtv);
3218                                 do_deselect = false;
3219                         }
3220                 } 
3221
3222                 if (do_deselect) {
3223                         deselect_things ();
3224                 }
3225
3226         }
3227
3228         _editor->rubberband_rect->hide();
3229 }
3230
3231 void
3232 RubberbandSelectDrag::aborted (bool)
3233 {
3234         _editor->rubberband_rect->hide ();
3235 }
3236
3237 TimeFXDrag::TimeFXDrag (Editor* e, ArdourCanvas::Item* i, RegionView* p, std::list<RegionView*> const & v)
3238         : RegionDrag (e, i, p, v)
3239 {
3240         DEBUG_TRACE (DEBUG::Drags, "New TimeFXDrag\n");
3241 }
3242
3243 void
3244 TimeFXDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
3245 {
3246         Drag::start_grab (event, cursor);
3247
3248         show_verbose_cursor_time (adjusted_current_frame (event));
3249 }
3250
3251 void
3252 TimeFXDrag::motion (GdkEvent* event, bool)
3253 {
3254         RegionView* rv = _primary;
3255         StreamView* cv = rv->get_time_axis_view().view ();
3256
3257         pair<TimeAxisView*, double> const tv = _editor->trackview_by_y_position (grab_y());
3258         int layer = tv.first->layer_display() == Overlaid ? 0 : tv.second;
3259         int layers = tv.first->layer_display() == Overlaid ? 1 : cv->layers();
3260
3261         framepos_t const pf = adjusted_current_frame (event);
3262
3263         if (pf > rv->region()->position()) {
3264                 rv->get_time_axis_view().show_timestretch (rv->region()->position(), pf, layers, layer);
3265         }
3266
3267         show_verbose_cursor_time (pf);
3268 }
3269
3270 void
3271 TimeFXDrag::finished (GdkEvent* /*event*/, bool movement_occurred)
3272 {
3273         _primary->get_time_axis_view().hide_timestretch ();
3274
3275         if (!movement_occurred) {
3276                 return;
3277         }
3278
3279         if (last_pointer_frame() < _primary->region()->position()) {
3280                 /* backwards drag of the left edge - not usable */
3281                 return;
3282         }
3283
3284         framecnt_t newlen = last_pointer_frame() - _primary->region()->position();
3285
3286         float percentage = (double) newlen / (double) _primary->region()->length();
3287
3288 #ifndef USE_RUBBERBAND
3289         // Soundtouch uses percentage / 100 instead of normal (/ 1)
3290         if (_primary->region()->data_type() == DataType::AUDIO) {
3291                 percentage = (float) ((double) newlen - (double) _primary->region()->length()) / ((double) newlen) * 100.0f;
3292         }
3293 #endif
3294
3295         if (!_editor->get_selection().regions.empty()) {
3296                 /* primary will already be included in the selection, and edit
3297                    group shared editing will propagate selection across
3298                    equivalent regions, so just use the current region
3299                    selection.
3300                 */
3301
3302                 if (_editor->time_stretch (_editor->get_selection().regions, percentage) == -1) {
3303                         error << _("An error occurred while executing time stretch operation") << endmsg;
3304                 }
3305         }
3306 }
3307
3308 void
3309 TimeFXDrag::aborted (bool)
3310 {
3311         _primary->get_time_axis_view().hide_timestretch ();
3312 }
3313
3314 ScrubDrag::ScrubDrag (Editor* e, ArdourCanvas::Item* i)
3315         : Drag (e, i)
3316 {
3317         DEBUG_TRACE (DEBUG::Drags, "New ScrubDrag\n");
3318 }
3319
3320 void
3321 ScrubDrag::start_grab (GdkEvent* event, Gdk::Cursor *)
3322 {
3323         Drag::start_grab (event);
3324 }
3325
3326 void
3327 ScrubDrag::motion (GdkEvent* /*event*/, bool)
3328 {
3329         _editor->scrub (adjusted_current_frame (0, false), _drags->current_pointer_x ());
3330 }
3331
3332 void
3333 ScrubDrag::finished (GdkEvent* /*event*/, bool movement_occurred)
3334 {
3335         if (movement_occurred && _editor->session()) {
3336                 /* make sure we stop */
3337                 _editor->session()->request_transport_speed (0.0);
3338         }
3339 }
3340
3341 void
3342 ScrubDrag::aborted (bool)
3343 {
3344         /* XXX: TODO */
3345 }
3346
3347 SelectionDrag::SelectionDrag (Editor* e, ArdourCanvas::Item* i, Operation o)
3348         : Drag (e, i)
3349         , _operation (o)
3350         , _copy (false)
3351         , _original_pointer_time_axis (-1)
3352         , _last_pointer_time_axis (-1)
3353         , _time_selection_at_start (!_editor->get_selection().time.empty())
3354 {
3355         DEBUG_TRACE (DEBUG::Drags, "New SelectionDrag\n");
3356 }
3357
3358 void
3359 SelectionDrag::start_grab (GdkEvent* event, Gdk::Cursor*)
3360 {
3361         if (_editor->session() == 0) {
3362                 return;
3363         }
3364
3365         Gdk::Cursor* cursor = 0;
3366
3367         switch (_operation) {
3368         case CreateSelection:
3369                 if (Keyboard::modifier_state_equals (event->button.state, Keyboard::TertiaryModifier)) {
3370                         _copy = true;
3371                 } else {
3372                         _copy = false;
3373                 }
3374                 cursor = _editor->cursors()->selector;
3375                 Drag::start_grab (event, cursor);
3376                 break;
3377
3378         case SelectionStartTrim:
3379                 if (_editor->clicked_axisview) {
3380                         _editor->clicked_axisview->order_selection_trims (_item, true);
3381                 }
3382                 Drag::start_grab (event, _editor->cursors()->left_side_trim);
3383                 break;
3384
3385         case SelectionEndTrim:
3386                 if (_editor->clicked_axisview) {
3387                         _editor->clicked_axisview->order_selection_trims (_item, false);
3388                 }
3389                 Drag::start_grab (event, _editor->cursors()->right_side_trim);
3390                 break;
3391
3392         case SelectionMove:
3393                 Drag::start_grab (event, cursor);
3394                 break;
3395         }
3396
3397         if (_operation == SelectionMove) {
3398                 show_verbose_cursor_time (_editor->selection->time[_editor->clicked_selection].start);
3399         } else {
3400                 show_verbose_cursor_time (adjusted_current_frame (event));
3401         }
3402
3403         _original_pointer_time_axis = _editor->trackview_by_y_position (_drags->current_pointer_y ()).first->order ();
3404 }
3405
3406 void
3407 SelectionDrag::setup_pointer_frame_offset ()
3408 {
3409         switch (_operation) {
3410         case CreateSelection:
3411                 _pointer_frame_offset = 0;
3412                 break;
3413
3414         case SelectionStartTrim:
3415         case SelectionMove:
3416                 _pointer_frame_offset = raw_grab_frame() - _editor->selection->time[_editor->clicked_selection].start;
3417                 break;
3418
3419         case SelectionEndTrim:
3420                 _pointer_frame_offset = raw_grab_frame() - _editor->selection->time[_editor->clicked_selection].end;
3421                 break;
3422         }
3423 }
3424
3425 void
3426 SelectionDrag::motion (GdkEvent* event, bool first_move)
3427 {
3428         framepos_t start = 0;
3429         framepos_t end = 0;
3430         framecnt_t length;
3431
3432         pair<TimeAxisView*, int> const pending_time_axis = _editor->trackview_by_y_position (_drags->current_pointer_y ());
3433         if (pending_time_axis.first == 0) {
3434                 return;
3435         }
3436
3437         framepos_t const pending_position = adjusted_current_frame (event);
3438
3439         /* only alter selection if things have changed */
3440
3441         if (pending_time_axis.first->order() == _last_pointer_time_axis && pending_position == last_pointer_frame()) {
3442                 return;
3443         }
3444
3445         switch (_operation) {
3446         case CreateSelection:
3447         {
3448                 framepos_t grab = grab_frame ();
3449
3450                 if (first_move) {
3451                         _editor->snap_to (grab);
3452                 }
3453
3454                 if (pending_position < grab_frame()) {
3455                         start = pending_position;
3456                         end = grab;
3457                 } else {
3458                         end = pending_position;
3459                         start = grab;
3460                 }
3461
3462                 /* first drag: Either add to the selection
3463                    or create a new selection
3464                 */
3465
3466                 if (first_move) {
3467
3468                         if (_copy) {
3469                                 /* adding to the selection */
3470                                 _editor->set_selected_track_as_side_effect (Selection::Add);
3471                                 //_editor->selection->add (_editor->clicked_axisview);
3472                                 _editor->clicked_selection = _editor->selection->add (start, end);
3473                                 _copy = false;
3474                         } else {
3475                                 /* new selection */
3476
3477                                 if (_editor->clicked_axisview && !_editor->selection->selected (_editor->clicked_axisview)) {
3478                                         //_editor->selection->set (_editor->clicked_axisview);
3479                                         _editor->set_selected_track_as_side_effect (Selection::Set);
3480                                 }
3481
3482                                 _editor->clicked_selection = _editor->selection->set (start, end);
3483                         }
3484                 }
3485
3486                 /* select the track that we're in */
3487                 if (find (_added_time_axes.begin(), _added_time_axes.end(), pending_time_axis.first) == _added_time_axes.end()) {
3488                         // _editor->set_selected_track_as_side_effect (Selection::Add);
3489                         _editor->selection->add (pending_time_axis.first);
3490                         _added_time_axes.push_back (pending_time_axis.first);
3491                 }
3492
3493                 /* deselect any tracks that this drag no longer includes, being careful to only deselect
3494                    tracks that we selected in the first place.
3495                 */
3496
3497                 int min_order = min (_original_pointer_time_axis, pending_time_axis.first->order());
3498                 int max_order = max (_original_pointer_time_axis, pending_time_axis.first->order());
3499
3500                 list<TimeAxisView*>::iterator i = _added_time_axes.begin();
3501                 while (i != _added_time_axes.end()) {
3502
3503                         list<TimeAxisView*>::iterator tmp = i;
3504                         ++tmp;
3505
3506                         if ((*i)->order() < min_order || (*i)->order() > max_order) {
3507                                 _editor->selection->remove (*i);
3508                                 _added_time_axes.remove (*i);
3509                         }
3510
3511                         i = tmp;
3512                 }
3513
3514         }
3515         break;
3516
3517         case SelectionStartTrim:
3518
3519                 start = _editor->selection->time[_editor->clicked_selection].start;
3520                 end = _editor->selection->time[_editor->clicked_selection].end;
3521
3522                 if (pending_position > end) {
3523                         start = end;
3524                 } else {
3525                         start = pending_position;
3526                 }
3527                 break;
3528
3529         case SelectionEndTrim:
3530
3531                 start = _editor->selection->time[_editor->clicked_selection].start;
3532                 end = _editor->selection->time[_editor->clicked_selection].end;
3533
3534                 if (pending_position < start) {
3535                         end = start;
3536                 } else {
3537                         end = pending_position;
3538                 }
3539
3540                 break;
3541
3542         case SelectionMove:
3543
3544                 start = _editor->selection->time[_editor->clicked_selection].start;
3545                 end = _editor->selection->time[_editor->clicked_selection].end;
3546
3547                 length = end - start;
3548
3549                 start = pending_position;
3550                 _editor->snap_to (start);
3551
3552                 end = start + length;
3553
3554                 break;
3555         }
3556
3557         if (event->button.x >= _editor->horizontal_position() + _editor->_canvas_width) {
3558                 _editor->start_canvas_autoscroll (1, 0);
3559         }
3560
3561         if (start != end) {
3562                 _editor->selection->replace (_editor->clicked_selection, start, end);
3563         }
3564
3565         if (_operation == SelectionMove) {
3566                 show_verbose_cursor_time(start);
3567         } else {
3568                 show_verbose_cursor_time(pending_position);
3569         }
3570 }
3571
3572 void
3573 SelectionDrag::finished (GdkEvent* event, bool movement_occurred)
3574 {
3575         Session* s = _editor->session();
3576
3577         if (movement_occurred) {
3578                 motion (event, false);
3579                 /* XXX this is not object-oriented programming at all. ick */
3580                 if (_editor->selection->time.consolidate()) {
3581                         _editor->selection->TimeChanged ();
3582                 }
3583
3584                 /* XXX what if its a music time selection? */
3585                 if (s) {
3586                         if ((s->config.get_auto_play() || (s->get_play_range() && s->transport_rolling()))) {
3587                                 s->request_play_range (&_editor->selection->time, true);
3588                         } else {
3589                                 if (Config->get_always_play_range()) {
3590                                         if (_editor->doing_range_stuff()) {
3591                                                 s->request_locate (_editor->get_selection().time.start());
3592                                         } 
3593                                 }
3594                         }
3595                 }
3596
3597         } else {
3598                 /* just a click, no pointer movement.
3599                  */
3600
3601                 if (Keyboard::no_modifier_keys_pressed (&event->button)) {
3602                         if (!_time_selection_at_start) {
3603                                 if (_editor->clicked_regionview) {
3604                                         if (_editor->get_selection().selected (_editor->clicked_regionview)) {
3605                                                 /* range select the entire current
3606                                                    region selection
3607                                                 */
3608                                                 _editor->select_range (_editor->get_selection().regions.start(), 
3609                                                                        _editor->get_selection().regions.end_frame());
3610                                         } else {
3611                                                 /* range select this (unselected)
3612                                                  * region
3613                                                  */
3614                                                 _editor->select_range (_editor->clicked_regionview->region()->position(), 
3615                                                                        _editor->clicked_regionview->region()->last_frame());
3616                                         }
3617                                 }
3618                         } else {
3619                                 _editor->selection->clear_time();
3620                         }
3621                 }
3622
3623                 if (_editor->clicked_axisview && !_editor->selection->selected (_editor->clicked_axisview)) {
3624                         _editor->selection->set (_editor->clicked_axisview);
3625                 }
3626
3627                 if (s && s->get_play_range () && s->transport_rolling()) {
3628                         s->request_stop (false, false);
3629                 }
3630
3631                 if (Config->get_always_play_range()) {
3632                         if (_editor->doing_range_stuff()) {
3633                                 s->request_locate (_editor->get_selection().time.start());
3634                         } 
3635                 }
3636         }
3637
3638         _editor->stop_canvas_autoscroll ();
3639 }
3640
3641 void
3642 SelectionDrag::aborted (bool)
3643 {
3644         /* XXX: TODO */
3645 }
3646
3647 RangeMarkerBarDrag::RangeMarkerBarDrag (Editor* e, ArdourCanvas::Item* i, Operation o)
3648         : Drag (e, i),
3649           _operation (o),
3650           _copy (false)
3651 {
3652         DEBUG_TRACE (DEBUG::Drags, "New RangeMarkerBarDrag\n");
3653
3654         _drag_rect = new ArdourCanvas::SimpleRect (*_editor->time_line_group, 0.0, 0.0, 0.0,
3655                                                    physical_screen_height (_editor->get_window()));
3656         _drag_rect->hide ();
3657
3658         _drag_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragRect.get();
3659         _drag_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_RangeDragRect.get();
3660 }
3661
3662 void
3663 RangeMarkerBarDrag::start_grab (GdkEvent* event, Gdk::Cursor *)
3664 {
3665         if (_editor->session() == 0) {
3666                 return;
3667         }
3668
3669         Gdk::Cursor* cursor = 0;
3670
3671         if (!_editor->temp_location) {
3672                 _editor->temp_location = new Location (*_editor->session());
3673         }
3674
3675         switch (_operation) {
3676         case CreateRangeMarker:
3677         case CreateTransportMarker:
3678         case CreateCDMarker:
3679
3680                 if (Keyboard::modifier_state_equals (event->button.state, Keyboard::TertiaryModifier)) {
3681                         _copy = true;
3682                 } else {
3683                         _copy = false;
3684                 }
3685                 cursor = _editor->cursors()->selector;
3686                 break;
3687         }
3688
3689         Drag::start_grab (event, cursor);
3690
3691         show_verbose_cursor_time (adjusted_current_frame (event));
3692 }
3693
3694 void
3695 RangeMarkerBarDrag::motion (GdkEvent* event, bool first_move)
3696 {
3697         framepos_t start = 0;
3698         framepos_t end = 0;
3699         ArdourCanvas::SimpleRect *crect;
3700
3701         switch (_operation) {
3702         case CreateRangeMarker:
3703                 crect = _editor->range_bar_drag_rect;
3704                 break;
3705         case CreateTransportMarker:
3706                 crect = _editor->transport_bar_drag_rect;
3707                 break;
3708         case CreateCDMarker:
3709                 crect = _editor->cd_marker_bar_drag_rect;
3710                 break;
3711         default:
3712                 cerr << "Error: unknown range marker op passed to Editor::drag_range_markerbar_op ()" << endl;
3713                 return;
3714                 break;
3715         }
3716
3717         framepos_t const pf = adjusted_current_frame (event);
3718
3719         if (_operation == CreateRangeMarker || _operation == CreateTransportMarker || _operation == CreateCDMarker) {
3720                 framepos_t grab = grab_frame ();
3721                 _editor->snap_to (grab);
3722
3723                 if (pf < grab_frame()) {
3724                         start = pf;
3725                         end = grab;
3726                 } else {
3727                         end = pf;
3728                         start = grab;
3729                 }
3730
3731                 /* first drag: Either add to the selection
3732                    or create a new selection.
3733                 */
3734
3735                 if (first_move) {
3736
3737                         _editor->temp_location->set (start, end);
3738
3739                         crect->show ();
3740
3741                         update_item (_editor->temp_location);
3742                         _drag_rect->show();
3743                         //_drag_rect->raise_to_top();
3744
3745                 }
3746         }
3747
3748         if (event->button.x >= _editor->horizontal_position() + _editor->_canvas_width) {
3749                 _editor->start_canvas_autoscroll (1, 0);
3750         }
3751
3752         if (start != end) {
3753                 _editor->temp_location->set (start, end);
3754
3755                 double x1 = _editor->frame_to_pixel (start);
3756                 double x2 = _editor->frame_to_pixel (end);
3757                 crect->property_x1() = x1;
3758                 crect->property_x2() = x2;
3759
3760                 update_item (_editor->temp_location);
3761         }
3762
3763         show_verbose_cursor_time (pf);
3764
3765 }
3766
3767 void
3768 RangeMarkerBarDrag::finished (GdkEvent* event, bool movement_occurred)
3769 {
3770         Location * newloc = 0;
3771         string rangename;
3772         int flags;
3773
3774         if (movement_occurred) {
3775                 motion (event, false);
3776                 _drag_rect->hide();
3777
3778                 switch (_operation) {
3779                 case CreateRangeMarker:
3780                 case CreateCDMarker:
3781                     {
3782                         _editor->begin_reversible_command (_("new range marker"));
3783                         XMLNode &before = _editor->session()->locations()->get_state();
3784                         _editor->session()->locations()->next_available_name(rangename,"unnamed");
3785                         if (_operation == CreateCDMarker) {
3786                                 flags = Location::IsRangeMarker | Location::IsCDMarker;
3787                                 _editor->cd_marker_bar_drag_rect->hide();
3788                         }
3789                         else {
3790                                 flags = Location::IsRangeMarker;
3791                                 _editor->range_bar_drag_rect->hide();
3792                         }
3793                         newloc = new Location (
3794                                 *_editor->session(), _editor->temp_location->start(), _editor->temp_location->end(), rangename, (Location::Flags) flags
3795                                 );
3796
3797                         _editor->session()->locations()->add (newloc, true);
3798                         XMLNode &after = _editor->session()->locations()->get_state();
3799                         _editor->session()->add_command(new MementoCommand<Locations>(*(_editor->session()->locations()), &before, &after));
3800                         _editor->commit_reversible_command ();
3801                         break;
3802                     }
3803
3804                 case CreateTransportMarker:
3805                         // popup menu to pick loop or punch
3806                         _editor->new_transport_marker_context_menu (&event->button, _item);
3807                         break;
3808                 }
3809         } else {
3810                 /* just a click, no pointer movement. remember that context menu stuff was handled elsewhere */
3811
3812                 if (Keyboard::no_modifier_keys_pressed (&event->button) && _operation != CreateCDMarker) {
3813
3814                         framepos_t start;
3815                         framepos_t end;
3816
3817                         _editor->session()->locations()->marks_either_side (grab_frame(), start, end);
3818
3819                         if (end == max_framepos) {
3820                                 end = _editor->session()->current_end_frame ();
3821                         }
3822
3823                         if (start == max_framepos) {
3824                                 start = _editor->session()->current_start_frame ();
3825                         }
3826
3827                         switch (_editor->mouse_mode) {
3828                         case MouseObject:
3829                                 /* find the two markers on either side and then make the selection from it */
3830                                 _editor->select_all_within (start, end, 0.0f, FLT_MAX, _editor->track_views, Selection::Set, false);
3831                                 break;
3832
3833                         case MouseRange:
3834                                 /* find the two markers on either side of the click and make the range out of it */
3835                                 _editor->selection->set (start, end);
3836                                 break;
3837
3838                         default:
3839                                 break;
3840                         }
3841                 }
3842         }
3843
3844         _editor->stop_canvas_autoscroll ();
3845 }
3846
3847 void
3848 RangeMarkerBarDrag::aborted (bool)
3849 {
3850         /* XXX: TODO */
3851 }
3852
3853 void
3854 RangeMarkerBarDrag::update_item (Location* location)
3855 {
3856         double const x1 = _editor->frame_to_pixel (location->start());
3857         double const x2 = _editor->frame_to_pixel (location->end());
3858
3859         _drag_rect->property_x1() = x1;
3860         _drag_rect->property_x2() = x2;
3861 }
3862
3863 MouseZoomDrag::MouseZoomDrag (Editor* e, ArdourCanvas::Item* i)
3864         : Drag (e, i)
3865         , _zoom_out (false)
3866 {
3867         DEBUG_TRACE (DEBUG::Drags, "New MouseZoomDrag\n");
3868 }
3869
3870 void
3871 MouseZoomDrag::start_grab (GdkEvent* event, Gdk::Cursor *)
3872 {
3873         if (Keyboard::the_keyboard().key_is_down (GDK_Control_L)) {
3874                 Drag::start_grab (event, _editor->cursors()->zoom_out);
3875                 _zoom_out = true;
3876         } else {
3877                 Drag::start_grab (event, _editor->cursors()->zoom_in);
3878                 _zoom_out = false;
3879         }
3880
3881         show_verbose_cursor_time (adjusted_current_frame (event));
3882 }
3883
3884 void
3885 MouseZoomDrag::motion (GdkEvent* event, bool first_move)
3886 {
3887         framepos_t start;
3888         framepos_t end;
3889
3890         framepos_t const pf = adjusted_current_frame (event);
3891
3892         framepos_t grab = grab_frame ();
3893         _editor->snap_to_with_modifier (grab, event);
3894
3895         /* base start and end on initial click position */
3896         if (pf < grab) {
3897                 start = pf;
3898                 end = grab;
3899         } else {
3900                 end = pf;
3901                 start = grab;
3902         }
3903
3904         if (start != end) {
3905
3906                 if (first_move) {
3907                         _editor->zoom_rect->show();
3908                         _editor->zoom_rect->raise_to_top();
3909                 }
3910
3911                 _editor->reposition_zoom_rect(start, end);
3912
3913                 show_verbose_cursor_time (pf);
3914         }
3915 }
3916
3917 void
3918 MouseZoomDrag::finished (GdkEvent* event, bool movement_occurred)
3919 {
3920         if (movement_occurred) {
3921                 motion (event, false);
3922
3923                 if (grab_frame() < last_pointer_frame()) {
3924                         _editor->temporal_zoom_by_frame (grab_frame(), last_pointer_frame());
3925                 } else {
3926                         _editor->temporal_zoom_by_frame (last_pointer_frame(), grab_frame());
3927                 }
3928         } else {
3929                 if (Keyboard::the_keyboard().key_is_down (GDK_Shift_L)) {
3930                         _editor->tav_zoom_step (_zoom_out);
3931                 } else {
3932                         _editor->temporal_zoom_to_frame (_zoom_out, grab_frame());
3933                 }
3934         }
3935
3936         _editor->zoom_rect->hide();
3937 }
3938
3939 void
3940 MouseZoomDrag::aborted (bool)
3941 {
3942         _editor->zoom_rect->hide ();
3943 }
3944
3945 NoteDrag::NoteDrag (Editor* e, ArdourCanvas::Item* i)
3946         : Drag (e, i)
3947         , _cumulative_dx (0)
3948         , _cumulative_dy (0)
3949 {
3950         DEBUG_TRACE (DEBUG::Drags, "New NoteDrag\n");
3951
3952         _primary = dynamic_cast<CanvasNoteEvent*> (_item);
3953         _region = &_primary->region_view ();
3954         _note_height = _region->midi_stream_view()->note_height ();
3955 }
3956
3957 void
3958 NoteDrag::start_grab (GdkEvent* event, Gdk::Cursor *)
3959 {
3960         Drag::start_grab (event);
3961
3962         if (!(_was_selected = _primary->selected())) {
3963
3964                 /* tertiary-click means extend selection - we'll do that on button release,
3965                    so don't add it here, because otherwise we make it hard to figure
3966                    out the "extend-to" range.
3967                 */
3968
3969                 bool extend = Keyboard::modifier_state_equals (event->button.state, Keyboard::TertiaryModifier);
3970
3971                 if (!extend) {
3972                         bool add = Keyboard::modifier_state_equals (event->button.state, Keyboard::PrimaryModifier);
3973
3974                         if (add) {
3975                                 _region->note_selected (_primary, true);
3976                         } else {
3977                                 _region->unique_select (_primary);
3978                         }
3979                 }
3980         }
3981 }
3982
3983 /** @return Current total drag x change in frames */
3984 frameoffset_t
3985 NoteDrag::total_dx () const
3986 {
3987         /* dx in frames */
3988         frameoffset_t const dx = _editor->unit_to_frame (_drags->current_pointer_x() - grab_x());
3989
3990         /* primary note time */
3991         frameoffset_t const n = _region->source_beats_to_absolute_frames (_primary->note()->time ());
3992
3993         /* new time of the primary note in session frames */
3994         frameoffset_t st = n + dx;
3995
3996         framepos_t const rp = _region->region()->position ();
3997
3998         /* prevent the note being dragged earlier than the region's position */
3999         st = max (st, rp);
4000
4001         /* snap and return corresponding delta */
4002         return _region->snap_frame_to_frame (st - rp) + rp - n;
4003 }
4004
4005 /** @return Current total drag y change in note number */
4006 int8_t
4007 NoteDrag::total_dy () const
4008 {
4009         MidiStreamView* msv = _region->midi_stream_view ();
4010         double const y = _region->midi_view()->y_position ();
4011         /* new current note */
4012         uint8_t n = msv->y_to_note (_drags->current_pointer_y () - y);
4013         /* clamp */
4014         n = max (msv->lowest_note(), n);
4015         n = min (msv->highest_note(), n);
4016         /* and work out delta */
4017         return n - msv->y_to_note (grab_y() - y);
4018 }
4019
4020 void
4021 NoteDrag::motion (GdkEvent *, bool)
4022 {
4023         /* Total change in x and y since the start of the drag */
4024         frameoffset_t const dx = total_dx ();
4025         int8_t const dy = total_dy ();
4026
4027         /* Now work out what we have to do to the note canvas items to set this new drag delta */
4028         double const tdx = _editor->frame_to_unit (dx) - _cumulative_dx;
4029         double const tdy = -dy * _note_height - _cumulative_dy;
4030
4031         if (tdx || tdy) {
4032                 _cumulative_dx += tdx;
4033                 _cumulative_dy += tdy;
4034
4035                 int8_t note_delta = total_dy();
4036
4037                 _region->move_selection (tdx, tdy, note_delta);
4038
4039                 /* the new note value may be the same as the old one, but we
4040                  * don't know what that means because the selection may have
4041                  * involved more than one note and we might be doing something
4042                  * odd with them. so show the note value anyway, always.
4043                  */
4044
4045                 char buf[12];
4046                 uint8_t new_note = min (max (_primary->note()->note() + note_delta, 0), 127);
4047                 
4048                 snprintf (buf, sizeof (buf), "%s (%d)", Evoral::midi_note_name (new_note).c_str(),
4049                           (int) floor (new_note));
4050
4051                 show_verbose_cursor_text (buf);
4052         }
4053 }
4054
4055 void
4056 NoteDrag::finished (GdkEvent* ev, bool moved)
4057 {
4058         if (!moved) {
4059                 /* no motion - select note */
4060                 
4061                 if (_editor->current_mouse_mode() == Editing::MouseObject ||
4062                     _editor->current_mouse_mode() == Editing::MouseDraw) {
4063                         
4064                         if (_was_selected) {
4065                                 bool add = Keyboard::modifier_state_equals (ev->button.state, Keyboard::PrimaryModifier);
4066                                 if (add) {
4067                                         _region->note_deselected (_primary);
4068                                 }
4069                         } else {
4070                                 bool extend = Keyboard::modifier_state_equals (ev->button.state, Keyboard::TertiaryModifier);
4071                                 bool add = Keyboard::modifier_state_equals (ev->button.state, Keyboard::PrimaryModifier);
4072
4073                                 if (!extend && !add && _region->selection_size() > 1) {
4074                                         _region->unique_select (_primary);
4075                                 } else if (extend) {
4076                                         _region->note_selected (_primary, true, true);
4077                                 } else {
4078                                         /* it was added during button press */
4079                                 }
4080                         }
4081                 }
4082         } else {
4083                 _region->note_dropped (_primary, total_dx(), total_dy());
4084         }
4085 }
4086
4087 void
4088 NoteDrag::aborted (bool)
4089 {
4090         /* XXX: TODO */
4091 }
4092
4093 /** Make an AutomationRangeDrag for lines in an AutomationTimeAxisView */
4094 AutomationRangeDrag::AutomationRangeDrag (Editor* editor, AutomationTimeAxisView* atv, list<AudioRange> const & r)
4095         : Drag (editor, atv->base_item ())
4096         , _ranges (r)
4097         , _nothing_to_drag (false)
4098 {
4099         DEBUG_TRACE (DEBUG::Drags, "New AutomationRangeDrag\n");
4100
4101         setup (atv->lines ());
4102 }
4103
4104 /** Make an AutomationRangeDrag for region gain lines */
4105 AutomationRangeDrag::AutomationRangeDrag (Editor* editor, AudioRegionView* rv, list<AudioRange> const & r)
4106         : Drag (editor, rv->get_canvas_group ())
4107         , _ranges (r)
4108         , _nothing_to_drag (false)
4109 {
4110         DEBUG_TRACE (DEBUG::Drags, "New AutomationRangeDrag\n");
4111
4112         list<boost::shared_ptr<AutomationLine> > lines;
4113         lines.push_back (rv->get_gain_line ());
4114         setup (lines);
4115 }
4116
4117 /** @param lines AutomationLines to drag.
4118  *  @param offset Offset from the session start to the points in the AutomationLines.
4119  */
4120 void
4121 AutomationRangeDrag::setup (list<boost::shared_ptr<AutomationLine> > const & lines)
4122 {
4123         /* find the lines that overlap the ranges being dragged */
4124         list<boost::shared_ptr<AutomationLine> >::const_iterator i = lines.begin ();
4125         while (i != lines.end ()) {
4126                 list<boost::shared_ptr<AutomationLine> >::const_iterator j = i;
4127                 ++j;
4128
4129                 pair<framepos_t, framepos_t> r = (*i)->get_point_x_range ();
4130
4131                 /* check this range against all the AudioRanges that we are using */
4132                 list<AudioRange>::const_iterator k = _ranges.begin ();
4133                 while (k != _ranges.end()) {
4134                         if (k->coverage (r.first, r.second) != Evoral::OverlapNone) {
4135                                 break;
4136                         }
4137                         ++k;
4138                 }
4139
4140                 /* add it to our list if it overlaps at all */
4141                 if (k != _ranges.end()) {
4142                         Line n;
4143                         n.line = *i;
4144                         n.state = 0;
4145                         n.range = r;
4146                         _lines.push_back (n);
4147                 }
4148
4149                 i = j;
4150         }
4151
4152         /* Now ::lines contains the AutomationLines that somehow overlap our drag */
4153 }
4154
4155 void
4156 AutomationRangeDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
4157 {
4158         Drag::start_grab (event, cursor);
4159
4160         /* Get line states before we start changing things */
4161         for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4162                 i->state = &i->line->get_state ();
4163         }
4164
4165         if (_ranges.empty()) {
4166
4167                 /* No selected time ranges: drag all points */
4168                 for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4169                         uint32_t const N = i->line->npoints ();
4170                         for (uint32_t j = 0; j < N; ++j) {
4171                                 i->points.push_back (i->line->nth (j));
4172                         }
4173                 }
4174
4175         } else {
4176
4177                 for (list<AudioRange>::const_iterator i = _ranges.begin(); i != _ranges.end(); ++i) {
4178
4179                         framecnt_t const half = (i->start + i->end) / 2;
4180
4181                         /* find the line that this audio range starts in */
4182                         list<Line>::iterator j = _lines.begin();
4183                         while (j != _lines.end() && (j->range.first > i->start || j->range.second < i->start)) {
4184                                 ++j;
4185                         }
4186
4187                         if (j != _lines.end()) {
4188                                 boost::shared_ptr<AutomationList> the_list = j->line->the_list ();
4189
4190                                 /* j is the line that this audio range starts in; fade into it;
4191                                    64 samples length plucked out of thin air.
4192                                 */
4193
4194                                 framepos_t a = i->start + 64;
4195                                 if (a > half) {
4196                                         a = half;
4197                                 }
4198
4199                                 double const p = j->line->time_converter().from (i->start - j->line->time_converter().origin_b ());
4200                                 double const q = j->line->time_converter().from (a - j->line->time_converter().origin_b ());
4201
4202                                 the_list->add (p, the_list->eval (p));
4203                                 the_list->add (q, the_list->eval (q));
4204                         }
4205
4206                         /* same thing for the end */
4207
4208                         j = _lines.begin();
4209                         while (j != _lines.end() && (j->range.first > i->end || j->range.second < i->end)) {
4210                                 ++j;
4211                         }
4212
4213                         if (j != _lines.end()) {
4214                                 boost::shared_ptr<AutomationList> the_list = j->line->the_list ();
4215
4216                                 /* j is the line that this audio range starts in; fade out of it;
4217                                    64 samples length plucked out of thin air.
4218                                 */
4219
4220                                 framepos_t b = i->end - 64;
4221                                 if (b < half) {
4222                                         b = half;
4223                                 }
4224
4225                                 double const p = j->line->time_converter().from (b - j->line->time_converter().origin_b ());
4226                                 double const q = j->line->time_converter().from (i->end - j->line->time_converter().origin_b ());
4227
4228                                 the_list->add (p, the_list->eval (p));
4229                                 the_list->add (q, the_list->eval (q));
4230                         }
4231                 }
4232
4233                 _nothing_to_drag = true;
4234
4235                 /* Find all the points that should be dragged and put them in the relevant
4236                    points lists in the Line structs.
4237                 */
4238
4239                 for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4240
4241                         uint32_t const N = i->line->npoints ();
4242                         for (uint32_t j = 0; j < N; ++j) {
4243
4244                                 /* here's a control point on this line */
4245                                 ControlPoint* p = i->line->nth (j);
4246                                 double const w = i->line->time_converter().to ((*p->model())->when) + i->line->time_converter().origin_b ();
4247
4248                                 /* see if it's inside a range */
4249                                 list<AudioRange>::const_iterator k = _ranges.begin ();
4250                                 while (k != _ranges.end() && (k->start >= w || k->end <= w)) {
4251                                         ++k;
4252                                 }
4253
4254                                 if (k != _ranges.end()) {
4255                                         /* dragging this point */
4256                                         _nothing_to_drag = false;
4257                                         i->points.push_back (p);
4258                                 }
4259                         }
4260                 }
4261         }
4262
4263         if (_nothing_to_drag) {
4264                 return;
4265         }
4266
4267         for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4268                 i->line->start_drag_multiple (i->points, 1 - (_drags->current_pointer_y() / i->line->height ()), i->state);
4269         }
4270 }
4271
4272 void
4273 AutomationRangeDrag::motion (GdkEvent*, bool /*first_move*/)
4274 {
4275         if (_nothing_to_drag) {
4276                 return;
4277         }
4278
4279         for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4280                 float const f = 1 - (_drags->current_pointer_y() / i->line->height());
4281
4282                 /* we are ignoring x position for this drag, so we can just pass in anything */
4283                 i->line->drag_motion (0, f, true, false);
4284         }
4285 }
4286
4287 void
4288 AutomationRangeDrag::finished (GdkEvent* event, bool)
4289 {
4290         if (_nothing_to_drag) {
4291                 return;
4292         }
4293
4294         motion (event, false);
4295         for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4296                 i->line->end_drag ();
4297         }
4298
4299         _editor->session()->commit_reversible_command ();
4300 }
4301
4302 void
4303 AutomationRangeDrag::aborted (bool)
4304 {
4305         for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
4306                 i->line->reset ();
4307         }
4308 }
4309
4310 DraggingView::DraggingView (RegionView* v, RegionDrag* parent)
4311         : view (v)
4312 {
4313         time_axis_view = parent->find_time_axis_view (&v->get_time_axis_view ());
4314         layer = v->region()->layer ();
4315         initial_y = v->get_canvas_group()->property_y ();
4316         initial_playlist = v->region()->playlist ();
4317         initial_position = v->region()->position ();
4318         initial_end = v->region()->position () + v->region()->length ();
4319 }
4320
4321 PatchChangeDrag::PatchChangeDrag (Editor* e, CanvasPatchChange* i, MidiRegionView* r)
4322         : Drag (e, i)
4323         , _region_view (r)
4324         , _patch_change (i)
4325         , _cumulative_dx (0)
4326 {
4327         DEBUG_TRACE (DEBUG::Drags, string_compose ("New PatchChangeDrag, patch @ %1, grab @ %2\n",
4328                                                    _region_view->source_beats_to_absolute_frames (_patch_change->patch()->time()),
4329                                                    grab_frame()));
4330 }
4331
4332 void
4333 PatchChangeDrag::motion (GdkEvent* ev, bool)
4334 {
4335         framepos_t f = adjusted_current_frame (ev);
4336         boost::shared_ptr<Region> r = _region_view->region ();
4337         f = max (f, r->position ());
4338         f = min (f, r->last_frame ());
4339
4340         framecnt_t const dxf = f - grab_frame(); // permitted dx in frames
4341         double const dxu = _editor->frame_to_unit (dxf); // permitted fx in units
4342         _patch_change->move (dxu - _cumulative_dx, 0);
4343         _cumulative_dx = dxu;
4344 }
4345
4346 void
4347 PatchChangeDrag::finished (GdkEvent* ev, bool movement_occurred)
4348 {
4349         if (!movement_occurred) {
4350                 return;
4351         }
4352
4353         boost::shared_ptr<Region> r (_region_view->region ());
4354         framepos_t f = adjusted_current_frame (ev);
4355         f = max (f, r->position ());
4356         f = min (f, r->last_frame ());
4357
4358         _region_view->move_patch_change (
4359                 *_patch_change,
4360                 _region_view->region_frames_to_region_beats (f - (r->position() - r->start()))
4361                 );
4362 }
4363
4364 void
4365 PatchChangeDrag::aborted (bool)
4366 {
4367         _patch_change->move (-_cumulative_dx, 0);
4368 }
4369
4370 void
4371 PatchChangeDrag::setup_pointer_frame_offset ()
4372 {
4373         boost::shared_ptr<Region> region = _region_view->region ();
4374         _pointer_frame_offset = raw_grab_frame() - _region_view->source_beats_to_absolute_frames (_patch_change->patch()->time());
4375 }
4376
4377 MidiRubberbandSelectDrag::MidiRubberbandSelectDrag (Editor* e, MidiRegionView* rv)
4378         : RubberbandSelectDrag (e, rv->get_canvas_frame ())
4379         , _region_view (rv)
4380 {
4381
4382 }
4383
4384 void
4385 MidiRubberbandSelectDrag::select_things (int button_state, framepos_t x1, framepos_t x2, double y1, double y2, bool /*drag_in_progress*/)
4386 {
4387         framepos_t const p = _region_view->region()->position ();
4388         double const y = _region_view->midi_view()->y_position ();
4389
4390         x1 = max ((framepos_t) 0, x1 - p);
4391         x2 = max ((framepos_t) 0, x2 - p);
4392         y1 = max (0.0, y1 - y);
4393         y2 = max (0.0, y2 - y);
4394         
4395         _region_view->update_drag_selection (
4396                 _editor->frame_to_pixel (x1),
4397                 _editor->frame_to_pixel (x2),
4398                 y1,
4399                 y2,
4400                 Keyboard::modifier_state_contains (button_state, Keyboard::TertiaryModifier)
4401                 );
4402 }
4403
4404 void
4405 MidiRubberbandSelectDrag::deselect_things ()
4406 {
4407         /* XXX */
4408 }
4409
4410 MidiVerticalSelectDrag::MidiVerticalSelectDrag (Editor* e, MidiRegionView* rv)
4411         : RubberbandSelectDrag (e, rv->get_canvas_frame ())
4412         , _region_view (rv)
4413 {
4414         _vertical_only = true;
4415 }
4416
4417 void
4418 MidiVerticalSelectDrag::select_things (int button_state, framepos_t /*x1*/, framepos_t /*x2*/, double y1, double y2, bool /*drag_in_progress*/)
4419 {
4420         double const y = _region_view->midi_view()->y_position ();
4421
4422         y1 = max (0.0, y1 - y);
4423         y2 = max (0.0, y2 - y);
4424         
4425         _region_view->update_vertical_drag_selection (
4426                 y1,
4427                 y2,
4428                 Keyboard::modifier_state_contains (button_state, Keyboard::TertiaryModifier)
4429                 );
4430 }
4431
4432 void
4433 MidiVerticalSelectDrag::deselect_things ()
4434 {
4435         /* XXX */
4436 }
4437
4438 EditorRubberbandSelectDrag::EditorRubberbandSelectDrag (Editor* e, ArdourCanvas::Item* i)
4439         : RubberbandSelectDrag (e, i)
4440 {
4441
4442 }
4443
4444 void
4445 EditorRubberbandSelectDrag::select_things (int button_state, framepos_t x1, framepos_t x2, double y1, double y2, bool drag_in_progress)
4446 {
4447         if (drag_in_progress) {
4448                 /* We just want to select things at the end of the drag, not during it */
4449                 return;
4450         }
4451         
4452         Selection::Operation op = ArdourKeyboard::selection_type (button_state);
4453         
4454         _editor->begin_reversible_command (_("rubberband selection"));
4455         _editor->select_all_within (x1, x2 - 1, y1, y2, _editor->track_views, op, false);
4456         _editor->commit_reversible_command ();
4457 }
4458
4459 void
4460 EditorRubberbandSelectDrag::deselect_things ()
4461 {
4462         if (!getenv("ARDOUR_SAE")) {
4463                 _editor->selection->clear_tracks();
4464         }
4465         _editor->selection->clear_regions();
4466         _editor->selection->clear_points ();
4467         _editor->selection->clear_lines ();
4468 }
4469
4470 NoteCreateDrag::NoteCreateDrag (Editor* e, ArdourCanvas::Item* i, MidiRegionView* rv)
4471         : Drag (e, i)
4472         , _region_view (rv)
4473         , _drag_rect (0)
4474 {
4475         
4476 }
4477
4478 NoteCreateDrag::~NoteCreateDrag ()
4479 {
4480         delete _drag_rect;
4481 }
4482
4483 framecnt_t
4484 NoteCreateDrag::grid_frames (framepos_t t) const
4485 {
4486         bool success;
4487         Evoral::MusicalTime grid_beats = _editor->get_grid_type_as_beats (success, t);
4488         if (!success) {
4489                 grid_beats = 1;
4490         }
4491
4492         return _region_view->region_beats_to_region_frames (grid_beats);
4493 }
4494
4495 void
4496 NoteCreateDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
4497 {
4498         Drag::start_grab (event, cursor);
4499                                                  
4500         _drag_rect = new ArdourCanvas::SimpleRect (*_region_view->get_canvas_group ());
4501
4502         framepos_t pf = _drags->current_pointer_frame ();
4503         framecnt_t const g = grid_frames (pf);
4504
4505         /* Hack so that we always snap to the note that we are over, instead of snapping
4506            to the next one if we're more than halfway through the one we're over.
4507         */
4508         if (_editor->snap_mode() == SnapNormal && pf > g / 2) {
4509                 pf -= g / 2;
4510         }
4511
4512         _note[0] = adjusted_frame (pf, event) - _region_view->region()->position ();
4513
4514         MidiStreamView* sv = _region_view->midi_stream_view ();
4515         double const x = _editor->frame_to_pixel (_note[0]);
4516         double const y = sv->note_to_y (sv->y_to_note (y_to_region (event->button.y)));
4517
4518         _drag_rect->property_x1() = x;
4519         _drag_rect->property_y1() = y;
4520         _drag_rect->property_x2() = x;
4521         _drag_rect->property_y2() = y + floor (_region_view->midi_stream_view()->note_height ());
4522
4523         _drag_rect->property_outline_what() = 0xff;
4524         _drag_rect->property_outline_color_rgba() = 0xffffff99;
4525         _drag_rect->property_fill_color_rgba()    = 0xffffff66;
4526 }
4527
4528 void
4529 NoteCreateDrag::motion (GdkEvent* event, bool)
4530 {
4531         _note[1] = max ((framepos_t)0, adjusted_current_frame (event) - _region_view->region()->position ());
4532         double const x = _editor->frame_to_pixel (_note[1]);
4533         if (_note[1] > _note[0]) {
4534                 _drag_rect->property_x2() = x;
4535         } else {
4536                 _drag_rect->property_x1() = x;
4537         }
4538 }
4539
4540 void
4541 NoteCreateDrag::finished (GdkEvent*, bool had_movement)
4542 {
4543         if (!had_movement) {
4544                 return;
4545         }
4546         
4547         framepos_t const start = min (_note[0], _note[1]);
4548         framecnt_t length = abs (_note[0] - _note[1]);
4549
4550         framecnt_t const g = grid_frames (start);
4551         double const one_tick = 1 / Timecode::BBT_Time::ticks_per_beat;
4552         
4553         if (_editor->snap_mode() == SnapNormal && length < g) {
4554                 length = g - one_tick;
4555         }
4556
4557         double const length_beats = max (one_tick, _region_view->region_frames_to_region_beats (length));
4558
4559         _region_view->create_note_at (start, _drag_rect->property_y1(), length_beats, false);
4560 }
4561
4562 double
4563 NoteCreateDrag::y_to_region (double y) const
4564 {
4565         double x = 0;
4566         _region_view->get_canvas_group()->w2i (x, y);
4567         return y;
4568 }
4569
4570 void
4571 NoteCreateDrag::aborted (bool)
4572 {
4573         
4574 }
4575
4576 CrossfadeEdgeDrag::CrossfadeEdgeDrag (Editor* e, AudioRegionView* rv, ArdourCanvas::Item* i, bool start_yn)
4577         : Drag (e, i)
4578         , arv (rv)
4579         , start (start_yn)
4580 {
4581 }
4582
4583 void
4584 CrossfadeEdgeDrag::start_grab (GdkEvent* event, Gdk::Cursor *cursor)
4585 {
4586         Drag::start_grab (event, cursor);
4587 }
4588
4589 void
4590 CrossfadeEdgeDrag::motion (GdkEvent*, bool)
4591 {
4592         double distance;
4593         double new_length;
4594         framecnt_t len;
4595
4596         boost::shared_ptr<AudioRegion> ar (arv->audio_region());
4597
4598         if (start) {
4599                 distance = _drags->current_pointer_x() - grab_x();
4600                 len = ar->fade_in()->back()->when;
4601         } else {
4602                 distance = grab_x() - _drags->current_pointer_x();
4603                 len = ar->fade_out()->back()->when;
4604         }
4605
4606         /* how long should it be ? */
4607
4608         new_length = len + _editor->unit_to_frame (distance);
4609
4610         /* now check with the region that this is legal */
4611
4612         new_length = ar->verify_xfade_bounds (new_length, start);
4613
4614         if (start) {
4615                 arv->redraw_start_xfade_to (ar, new_length);
4616         } else {
4617                 arv->redraw_end_xfade_to (ar, new_length);
4618         }
4619 }
4620
4621 void
4622 CrossfadeEdgeDrag::finished (GdkEvent*, bool)
4623 {
4624         double distance;
4625         double new_length;
4626         framecnt_t len;
4627
4628         boost::shared_ptr<AudioRegion> ar (arv->audio_region());
4629
4630         if (start) {
4631                 distance = _drags->current_pointer_x() - grab_x();
4632                 len = ar->fade_in()->back()->when;
4633         } else {
4634                 distance = grab_x() - _drags->current_pointer_x();
4635                 len = ar->fade_out()->back()->when;
4636         }
4637
4638         new_length = ar->verify_xfade_bounds (len + _editor->unit_to_frame (distance), start);
4639         
4640         _editor->begin_reversible_command ("xfade trim");
4641         ar->playlist()->clear_owned_changes (); 
4642
4643         if (start) {
4644                 ar->set_fade_in_length (new_length);
4645         } else {
4646                 ar->set_fade_out_length (new_length);
4647         }
4648
4649         /* Adjusting the xfade may affect other regions in the playlist, so we need
4650            to get undo Commands from the whole playlist rather than just the
4651            region.
4652         */
4653
4654         vector<Command*> cmds;
4655         ar->playlist()->rdiff (cmds);
4656         _editor->session()->add_commands (cmds);
4657         _editor->commit_reversible_command ();
4658
4659 }
4660
4661 void
4662 CrossfadeEdgeDrag::aborted (bool)
4663 {
4664         if (start) {
4665                 arv->redraw_start_xfade ();
4666         } else {
4667                 arv->redraw_end_xfade ();
4668         }
4669 }
4670