Snap to note start rather than mouse pointer when dragging MIDI notes. Fixes #3187.
[ardour.git] / gtk2_ardour / midi_region_view.cc
1 /*
2     Copyright (C) 2001-2007 Paul Davis
3     Author: Dave Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <cmath>
21 #include <cassert>
22 #include <algorithm>
23 #include <ostream>
24
25 #include <gtkmm.h>
26
27 #include <gtkmm2ext/gtk_ui.h>
28
29 #include <sigc++/signal.h>
30
31 #include "pbd/memento_command.h"
32 #include "pbd/stateful_diff_command.h"
33
34 #include "ardour/playlist.h"
35 #include "ardour/tempo.h"
36 #include "ardour/midi_region.h"
37 #include "ardour/midi_source.h"
38 #include "ardour/midi_model.h"
39 #include "ardour/midi_patch_manager.h"
40 #include "ardour/session.h"
41
42 #include "evoral/Parameter.hpp"
43 #include "evoral/MIDIParameters.hpp"
44 #include "evoral/Control.hpp"
45 #include "evoral/midi_util.h"
46
47 #include "automation_region_view.h"
48 #include "automation_time_axis.h"
49 #include "canvas-hit.h"
50 #include "canvas-note.h"
51 #include "canvas-program-change.h"
52 #include "ghostregion.h"
53 #include "gui_thread.h"
54 #include "keyboard.h"
55 #include "midi_cut_buffer.h"
56 #include "midi_list_editor.h"
57 #include "midi_region_view.h"
58 #include "midi_streamview.h"
59 #include "midi_time_axis.h"
60 #include "midi_time_axis.h"
61 #include "midi_util.h"
62 #include "public_editor.h"
63 #include "rgb_macros.h"
64 #include "selection.h"
65 #include "simpleline.h"
66 #include "streamview.h"
67 #include "utils.h"
68
69 #include "i18n.h"
70
71 using namespace ARDOUR;
72 using namespace PBD;
73 using namespace Editing;
74 using namespace ArdourCanvas;
75 using Gtkmm2ext::Keyboard;
76
77 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv,
78                 boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color const & basic_color)
79         : RegionView (parent, tv, r, spu, basic_color)
80         , _force_channel(-1)
81         , _last_channel_selection(0xFFFF)
82         , _current_range_min(0)
83         , _current_range_max(0)
84         , _model_name(string())
85         , _custom_device_mode(string())
86         , _active_notes(0)
87         , _note_group(new ArdourCanvas::Group(*parent))
88         , _diff_command(0)
89         , _ghost_note(0)
90         , _drag_rect (0)
91         , _step_edit_cursor (0)
92         , _step_edit_cursor_width (1.0)
93         , _step_edit_cursor_position (0.0)
94         , _mouse_state(None)
95         , _pressed_button(0)
96         , _sort_needed (true)
97         , _optimization_iterator (_events.end())
98         , _list_editor (0)
99         , no_sound_notes (false)
100 {
101         _note_group->raise_to_top();
102         PublicEditor::DropDownKeys.connect (sigc::mem_fun (*this, &MidiRegionView::drop_down_keys));
103 }
104
105 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv,
106                 boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color& basic_color,
107                 TimeAxisViewItem::Visibility visibility)
108         : RegionView (parent, tv, r, spu, basic_color, false, visibility)
109         , _force_channel(-1)
110         , _last_channel_selection(0xFFFF)
111         , _model_name(string())
112         , _custom_device_mode(string())
113         , _active_notes(0)
114         , _note_group(new ArdourCanvas::Group(*parent))
115         , _diff_command(0)
116         , _ghost_note(0)
117         , _drag_rect (0)
118         , _mouse_state(None)
119         , _pressed_button(0)
120         , _sort_needed (true)
121         , _optimization_iterator (_events.end())
122         , _list_editor (0)
123         , no_sound_notes (false)
124 {
125         _note_group->raise_to_top();
126         PublicEditor::DropDownKeys.connect (sigc::mem_fun (*this, &MidiRegionView::drop_down_keys));
127 }
128
129 MidiRegionView::MidiRegionView (const MidiRegionView& other)
130         : sigc::trackable(other)
131         , RegionView (other)
132         , _force_channel(-1)
133         , _last_channel_selection(0xFFFF)
134         , _model_name(string())
135         , _custom_device_mode(string())
136         , _active_notes(0)
137         , _note_group(new ArdourCanvas::Group(*get_canvas_group()))
138         , _diff_command(0)
139         , _ghost_note(0)
140         , _drag_rect (0)
141         , _mouse_state(None)
142         , _pressed_button(0)
143         , _sort_needed (true)
144         , _optimization_iterator (_events.end())
145         , _list_editor (0)
146         , no_sound_notes (false)
147 {
148         Gdk::Color c;
149         int r,g,b,a;
150
151         UINT_TO_RGBA (other.fill_color, &r, &g, &b, &a);
152         c.set_rgb_p (r/255.0, g/255.0, b/255.0);
153
154         init (c, false);
155 }
156
157 MidiRegionView::MidiRegionView (const MidiRegionView& other, boost::shared_ptr<MidiRegion> region)
158         : RegionView (other, boost::shared_ptr<Region> (region))
159         , _force_channel(-1)
160         , _last_channel_selection(0xFFFF)
161         , _model_name(string())
162         , _custom_device_mode(string())
163         , _active_notes(0)
164         , _note_group(new ArdourCanvas::Group(*get_canvas_group()))
165         , _diff_command(0)
166         , _ghost_note(0)
167         , _drag_rect (0)
168         , _mouse_state(None)
169         , _pressed_button(0)
170         , _sort_needed (true)
171         , _optimization_iterator (_events.end())
172         , _list_editor (0)
173         , no_sound_notes (false)
174 {
175         Gdk::Color c;
176         int r,g,b,a;
177
178         UINT_TO_RGBA (other.fill_color, &r, &g, &b, &a);
179         c.set_rgb_p (r/255.0, g/255.0, b/255.0);
180
181         init (c, true);
182 }
183
184 void
185 MidiRegionView::init (Gdk::Color const & basic_color, bool wfd)
186 {
187         PublicEditor::DropDownKeys.connect (sigc::mem_fun (*this, &MidiRegionView::drop_down_keys));
188
189         CanvasNoteEvent::CanvasNoteEventDeleted.connect (note_delete_connection, MISSING_INVALIDATOR, 
190                                                          ui_bind (&MidiRegionView::maybe_remove_deleted_note_from_selection, this, _1),
191                                                          gui_context());
192
193         if (wfd) {
194                 midi_region()->midi_source(0)->load_model();
195         }
196
197         _model = midi_region()->midi_source(0)->model();
198         _enable_display = false;
199
200         RegionView::init (basic_color, false);
201
202         compute_colors (basic_color);
203
204         set_height (trackview.current_height());
205
206         region_muted ();
207         region_sync_changed ();
208         region_resized (ARDOUR::bounds_change);
209         region_locked ();
210
211         reset_width_dependent_items (_pixel_width);
212
213         set_colors ();
214
215         _enable_display = true;
216         if (_model) {
217                 if (wfd) {
218                         display_model (_model);
219                 }
220         }
221
222         group->raise_to_top();
223         group->signal_event().connect (sigc::mem_fun (this, &MidiRegionView::canvas_event), false);
224
225         midi_view()->signal_channel_mode_changed().connect(
226                         sigc::mem_fun(this, &MidiRegionView::midi_channel_mode_changed));
227
228         midi_view()->signal_midi_patch_settings_changed().connect(
229                         sigc::mem_fun(this, &MidiRegionView::midi_patch_settings_changed));
230
231         trackview.editor().SnapChanged.connect (snap_changed_connection, invalidator (*this), ui_bind (&MidiRegionView::snap_changed, this), gui_context ());
232 }
233
234 bool
235 MidiRegionView::canvas_event(GdkEvent* ev)
236 {
237         if (!trackview.editor().internal_editing()) {
238                 return false;
239         }
240
241         /* XXX: note that until version 2.30, the GnomeCanvas did not propagate scroll events
242            to its items, which means that ev->type == GDK_SCROLL will never be seen
243         */
244
245         switch (ev->type) {
246         case GDK_SCROLL:
247                 return scroll (&ev->scroll);
248
249         case GDK_KEY_PRESS:
250                 return key_press (&ev->key);
251
252         case GDK_KEY_RELEASE:
253                 return key_release (&ev->key);
254
255         case GDK_BUTTON_PRESS:
256                 return button_press (&ev->button);
257
258         case GDK_2BUTTON_PRESS:
259                 return true;
260
261         case GDK_BUTTON_RELEASE:
262                 return button_release (&ev->button);
263                 
264         case GDK_ENTER_NOTIFY:
265                 return enter_notify (&ev->crossing);
266
267         case GDK_LEAVE_NOTIFY:
268                 return leave_notify (&ev->crossing);
269
270         case GDK_MOTION_NOTIFY:
271                 return motion (&ev->motion);
272
273         default: 
274                 break;
275         }
276
277         return false;
278 }
279
280 bool
281 MidiRegionView::enter_notify (GdkEventCrossing* ev)
282 {
283         /* FIXME: do this on switch to note tool, too, if the pointer is already in */
284
285         Keyboard::magic_widget_grab_focus();
286         group->grab_focus();
287         
288         if (trackview.editor().current_mouse_mode() == MouseRange) {
289                 create_ghost_note (ev->x, ev->y);
290         }
291
292         return false;
293 }
294
295 bool
296 MidiRegionView::leave_notify (GdkEventCrossing* ev)
297 {
298         trackview.editor().hide_verbose_canvas_cursor ();
299         delete _ghost_note;
300         _ghost_note = 0;
301         return false;
302 }
303
304 bool
305 MidiRegionView::button_press (GdkEventButton* ev)
306 {
307         _last_x = ev->x;
308         _last_y = ev->y;
309         group->w2i (_last_x, _last_y);
310         
311         if (_mouse_state != SelectTouchDragging && ev->button == 1) {
312                 _pressed_button = ev->button;
313                 _mouse_state = Pressed;
314                 return true;
315         }
316         
317         _pressed_button = ev->button;
318
319         return true;
320 }
321
322 bool
323 MidiRegionView::button_release (GdkEventButton* ev)
324 {
325         double event_x, event_y;
326         nframes64_t event_frame = 0;
327
328         event_x = ev->x;
329         event_y = ev->y;
330         group->w2i(event_x, event_y);
331         group->ungrab(ev->time);
332         event_frame = trackview.editor().pixel_to_frame(event_x);
333
334         if (ev->button == 3) {
335                 return false;
336         } else if (_pressed_button != 1) {
337                 return false;
338         }
339
340         switch (_mouse_state) {
341         case Pressed: // Clicked
342                 switch (trackview.editor().current_mouse_mode()) {
343                 case MouseObject:
344                 case MouseTimeFX:
345                         clear_selection();
346                         maybe_select_by_position (ev, event_x, event_y);
347                         break;
348
349                 case MouseRange:
350                 {
351                         bool success;
352                         Evoral::MusicalTime beats = trackview.editor().get_grid_type_as_beats (success, trackview.editor().pixel_to_frame (event_x));
353                         if (!success) {
354                                 beats = 1;
355                         }
356                         create_note_at (event_x, event_y, beats, true);
357                         break;
358                 }
359                 default:
360                         break;
361                 }
362                 _mouse_state = None;
363                 break;
364         case SelectRectDragging: // Select drag done
365                 _mouse_state = None;
366                 delete _drag_rect;
367                 _drag_rect = 0;
368                 break;
369
370         case AddDragging: // Add drag done
371                 _mouse_state = None;
372                 if (_drag_rect->property_x2() > _drag_rect->property_x1() + 2) {
373                         const double x      = _drag_rect->property_x1();
374                         const double length = trackview.editor().pixel_to_frame 
375                                 (_drag_rect->property_x2() - _drag_rect->property_x1());
376
377                         create_note_at (x, _drag_rect->property_y1(), frames_to_beats(length), false);
378                 }
379
380                 delete _drag_rect;
381                 _drag_rect = 0;
382
383                 create_ghost_note (ev->x, ev->y);
384
385         default:
386                 break;
387         }
388
389         return false;
390 }
391
392 bool
393 MidiRegionView::motion (GdkEventMotion* ev)
394 {
395         double event_x, event_y;
396         nframes64_t event_frame = 0;
397
398         event_x = ev->x;
399         event_y = ev->y;
400         group->w2i(event_x, event_y);
401
402         // convert event_x to global frame
403         event_frame = trackview.editor().pixel_to_frame(event_x) + _region->position();
404         trackview.editor().snap_to(event_frame);
405         // convert event_frame back to local coordinates relative to position
406         event_frame -= _region->position();
407
408         if (_ghost_note) {
409                 update_ghost_note (ev->x, ev->y);
410         }
411
412         /* any motion immediately hides velocity text that may have been visible */
413                 
414         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
415                 (*i)->hide_velocity ();
416         }
417
418         switch (_mouse_state) {
419         case Pressed: // Maybe start a drag, if we've moved a bit
420
421                 if (fabs (event_x - _last_x) < 1 && fabs (event_y - _last_y) < 1) {
422                         /* no appreciable movement since the button was pressed */
423                         return false;
424                 }
425
426                 // Select drag start
427                 if (_pressed_button == 1 && trackview.editor().current_mouse_mode() == MouseObject) {
428                         group->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
429                                     Gdk::Cursor(Gdk::FLEUR), ev->time);
430                         _last_x = event_x;
431                         _last_y = event_y;
432                         _drag_start_x = event_x;
433                         _drag_start_y = event_y;
434
435                         _drag_rect = new ArdourCanvas::SimpleRect(*group);
436                         _drag_rect->property_x1() = event_x;
437                         _drag_rect->property_y1() = event_y;
438                         _drag_rect->property_x2() = event_x;
439                         _drag_rect->property_y2() = event_y;
440                         _drag_rect->property_outline_what() = 0xFF;
441                         _drag_rect->property_outline_color_rgba()
442                                 = ARDOUR_UI::config()->canvasvar_MidiSelectRectOutline.get();
443                         _drag_rect->property_fill_color_rgba()
444                                 = ARDOUR_UI::config()->canvasvar_MidiSelectRectFill.get();
445
446                         _mouse_state = SelectRectDragging;
447                         return true;
448
449                         // Add note drag start
450                 } else if (trackview.editor().internal_editing()) {
451
452                         delete _ghost_note;
453                         _ghost_note = 0;
454                                 
455                         group->grab(GDK_POINTER_MOTION_MASK | GDK_BUTTON_RELEASE_MASK,
456                                     Gdk::Cursor(Gdk::FLEUR), ev->time);
457                         _last_x = event_x;
458                         _last_y = event_y;
459                         _drag_start_x = event_x;
460                         _drag_start_y = event_y;
461
462                         _drag_rect = new ArdourCanvas::SimpleRect(*group);
463                         _drag_rect->property_x1() = trackview.editor().frame_to_pixel(event_frame);
464
465                         _drag_rect->property_y1() = midi_stream_view()->note_to_y(
466                                 midi_stream_view()->y_to_note(event_y));
467                         _drag_rect->property_x2() = trackview.editor().frame_to_pixel(event_frame);
468                         _drag_rect->property_y2() = _drag_rect->property_y1()
469                                 + floor(midi_stream_view()->note_height());
470                         _drag_rect->property_outline_what() = 0xFF;
471                         _drag_rect->property_outline_color_rgba() = 0xFFFFFF99;
472                         _drag_rect->property_fill_color_rgba()    = 0xFFFFFF66;
473
474                         _mouse_state = AddDragging;
475                         return true;
476                 }
477
478                 return false;
479
480         case SelectRectDragging: // Select drag motion
481         case AddDragging: // Add note drag motion
482                 if (ev->is_hint) {
483                         int t_x;
484                         int t_y;
485                         GdkModifierType state;
486                         gdk_window_get_pointer(ev->window, &t_x, &t_y, &state);
487                         event_x = t_x;
488                         event_y = t_y;
489                 }
490
491                 if (_mouse_state == AddDragging)
492                         event_x = trackview.editor().frame_to_pixel(event_frame);
493
494                 if (_drag_rect) {
495                         if (event_x > _drag_start_x)
496                                 _drag_rect->property_x2() = event_x;
497                         else
498                                 _drag_rect->property_x1() = event_x;
499                 }
500
501                 if (_drag_rect && _mouse_state == SelectRectDragging) {
502                         if (event_y > _drag_start_y)
503                                 _drag_rect->property_y2() = event_y;
504                         else
505                                 _drag_rect->property_y1() = event_y;
506
507                         update_drag_selection(_drag_start_x, event_x, _drag_start_y, event_y);
508                 }
509
510                 _last_x = event_x;
511                 _last_y = event_y;
512
513         case SelectTouchDragging:
514                 return false;
515
516         default:
517                 break;
518         }
519
520         return false;
521 }
522
523
524 bool
525 MidiRegionView::scroll (GdkEventScroll* ev)
526 {
527         if (_selection.empty()) {
528                 return false;
529         }
530
531         trackview.editor().hide_verbose_canvas_cursor ();
532
533         bool fine = !Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier);
534         
535         if (ev->direction == GDK_SCROLL_UP) {
536                 change_velocities (true, fine, false);
537         } else if (ev->direction == GDK_SCROLL_DOWN) {
538                 change_velocities (false, fine, false);
539         } 
540         return true;
541 }
542
543 bool
544 MidiRegionView::key_press (GdkEventKey* ev)
545
546         /* since GTK bindings are generally activated on press, and since
547            detectable auto-repeat is the name of the game and only sends
548            repeated presses, carry out key actions at key press, not release.
549         */
550         
551         if (ev->keyval == GDK_Alt_L || ev->keyval == GDK_Alt_R){
552                 _mouse_state = SelectTouchDragging;
553                 return true;
554                 
555         } else if (ev->keyval == GDK_Escape) {
556                 clear_selection();
557                 _mouse_state = None;
558                 
559         } else if (ev->keyval == GDK_comma || ev->keyval == GDK_period) {
560                 
561                 bool start = (ev->keyval == GDK_comma);
562                 bool end = (ev->keyval == GDK_period);
563                 bool shorter = Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier);
564                 bool fine = Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
565                 
566                 change_note_lengths (fine, shorter, 0.0, start, end);
567                 
568                 return true;
569                 
570         } else if (ev->keyval == GDK_Delete) {
571                 
572                 delete_selection();
573                 return true;
574                 
575         } else if (ev->keyval == GDK_Tab) {
576                 
577                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
578                         goto_previous_note ();
579                 } else {
580                         goto_next_note ();
581                 }
582                 return true;
583                 
584         } else if (ev->keyval == GDK_Up) {
585                 
586                 bool allow_smush = Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier);
587                 bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
588                 
589                 if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier)) {
590                         change_velocities (true, fine, allow_smush);
591                 } else {
592                         transpose (true, fine, allow_smush);
593                 }
594                 return true;
595                 
596         } else if (ev->keyval == GDK_Down) {
597                 
598                 bool allow_smush = Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier);
599                 bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
600                 
601                 if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier)) {
602                         change_velocities (false, fine, allow_smush);
603                 } else {
604                         transpose (false, fine, allow_smush);
605                 }
606                 return true;
607                 
608         } else if (ev->keyval == GDK_Left) {
609                 
610                 nudge_notes (false);
611                 return true;
612                 
613         } else if (ev->keyval == GDK_Right) {
614                 
615                 nudge_notes (true);
616                 return true;
617                 
618         } else if (ev->keyval == GDK_Control_L) {
619                 return true;
620
621         }
622         
623         return false;
624 }
625
626 bool
627 MidiRegionView::key_release (GdkEventKey* ev)
628 {
629         if (ev->keyval == GDK_Alt_L || ev->keyval == GDK_Alt_R) {
630                 _mouse_state = None;
631                 return true;
632         }
633         return false;
634 }
635
636 void
637 MidiRegionView::show_list_editor ()
638 {
639         if (!_list_editor) {
640                 _list_editor = new MidiListEditor (trackview.session(), midi_region());
641         }
642         _list_editor->present ();
643 }
644
645 /** Add a note to the model, and the view, at a canvas (click) coordinate.
646  * \param x horizontal position in pixels
647  * \param y vertical position in pixels
648  * \param length duration of the note in beats, which will be snapped to the grid
649  * \param sh true to make the note 1 frame shorter than the snapped version of \a length.
650  */
651 void
652 MidiRegionView::create_note_at(double x, double y, double length, bool sh)
653 {
654         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
655         MidiStreamView* const view = mtv->midi_view();
656
657         double note = midi_stream_view()->y_to_note(y);
658
659         assert(note >= 0.0);
660         assert(note <= 127.0);
661
662         // Start of note in frames relative to region start
663         nframes64_t const start_frames = snap_frame_to_frame(trackview.editor().pixel_to_frame(x));
664         assert(start_frames >= 0);
665
666         // Snap length
667         length = frames_to_beats(
668                         snap_frame_to_frame(start_frames + beats_to_frames(length)) - start_frames);
669
670         assert (length != 0);
671
672         if (sh) {
673                 length = frames_to_beats (beats_to_frames (length) - 1);
674         }
675
676         uint16_t chn_mask = mtv->channel_selector().get_selected_channels();
677         int chn_cnt = 0;
678         uint8_t channel = 0;
679
680         /* pick the highest selected channel, unless all channels are selected,
681            which is interpreted to mean channel 1 (zero)
682         */
683
684         for (uint16_t i = 0; i < 16; ++i) {
685                 if (chn_mask & (1<<i)) {
686                         channel = i;
687                         chn_cnt++;
688                 }
689         }
690
691         if (chn_cnt == 16) {
692                 channel = 0;
693         }
694
695         const boost::shared_ptr<NoteType> new_note (new NoteType (channel,
696                                                                   frames_to_beats(start_frames + _region->start()), length,
697                                                                   (uint8_t)note, 0x40));
698
699         if (_model->contains (new_note)) {
700                 return;
701         }
702
703         view->update_note_range(new_note->note());
704
705         MidiModel::DiffCommand* cmd = _model->new_diff_command("add note");
706         cmd->add(new_note);
707         _model->apply_command(*trackview.session(), cmd);
708
709         play_midi_note (new_note);
710 }
711
712 void
713 MidiRegionView::clear_events()
714 {
715         clear_selection();
716
717         MidiGhostRegion* gr;
718         for (std::vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
719                 if ((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
720                         gr->clear_events();
721                 }
722         }
723
724         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
725                 delete *i;
726         }
727
728         _events.clear();
729         _pgm_changes.clear();
730         _sys_exes.clear();
731         _optimization_iterator = _events.end();
732 }
733
734
735 void
736 MidiRegionView::display_model(boost::shared_ptr<MidiModel> model)
737 {
738         _model = model;
739         content_connection.disconnect ();
740         _model->ContentsChanged.connect (content_connection, invalidator (*this), boost::bind (&MidiRegionView::redisplay_model, this), gui_context());
741
742         clear_events ();
743
744         if (_enable_display) {
745                 redisplay_model();
746         }
747 }
748
749 void
750 MidiRegionView::start_diff_command(string name)
751 {
752         if (!_diff_command) {
753                 _diff_command = _model->new_diff_command(name);
754         }
755 }
756
757 void
758 MidiRegionView::diff_add_note(const boost::shared_ptr<NoteType> note, bool selected, bool show_velocity)
759 {
760         if (_diff_command) {
761                 _diff_command->add(note);
762         }
763         if (selected) {
764                 _marked_for_selection.insert(note);
765         }
766         if (show_velocity) {
767                 _marked_for_velocity.insert(note);
768         }
769 }
770
771 void
772 MidiRegionView::diff_remove_note(ArdourCanvas::CanvasNoteEvent* ev)
773 {
774         if (_diff_command && ev->note()) {
775                 _diff_command->remove(ev->note());
776         }
777 }
778
779 void
780 MidiRegionView::diff_add_change (ArdourCanvas::CanvasNoteEvent* ev,
781                                  MidiModel::DiffCommand::Property property,
782                                  uint8_t val)
783 {
784         if (_diff_command) {
785                 _diff_command->change (ev->note(), property, val);
786         }
787 }
788
789 void
790 MidiRegionView::diff_add_change (ArdourCanvas::CanvasNoteEvent* ev,
791                                  MidiModel::DiffCommand::Property property,
792                                  Evoral::MusicalTime val)
793 {
794         if (_diff_command) {
795                 _diff_command->change (ev->note(), property, val);
796         }
797 }
798
799 void
800 MidiRegionView::apply_diff ()
801 {
802         bool add_or_remove;
803
804         if (!_diff_command) {
805                 return;
806         }
807
808         if ((add_or_remove = _diff_command->adds_or_removes())) {
809                 // Mark all selected notes for selection when model reloads
810                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
811                         _marked_for_selection.insert((*i)->note());
812                 }
813         }
814
815         _model->apply_command(*trackview.session(), _diff_command);
816         _diff_command = 0;
817         midi_view()->midi_track()->playlist_modified();
818         
819         if (add_or_remove) {
820                 _marked_for_selection.clear();
821         }
822
823         _marked_for_velocity.clear();
824 }
825
826 void
827 MidiRegionView::apply_diff_as_subcommand()
828 {
829         bool add_or_remove;
830
831         if (!_diff_command) {
832                 return;
833         }
834
835         if ((add_or_remove = _diff_command->adds_or_removes())) {
836                 // Mark all selected notes for selection when model reloads
837                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
838                         _marked_for_selection.insert((*i)->note());
839                 }
840         }
841
842         _model->apply_command_as_subcommand(*trackview.session(), _diff_command);
843         _diff_command = 0;
844         midi_view()->midi_track()->playlist_modified();
845
846         if (add_or_remove) {
847                 _marked_for_selection.clear();
848         }
849         _marked_for_velocity.clear();
850 }
851
852
853 void
854 MidiRegionView::abort_command()
855 {
856         delete _diff_command;
857         _diff_command = 0;
858         clear_selection();
859 }
860
861 CanvasNoteEvent*
862 MidiRegionView::find_canvas_note (boost::shared_ptr<NoteType> note)
863 {
864         if (_optimization_iterator != _events.end()) {
865                 ++_optimization_iterator;
866         }
867
868         if (_optimization_iterator != _events.end() && (*_optimization_iterator)->note() == note) {
869                 return *_optimization_iterator;
870         }
871
872         for (_optimization_iterator = _events.begin(); _optimization_iterator != _events.end(); ++_optimization_iterator) {
873                 if ((*_optimization_iterator)->note() == note) {
874                         return *_optimization_iterator;
875                 }
876         }
877
878         return 0;
879 }
880
881 void
882 MidiRegionView::get_events (Events& e, Evoral::Sequence<Evoral::MusicalTime>::NoteOperator op, uint8_t val, int chan_mask)
883 {
884         MidiModel::Notes notes;
885         _model->get_notes (notes, op, val, chan_mask);
886
887         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
888                 CanvasNoteEvent* cne = find_canvas_note (*n);
889                 if (cne) {
890                         e.push_back (cne);
891                 }
892         }
893 }
894
895 void
896 MidiRegionView::redisplay_model()
897 {
898         // Don't redisplay the model if we're currently recording and displaying that
899         if (_active_notes) {
900                 return;
901         }
902
903         if (!_model) {
904                 cerr << "MidiRegionView::redisplay_model called without a model" << endmsg;
905                 return;
906         }
907
908         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
909                 (*i)->invalidate ();
910         }
911
912         MidiModel::ReadLock lock(_model->read_lock());
913
914         MidiModel::Notes& notes (_model->notes());
915         _optimization_iterator = _events.begin();
916
917         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
918
919                 boost::shared_ptr<NoteType> note (*n);
920                 CanvasNoteEvent* cne;
921                 bool visible;
922
923                 if (note_in_region_range (note, visible)) {
924
925                         if ((cne = find_canvas_note (note)) != 0) {
926
927                                 cne->validate ();
928
929                                 CanvasNote* cn;
930                                 CanvasHit* ch;
931
932                                 if ((cn = dynamic_cast<CanvasNote*>(cne)) != 0) {
933                                         update_note (cn);
934                                 } else if ((ch = dynamic_cast<CanvasHit*>(cne)) != 0) {
935                                         update_hit (ch);
936                                 }
937
938                                 if (visible) {
939                                         cne->show ();
940                                 } else {
941                                         cne->hide ();
942                                 }
943
944                         } else {
945
946                                 add_note (note, visible);
947                         }
948
949                 } else {
950
951                         if ((cne = find_canvas_note (note)) != 0) {
952                                 cne->validate ();
953                                 cne->hide ();
954                         }
955                 }
956         }
957
958
959         /* remove note items that are no longer valid */
960
961         for (Events::iterator i = _events.begin(); i != _events.end(); ) {
962                 if (!(*i)->valid ()) {
963                         delete *i;
964                         i = _events.erase (i);
965                 } else {
966                         ++i;
967                 }
968         }
969
970         _pgm_changes.clear();
971         _sys_exes.clear();
972         
973         display_sysexes();
974         display_program_changes();
975
976         _marked_for_selection.clear ();
977         _marked_for_velocity.clear ();
978
979         /* we may have caused _events to contain things out of order (e.g. if a note
980            moved earlier or later). we don't generally need them in time order, but
981            make a note that a sort is required for those cases that require it.
982         */
983
984         _sort_needed = true;
985 }
986
987 void
988 MidiRegionView::display_program_changes()
989 {
990         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
991         uint16_t chn_mask = mtv->channel_selector().get_selected_channels();
992
993         for (uint8_t i = 0; i < 16; ++i) {
994                 if (chn_mask & (1<<i)) {
995                         display_program_changes_on_channel (i);
996                 }
997         }
998 }
999
1000 void
1001 MidiRegionView::display_program_changes_on_channel(uint8_t channel)
1002 {
1003         boost::shared_ptr<Evoral::Control> control = 
1004                 _model->control(Evoral::MIDI::ProgramChange (MidiPgmChangeAutomation, channel));
1005
1006         if (!control) {
1007                 return;
1008         }
1009
1010         Glib::Mutex::Lock lock (control->list()->lock());
1011
1012         for (AutomationList::const_iterator event = control->list()->begin();
1013                         event != control->list()->end(); ++event) {
1014                 double event_time     = (*event)->when;
1015                 double program_number = floor((*event)->value + 0.5);
1016
1017                 // Get current value of bank select MSB at time of the program change
1018                 Evoral::Parameter bank_select_msb(MidiCCAutomation, channel, MIDI_CTL_MSB_BANK);
1019                 boost::shared_ptr<Evoral::Control> msb_control = _model->control(bank_select_msb);
1020                 uint8_t msb = 0;
1021                 if (msb_control != 0) {
1022                         msb = uint8_t(floor(msb_control->get_double(true, event_time) + 0.5));
1023                 }
1024
1025                 // Get current value of bank select LSB at time of the program change
1026                 Evoral::Parameter bank_select_lsb(MidiCCAutomation, channel, MIDI_CTL_LSB_BANK);
1027                 boost::shared_ptr<Evoral::Control> lsb_control = _model->control(bank_select_lsb);
1028                 uint8_t lsb = 0;
1029                 if (lsb_control != 0) {
1030                         lsb = uint8_t(floor(lsb_control->get_double(true, event_time) + 0.5));
1031                 }
1032
1033                 MIDI::Name::PatchPrimaryKey patch_key(msb, lsb, program_number);
1034
1035                 boost::shared_ptr<MIDI::Name::Patch> patch =
1036                         MIDI::Name::MidiPatchManager::instance().find_patch(
1037                                         _model_name, _custom_device_mode, channel, patch_key);
1038
1039                 PCEvent program_change(event_time, uint8_t(program_number), channel);
1040
1041                 if (patch != 0) {
1042                         add_pgm_change(program_change, patch->name());
1043                 } else {
1044                         char buf[4];
1045                         // program_number is zero-based: convert to one-based
1046                         snprintf(buf, 4, "%d", int(program_number+1));
1047                         add_pgm_change(program_change, buf);
1048                 }
1049         }
1050 }
1051
1052 void
1053 MidiRegionView::display_sysexes()
1054 {
1055         for (MidiModel::SysExes::const_iterator i = _model->sysexes().begin(); i != _model->sysexes().end(); ++i) {
1056                 Evoral::MusicalTime time = (*i)->time();
1057                 assert(time >= 0);
1058
1059                 ostringstream str;
1060                 str << hex;
1061                 for (uint32_t b = 0; b < (*i)->size(); ++b) {
1062                         str << int((*i)->buffer()[b]);
1063                         if (b != (*i)->size() -1) {
1064                                 str << " ";
1065                         }
1066                 }
1067                 string text = str.str();
1068
1069                 ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
1070
1071                 const double x = trackview.editor().frame_to_pixel(beats_to_frames(time));
1072
1073                 double height = midi_stream_view()->contents_height();
1074
1075                 boost::shared_ptr<CanvasSysEx> sysex = boost::shared_ptr<CanvasSysEx>(
1076                                 new CanvasSysEx(*this, *group, text, height, x, 1.0));
1077
1078                 // Show unless program change is beyond the region bounds
1079                 if (time - _region->start() >= _region->length() || time < _region->start()) {
1080                         sysex->hide();
1081                 } else {
1082                         sysex->show();
1083                 }
1084
1085                 _sys_exes.push_back(sysex);
1086         }
1087 }
1088
1089
1090 MidiRegionView::~MidiRegionView ()
1091 {
1092         in_destructor = true;
1093
1094         trackview.editor().hide_verbose_canvas_cursor ();
1095
1096         note_delete_connection.disconnect ();
1097
1098         delete _list_editor;
1099
1100         RegionViewGoingAway (this); /* EMIT_SIGNAL */
1101
1102         if (_active_notes) {
1103                 end_write();
1104         }
1105
1106         _selection.clear();
1107         clear_events();
1108
1109         delete _note_group;
1110         delete _diff_command;
1111         delete _step_edit_cursor;
1112 }
1113
1114 void
1115 MidiRegionView::region_resized (const PropertyChange& what_changed)
1116 {
1117         RegionView::region_resized(what_changed);
1118
1119         if (what_changed.contains (ARDOUR::Properties::position)) {
1120                 set_duration(_region->length(), 0);
1121                 if (_enable_display) {
1122                         redisplay_model();
1123                 }
1124         }
1125 }
1126
1127 void
1128 MidiRegionView::reset_width_dependent_items (double pixel_width)
1129 {
1130         RegionView::reset_width_dependent_items(pixel_width);
1131         assert(_pixel_width == pixel_width);
1132
1133         if (_enable_display) {
1134                 redisplay_model();
1135         }
1136         
1137         move_step_edit_cursor (_step_edit_cursor_position);
1138         set_step_edit_cursor_width (_step_edit_cursor_width);
1139 }
1140
1141 void
1142 MidiRegionView::set_height (double height)
1143 {
1144         static const double FUDGE = 2.0;
1145         const double old_height = _height;
1146         RegionView::set_height(height);
1147         _height = height - FUDGE;
1148
1149         apply_note_range(midi_stream_view()->lowest_note(),
1150                          midi_stream_view()->highest_note(),
1151                          height != old_height + FUDGE);
1152
1153         if (name_pixbuf) {
1154                 name_pixbuf->raise_to_top();
1155         }
1156         
1157         for (PgmChanges::iterator x = _pgm_changes.begin(); x != _pgm_changes.end(); ++x) {
1158                 (*x)->set_height (midi_stream_view()->contents_height());
1159         }
1160
1161         if (_step_edit_cursor) {
1162                 _step_edit_cursor->property_y2() = midi_stream_view()->contents_height();
1163         }
1164 }
1165
1166
1167 /** Apply the current note range from the stream view
1168  * by repositioning/hiding notes as necessary
1169  */
1170 void
1171 MidiRegionView::apply_note_range (uint8_t min, uint8_t max, bool force)
1172 {
1173         if (!_enable_display) {
1174                 return;
1175         }
1176
1177         if (!force && _current_range_min == min && _current_range_max == max) {
1178                 return;
1179         }
1180
1181         _current_range_min = min;
1182         _current_range_max = max;
1183
1184         for (Events::const_iterator i = _events.begin(); i != _events.end(); ++i) {
1185                 CanvasNoteEvent* event = *i;
1186                 boost::shared_ptr<NoteType> note (event->note());
1187
1188                 if (note->note() < _current_range_min ||
1189                     note->note() > _current_range_max) {
1190                         event->hide();
1191                 } else {
1192                         event->show();
1193                 }
1194
1195                 if (CanvasNote* cnote = dynamic_cast<CanvasNote*>(event)) {
1196
1197                         const double y1 = midi_stream_view()->note_to_y(note->note());
1198                         const double y2 = y1 + floor(midi_stream_view()->note_height());
1199
1200                         cnote->property_y1() = y1;
1201                         cnote->property_y2() = y2;
1202
1203                 } else if (CanvasHit* chit = dynamic_cast<CanvasHit*>(event)) {
1204
1205                         double x = trackview.editor().frame_to_pixel(
1206                                 beats_to_frames(note->time()) - _region->start());
1207                         const double diamond_size = midi_stream_view()->note_height() / 2.0;
1208                         double y = midi_stream_view()->note_to_y(event->note()->note())
1209                                 + ((diamond_size-2.0) / 4.0);
1210
1211                         chit->set_height (diamond_size);
1212                         chit->move (x - chit->x1(), y - chit->y1());
1213                         chit->show ();
1214                 }
1215         }
1216 }
1217
1218 GhostRegion*
1219 MidiRegionView::add_ghost (TimeAxisView& tv)
1220 {
1221         CanvasNote* note;
1222
1223         double unit_position = _region->position () / samples_per_unit;
1224         MidiTimeAxisView* mtv = dynamic_cast<MidiTimeAxisView*>(&tv);
1225         MidiGhostRegion* ghost;
1226
1227         if (mtv && mtv->midi_view()) {
1228                 /* if ghost is inserted into midi track, use a dedicated midi ghost canvas group
1229                    to allow having midi notes on top of note lines and waveforms.
1230                  */
1231                 ghost = new MidiGhostRegion (*mtv->midi_view(), trackview, unit_position);
1232         } else {
1233                 ghost = new MidiGhostRegion (tv, trackview, unit_position);
1234         }
1235
1236         ghost->set_height ();
1237         ghost->set_duration (_region->length() / samples_per_unit);
1238         ghosts.push_back (ghost);
1239
1240         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
1241                 if ((note = dynamic_cast<CanvasNote*>(*i)) != 0) {
1242                         ghost->add_note(note);
1243                 }
1244         }
1245
1246         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), ui_bind (&RegionView::remove_ghost, this, _1), gui_context());
1247
1248         return ghost;
1249 }
1250
1251
1252 /** Begin tracking note state for successive calls to add_event
1253  */
1254 void
1255 MidiRegionView::begin_write()
1256 {
1257         assert(!_active_notes);
1258         _active_notes = new CanvasNote*[128];
1259         for (unsigned i=0; i < 128; ++i) {
1260                 _active_notes[i] = 0;
1261         }
1262 }
1263
1264
1265 /** Destroy note state for add_event
1266  */
1267 void
1268 MidiRegionView::end_write()
1269 {
1270         delete[] _active_notes;
1271         _active_notes = 0;
1272         _marked_for_selection.clear();
1273         _marked_for_velocity.clear();
1274 }
1275
1276
1277 /** Resolve an active MIDI note (while recording).
1278  */
1279 void
1280 MidiRegionView::resolve_note(uint8_t note, double end_time)
1281 {
1282         if (midi_view()->note_mode() != Sustained) {
1283                 return;
1284         }
1285
1286         if (_active_notes && _active_notes[note]) {
1287                 const nframes64_t end_time_frames = beats_to_frames(end_time);
1288                 _active_notes[note]->property_x2() = trackview.editor().frame_to_pixel(end_time_frames);
1289                 _active_notes[note]->property_outline_what() = (guint32) 0xF; // all edges
1290                 _active_notes[note] = 0;
1291         }
1292 }
1293
1294
1295 /** Extend active notes to rightmost edge of region (if length is changed)
1296  */
1297 void
1298 MidiRegionView::extend_active_notes()
1299 {
1300         if (!_active_notes) {
1301                 return;
1302         }
1303
1304         for (unsigned i=0; i < 128; ++i) {
1305                 if (_active_notes[i]) {
1306                         _active_notes[i]->property_x2() = trackview.editor().frame_to_pixel(_region->length());
1307                 }
1308         }
1309 }
1310
1311 void
1312 MidiRegionView::play_midi_note(boost::shared_ptr<NoteType> note)
1313 {
1314         if (no_sound_notes || !trackview.editor().sound_notes()) {
1315                 return;
1316         }
1317
1318         RouteUI* route_ui = dynamic_cast<RouteUI*> (&trackview);
1319         assert(route_ui);
1320
1321         route_ui->midi_track()->write_immediate_event(
1322                         note->on_event().size(), note->on_event().buffer());
1323
1324         const double note_length_beats = (note->off_event().time() - note->on_event().time());
1325         nframes_t note_length_ms = beats_to_frames(note_length_beats)
1326                         * (1000 / (double)route_ui->session()->nominal_frame_rate());
1327         Glib::signal_timeout().connect(sigc::bind(sigc::mem_fun(this, &MidiRegionView::play_midi_note_off), note),
1328                         note_length_ms, G_PRIORITY_DEFAULT);
1329 }
1330
1331 bool
1332 MidiRegionView::play_midi_note_off(boost::shared_ptr<NoteType> note)
1333 {
1334         RouteUI* route_ui = dynamic_cast<RouteUI*> (&trackview);
1335         assert(route_ui);
1336
1337         route_ui->midi_track()->write_immediate_event(
1338                         note->off_event().size(), note->off_event().buffer());
1339
1340         return false;
1341 }
1342
1343 bool
1344 MidiRegionView::note_in_region_range(const boost::shared_ptr<NoteType> note, bool& visible) const
1345 {
1346         const nframes64_t note_start_frames = beats_to_frames(note->time());
1347
1348         bool outside = (note_start_frames - _region->start() >= _region->length()) ||
1349                 (note_start_frames < _region->start());
1350
1351         visible = (note->note() >= midi_stream_view()->lowest_note()) &&
1352                 (note->note() <= midi_stream_view()->highest_note());
1353
1354         return !outside;
1355 }
1356
1357 void
1358 MidiRegionView::update_note (CanvasNote* ev)
1359 {
1360         boost::shared_ptr<NoteType> note = ev->note();
1361
1362         const nframes64_t note_start_frames = beats_to_frames(note->time());
1363
1364         /* trim note display to not overlap the end of its region */
1365         const nframes64_t note_end_frames = min (beats_to_frames (note->end_time()), _region->start() + _region->length());
1366
1367         const double x = trackview.editor().frame_to_pixel(note_start_frames - _region->start());
1368         const double y1 = midi_stream_view()->note_to_y(note->note());
1369         const double note_endpixel = trackview.editor().frame_to_pixel(note_end_frames - _region->start());
1370
1371         ev->property_x1() = x;
1372         ev->property_y1() = y1;
1373         if (note->length() > 0) {
1374                 ev->property_x2() = note_endpixel;
1375         } else {
1376                 ev->property_x2() = trackview.editor().frame_to_pixel(_region->length());
1377         }
1378         ev->property_y2() = y1 + floor(midi_stream_view()->note_height());
1379
1380         if (note->length() == 0) {
1381                 if (_active_notes) {
1382                         assert(note->note() < 128);
1383                         // If this note is already active there's a stuck note,
1384                         // finish the old note rectangle
1385                         if (_active_notes[note->note()]) {
1386                                 CanvasNote* const old_rect = _active_notes[note->note()];
1387                                 boost::shared_ptr<NoteType> old_note = old_rect->note();
1388                                 old_rect->property_x2() = x;
1389                                 old_rect->property_outline_what() = (guint32) 0xF;
1390                         }
1391                         _active_notes[note->note()] = ev;
1392                 }
1393                 /* outline all but right edge */
1394                 ev->property_outline_what() = (guint32) (0x1 & 0x4 & 0x8);
1395         } else {
1396                 /* outline all edges */
1397                 ev->property_outline_what() = (guint32) 0xF;
1398         }
1399 }
1400
1401 void
1402 MidiRegionView::update_hit (CanvasHit* ev)
1403 {
1404         boost::shared_ptr<NoteType> note = ev->note();
1405
1406         const nframes64_t note_start_frames = beats_to_frames(note->time());
1407         const double x = trackview.editor().frame_to_pixel(note_start_frames - _region->start());
1408         const double diamond_size = midi_stream_view()->note_height() / 2.0;
1409         const double y = midi_stream_view()->note_to_y(note->note()) + ((diamond_size-2) / 4.0);
1410
1411         ev->move_to (x, y);
1412 }
1413
1414 /** Add a MIDI note to the view (with length).
1415  *
1416  * If in sustained mode, notes with length 0 will be considered active
1417  * notes, and resolve_note should be called when the corresponding note off
1418  * event arrives, to properly display the note.
1419  */
1420 void
1421 MidiRegionView::add_note(const boost::shared_ptr<NoteType> note, bool visible)
1422 {
1423         CanvasNoteEvent* event = 0;
1424
1425         assert(note->time() >= 0);
1426         assert(midi_view()->note_mode() == Sustained || midi_view()->note_mode() == Percussive);
1427
1428         ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
1429
1430         if (midi_view()->note_mode() == Sustained) {
1431
1432                 CanvasNote* ev_rect = new CanvasNote(*this, *group, note);
1433
1434                 update_note (ev_rect);
1435
1436                 event = ev_rect;
1437
1438                 MidiGhostRegion* gr;
1439
1440                 for (std::vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
1441                         if ((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
1442                                 gr->add_note(ev_rect);
1443                         }
1444                 }
1445
1446         } else if (midi_view()->note_mode() == Percussive) {
1447
1448                 const double diamond_size = midi_stream_view()->note_height() / 2.0;
1449
1450                 CanvasHit* ev_diamond = new CanvasHit(*this, *group, diamond_size, note);
1451
1452                 update_hit (ev_diamond);
1453
1454                 event = ev_diamond;
1455
1456         } else {
1457                 event = 0;
1458         }
1459
1460         if (event) {
1461                 if (_marked_for_selection.find(note) != _marked_for_selection.end()) {
1462                         note_selected(event, true);
1463                 }
1464
1465                 if (_marked_for_velocity.find(note) != _marked_for_velocity.end()) {
1466                         event->show_velocity();
1467                 }
1468                 event->on_channel_selection_change(_last_channel_selection);
1469                 _events.push_back(event);
1470
1471                 if (visible) {
1472                         event->show();
1473                 } else {
1474                         event->hide ();
1475                 }
1476         }
1477 }
1478
1479 void
1480 MidiRegionView::step_add_note (uint8_t channel, uint8_t number, uint8_t velocity,
1481                                Evoral::MusicalTime pos, Evoral::MusicalTime len)
1482 {
1483         boost::shared_ptr<NoteType> new_note (new NoteType (channel, pos, len, number, velocity));
1484
1485         /* potentially extend region to hold new note */
1486
1487         nframes64_t end_frame = _region->position() + beats_to_frames (new_note->end_time());
1488         nframes64_t region_end = _region->position() + _region->length() - 1;
1489
1490         if (end_frame > region_end) {
1491                 _region->set_length (end_frame - _region->position(), this);
1492         }
1493
1494         _marked_for_selection.clear ();
1495         clear_selection ();
1496
1497         start_diff_command (_("step add"));
1498         diff_add_note (new_note, true, false);
1499         apply_diff();
1500
1501         // last_step_edit_note = new_note;
1502 }
1503
1504 void
1505 MidiRegionView::step_sustain (Evoral::MusicalTime beats)
1506 {
1507         change_note_lengths (false, false, beats, false, true);
1508 }
1509
1510 void
1511 MidiRegionView::add_pgm_change(PCEvent& program, const string& displaytext)
1512 {
1513         assert(program.time >= 0);
1514
1515         ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
1516         const double x = trackview.editor().frame_to_pixel(beats_to_frames(program.time));
1517
1518         double height = midi_stream_view()->contents_height();
1519
1520         boost::shared_ptr<CanvasProgramChange> pgm_change = boost::shared_ptr<CanvasProgramChange>(
1521                         new CanvasProgramChange(*this, *group,
1522                                         displaytext,
1523                                         height,
1524                                         x, 1.0,
1525                                         _model_name,
1526                                         _custom_device_mode,
1527                                         program.time, program.channel, program.value));
1528
1529         // Show unless program change is beyond the region bounds
1530         if (program.time - _region->start() >= _region->length() || program.time < _region->start()) {
1531                 pgm_change->hide();
1532         } else {
1533                 pgm_change->show();
1534         }
1535
1536         _pgm_changes.push_back(pgm_change);
1537 }
1538
1539 void
1540 MidiRegionView::get_patch_key_at(double time, uint8_t channel, MIDI::Name::PatchPrimaryKey& key)
1541 {
1542         Evoral::Parameter bank_select_msb(MidiCCAutomation, channel, MIDI_CTL_MSB_BANK);
1543         boost::shared_ptr<Evoral::Control> msb_control = _model->control(bank_select_msb);
1544         double msb = 0.0;
1545         if (msb_control != 0) {
1546                 msb = int(msb_control->get_double(true, time));
1547         }
1548
1549         Evoral::Parameter bank_select_lsb(MidiCCAutomation, channel, MIDI_CTL_LSB_BANK);
1550         boost::shared_ptr<Evoral::Control> lsb_control = _model->control(bank_select_lsb);
1551         double lsb = 0.0;
1552         if (lsb_control != 0) {
1553                 lsb = lsb_control->get_double(true, time);
1554         }
1555
1556         Evoral::Parameter program_change(MidiPgmChangeAutomation, channel, 0);
1557         boost::shared_ptr<Evoral::Control> program_control = _model->control(program_change);
1558         double program_number = -1.0;
1559         if (program_control != 0) {
1560                 program_number = program_control->get_double(true, time);
1561         }
1562
1563         key.msb = (int) floor(msb + 0.5);
1564         key.lsb = (int) floor(lsb + 0.5);
1565         key.program_number = (int) floor(program_number + 0.5);
1566         assert(key.is_sane());
1567 }
1568
1569
1570 void
1571 MidiRegionView::alter_program_change(PCEvent& old_program, const MIDI::Name::PatchPrimaryKey& new_patch)
1572 {
1573         // TODO: Get the real event here and alter them at the original times
1574         Evoral::Parameter bank_select_msb(MidiCCAutomation, old_program.channel, MIDI_CTL_MSB_BANK);
1575         boost::shared_ptr<Evoral::Control> msb_control = _model->control(bank_select_msb);
1576         if (msb_control != 0) {
1577                 msb_control->set_double(double(new_patch.msb), true, old_program.time);
1578         }
1579
1580         // TODO: Get the real event here and alter them at the original times
1581         Evoral::Parameter bank_select_lsb(MidiCCAutomation, old_program.channel, MIDI_CTL_LSB_BANK);
1582         boost::shared_ptr<Evoral::Control> lsb_control = _model->control(bank_select_lsb);
1583         if (lsb_control != 0) {
1584                 lsb_control->set_double(double(new_patch.lsb), true, old_program.time);
1585         }
1586
1587         Evoral::Parameter program_change(MidiPgmChangeAutomation, old_program.channel, 0);
1588         boost::shared_ptr<Evoral::Control> program_control = _model->control(program_change);
1589
1590         assert(program_control != 0);
1591         program_control->set_double(float(new_patch.program_number), true, old_program.time);
1592
1593         _pgm_changes.clear ();
1594         display_program_changes (); // XXX would be nice to limit to just old_program.channel
1595 }
1596
1597 void
1598 MidiRegionView::program_selected(CanvasProgramChange& program, const MIDI::Name::PatchPrimaryKey& new_patch)
1599 {
1600         PCEvent program_change_event(program.event_time(), program.program(), program.channel());
1601         alter_program_change(program_change_event, new_patch);
1602 }
1603
1604 void
1605 MidiRegionView::previous_program(CanvasProgramChange& program)
1606 {
1607         if (program.program() < 127) {
1608                 MIDI::Name::PatchPrimaryKey key;
1609                 get_patch_key_at(program.event_time(), program.channel(), key);
1610                 PCEvent program_change_event(program.event_time(), program.program(), program.channel());
1611
1612                 key.program_number++;
1613                 alter_program_change(program_change_event, key);
1614         }
1615 }
1616
1617 void
1618 MidiRegionView::next_program(CanvasProgramChange& program)
1619 {
1620         if (program.program() > 0) {
1621                 MIDI::Name::PatchPrimaryKey key;
1622                 get_patch_key_at(program.event_time(), program.channel(), key);
1623                 PCEvent program_change_event(program.event_time(), program.program(), program.channel());
1624
1625                 key.program_number--;
1626                 alter_program_change(program_change_event, key);
1627         }
1628 }
1629
1630 void
1631 MidiRegionView::maybe_remove_deleted_note_from_selection (CanvasNoteEvent* cne)
1632 {
1633         if (_selection.empty()) {
1634                 return;
1635         }
1636  
1637         if (_selection.erase (cne) > 0) {
1638                 cerr << "Erased a CNE from selection\n";
1639         }
1640 }
1641
1642 void
1643 MidiRegionView::delete_selection()
1644 {
1645         if (_selection.empty()) {
1646                 return;
1647         }
1648
1649         start_diff_command (_("delete selection"));
1650
1651         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1652                 if ((*i)->selected()) {
1653                         _diff_command->remove((*i)->note());
1654                 }
1655         }
1656
1657         _selection.clear();
1658
1659         apply_diff ();
1660 }
1661
1662 void
1663 MidiRegionView::delete_note (boost::shared_ptr<NoteType> n)
1664 {
1665         start_diff_command (_("delete note"));
1666         _diff_command->remove (n);
1667         apply_diff ();
1668
1669         trackview.editor().hide_verbose_canvas_cursor ();
1670 }
1671
1672 void
1673 MidiRegionView::clear_selection_except(ArdourCanvas::CanvasNoteEvent* ev)
1674 {
1675         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1676                 if ((*i)->selected() && (*i) != ev) {
1677                         (*i)->set_selected(false);
1678                         (*i)->hide_velocity();
1679                 }
1680         }
1681
1682         _selection.clear();
1683 }
1684
1685 void
1686 MidiRegionView::unique_select(ArdourCanvas::CanvasNoteEvent* ev)
1687 {
1688         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
1689                 if ((*i) != ev) {
1690
1691                         Selection::iterator tmp = i;
1692                         ++tmp;
1693
1694                         (*i)->set_selected (false);
1695                         _selection.erase (i);
1696
1697                         i = tmp;
1698
1699                 } else {
1700                         ++i;
1701                 }
1702         }
1703
1704         /* don't bother with removing this regionview from the editor selection,
1705            since we're about to add another note, and thus put/keep this
1706            regionview in the editor selection.
1707         */
1708
1709         if (!ev->selected()) {
1710                 add_to_selection (ev);
1711         }
1712 }
1713
1714 void
1715 MidiRegionView::select_matching_notes (uint8_t notenum, uint16_t channel_mask, bool add, bool extend)
1716 {
1717         uint8_t low_note = 127;
1718         uint8_t high_note = 0;
1719         MidiModel::Notes& notes (_model->notes());
1720         _optimization_iterator = _events.begin();
1721
1722         if (!add) {
1723                 clear_selection ();
1724         }
1725
1726         if (extend && _selection.empty()) {
1727                 extend = false;
1728         }
1729
1730         if (extend) {
1731
1732                 /* scan existing selection to get note range */
1733
1734                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1735                         if ((*i)->note()->note() < low_note) {
1736                                 low_note = (*i)->note()->note();
1737                         }
1738                         if ((*i)->note()->note() > high_note) {
1739                                 high_note = (*i)->note()->note();
1740                         }
1741                 }
1742
1743                 low_note = min (low_note, notenum);
1744                 high_note = max (high_note, notenum);
1745         }
1746
1747         no_sound_notes = true;
1748
1749         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
1750
1751                 boost::shared_ptr<NoteType> note (*n);
1752                 CanvasNoteEvent* cne;
1753                 bool select = false;
1754
1755                 if (((1 << note->channel()) & channel_mask) != 0) {
1756                         if (extend) {
1757                                 if ((note->note() >= low_note && note->note() <= high_note)) {
1758                                         select = true;
1759                                 }
1760                         } else if (note->note() == notenum) {
1761                                 select = true;
1762                         }
1763                 }
1764
1765                 if (select) {
1766                         if ((cne = find_canvas_note (note)) != 0) {
1767                                 // extend is false because we've taken care of it, 
1768                                 // since it extends by time range, not pitch.
1769                                 note_selected (cne, add, false);
1770                         }
1771                 }
1772                 
1773                 add = true; // we need to add all remaining matching notes, even if the passed in value was false (for "set")
1774
1775         }
1776
1777         no_sound_notes = false;
1778 }
1779
1780 void
1781 MidiRegionView::toggle_matching_notes (uint8_t notenum, uint16_t channel_mask)
1782 {
1783         MidiModel::Notes& notes (_model->notes());
1784         _optimization_iterator = _events.begin();
1785
1786         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
1787
1788                 boost::shared_ptr<NoteType> note (*n);
1789                 CanvasNoteEvent* cne;
1790
1791                 if (note->note() == notenum && (((0x0001 << note->channel()) & channel_mask) != 0)) {
1792                         if ((cne = find_canvas_note (note)) != 0) {
1793                                 if (cne->selected()) {
1794                                         note_deselected (cne);
1795                                 } else {
1796                                         note_selected (cne, true, false);
1797                                 }
1798                         }
1799                 }
1800         }
1801 }
1802
1803 void
1804 MidiRegionView::note_selected(ArdourCanvas::CanvasNoteEvent* ev, bool add, bool extend)
1805 {
1806         if (!add) {
1807                 clear_selection_except(ev);
1808         }
1809
1810         if (!extend) {
1811
1812                 if (!ev->selected()) {
1813                         add_to_selection (ev);
1814                 }
1815
1816         } else {
1817                 /* find end of latest note selected, select all between that and the start of "ev" */
1818
1819                 Evoral::MusicalTime earliest = DBL_MAX;
1820                 Evoral::MusicalTime latest = 0;
1821
1822                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1823                         if ((*i)->note()->end_time() > latest) {
1824                                 latest = (*i)->note()->end_time();
1825                         }
1826                         if ((*i)->note()->time() < earliest) {
1827                                 earliest = (*i)->note()->time();
1828                         }
1829                 }
1830
1831                 if (ev->note()->end_time() > latest) {
1832                         latest = ev->note()->end_time();
1833                 }
1834
1835                 if (ev->note()->time() < earliest) {
1836                         earliest = ev->note()->time();
1837                 }
1838
1839                 for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
1840
1841                         /* find notes entirely within OR spanning the earliest..latest range */
1842
1843                         if (((*i)->note()->time() >= earliest && (*i)->note()->end_time() <= latest) ||
1844                             ((*i)->note()->time() <= earliest && (*i)->note()->end_time() >= latest)) {
1845                                 add_to_selection (*i);
1846                         }
1847
1848 #if 0
1849                         /* if events were guaranteed to be time sorted, we could do this.
1850                            but as of sept 10th 2009, they no longer are.
1851                         */
1852
1853                         if ((*i)->note()->time() > latest) {
1854                                 break;
1855                         }
1856 #endif
1857                 }
1858         }
1859 }
1860
1861 void
1862 MidiRegionView::note_deselected(ArdourCanvas::CanvasNoteEvent* ev)
1863 {
1864         remove_from_selection (ev);
1865 }
1866
1867 void
1868 MidiRegionView::update_drag_selection(double x1, double x2, double y1, double y2)
1869 {
1870         if (x1 > x2) {
1871                 swap (x1, x2);
1872         }
1873
1874         if (y1 > y2) {
1875                 swap (y1, y2);
1876         }
1877
1878         // TODO: Make this faster by storing the last updated selection rect, and only
1879         // adjusting things that are in the area that appears/disappeared.
1880         // We probably need a tree to be able to find events in O(log(n)) time.
1881
1882         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
1883
1884                 /* check if any corner of the note is inside the rect
1885
1886                    Notes:
1887                      1) this is computing "touched by", not "contained by" the rect.
1888                      2) this does not require that events be sorted in time.
1889                  */
1890
1891                 const double ix1 = (*i)->x1();
1892                 const double ix2 = (*i)->x2();
1893                 const double iy1 = (*i)->y1();
1894                 const double iy2 = (*i)->y2();
1895
1896                 if ((ix1 >= x1 && ix1 <= x2 && iy1 >= y1 && iy1 <= y2) ||
1897                     (ix1 >= x1 && ix1 <= x2 && iy2 >= y1 && iy2 <= y2) ||
1898                     (ix2 >= x1 && ix2 <= x2 && iy1 >= y1 && iy1 <= y2) ||
1899                     (ix2 >= x1 && ix2 <= x2 && iy2 >= y1 && iy2 <= y2)) {
1900
1901                         // Inside rectangle
1902                         if (!(*i)->selected()) {
1903                                 add_to_selection (*i);
1904                         }
1905                 } else if ((*i)->selected()) {
1906                         // Not inside rectangle
1907                         remove_from_selection (*i);
1908                 }
1909         }
1910 }
1911
1912 void
1913 MidiRegionView::remove_from_selection (CanvasNoteEvent* ev)
1914 {
1915         Selection::iterator i = _selection.find (ev);
1916
1917         if (i != _selection.end()) {
1918                 _selection.erase (i);
1919         }
1920
1921         ev->set_selected (false);
1922         ev->hide_velocity ();
1923
1924         if (_selection.empty()) {
1925                 PublicEditor& editor (trackview.editor());
1926                 editor.get_selection().remove (this);
1927         }
1928 }
1929
1930 void
1931 MidiRegionView::add_to_selection (CanvasNoteEvent* ev)
1932 {
1933         bool add_mrv_selection = false;
1934
1935         if (_selection.empty()) {
1936                 add_mrv_selection = true;
1937         }
1938
1939         if (_selection.insert (ev).second) {
1940                 ev->set_selected (true);
1941                 play_midi_note ((ev)->note());
1942         }
1943
1944         if (add_mrv_selection) {
1945                 PublicEditor& editor (trackview.editor());
1946                 editor.get_selection().add (this);
1947         }
1948 }
1949
1950 void
1951 MidiRegionView::move_selection(double dx, double dy)
1952 {
1953         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1954                 (*i)->move_event(dx, dy);
1955         }
1956 }
1957
1958 void
1959 MidiRegionView::note_dropped(CanvasNoteEvent *, frameoffset_t dt, int8_t dnote)
1960 {
1961         assert (!_selection.empty());
1962
1963         uint8_t lowest_note_in_selection  = 127;
1964         uint8_t highest_note_in_selection = 0;
1965         uint8_t highest_note_difference = 0;
1966
1967         // find highest and lowest notes first
1968
1969         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1970                 uint8_t pitch = (*i)->note()->note();
1971                 lowest_note_in_selection  = std::min(lowest_note_in_selection,  pitch);
1972                 highest_note_in_selection = std::max(highest_note_in_selection, pitch);
1973         }
1974
1975         /*
1976         cerr << "dnote: " << (int) dnote << endl;
1977         cerr << "lowest note (streamview): " << int(midi_stream_view()->lowest_note())
1978              << " highest note (streamview): " << int(midi_stream_view()->highest_note()) << endl;
1979         cerr << "lowest note (selection): " << int(lowest_note_in_selection) << " highest note(selection): "
1980              << int(highest_note_in_selection) << endl;
1981         cerr << "selection size: " << _selection.size() << endl;
1982         cerr << "Highest note in selection: " << (int) highest_note_in_selection << endl;
1983         */
1984
1985         // Make sure the note pitch does not exceed the MIDI standard range
1986         if (highest_note_in_selection + dnote > 127) {
1987                 highest_note_difference = highest_note_in_selection - 127;
1988         }
1989
1990         start_diff_command(_("move notes"));
1991
1992         for (Selection::iterator i = _selection.begin(); i != _selection.end() ; ++i) {
1993
1994                 Evoral::MusicalTime new_time = frames_to_beats (beats_to_frames ((*i)->note()->time()) + dt);
1995
1996                 if (new_time < 0) {
1997                         continue;
1998                 }
1999
2000                 diff_add_change (*i, MidiModel::DiffCommand::StartTime, new_time);
2001
2002                 uint8_t original_pitch = (*i)->note()->note();
2003                 uint8_t new_pitch      = original_pitch + dnote - highest_note_difference;
2004
2005                 // keep notes in standard midi range
2006                 clamp_to_0_127(new_pitch);
2007
2008                 // keep original pitch if note is dragged outside valid midi range
2009                 if ((original_pitch != 0 && new_pitch == 0)
2010                                 || (original_pitch != 127 && new_pitch == 127)) {
2011                         new_pitch = original_pitch;
2012                 }
2013
2014                 lowest_note_in_selection  = std::min(lowest_note_in_selection,  new_pitch);
2015                 highest_note_in_selection = std::max(highest_note_in_selection, new_pitch);
2016
2017                 diff_add_change (*i, MidiModel::DiffCommand::NoteNumber, new_pitch);
2018         }
2019
2020         apply_diff();
2021
2022         // care about notes being moved beyond the upper/lower bounds on the canvas
2023         if (lowest_note_in_selection  < midi_stream_view()->lowest_note() ||
2024             highest_note_in_selection > midi_stream_view()->highest_note()) {
2025                 midi_stream_view()->set_note_range(MidiStreamView::ContentsRange);
2026         }
2027 }
2028
2029 nframes64_t
2030 MidiRegionView::snap_pixel_to_frame(double x)
2031 {
2032         PublicEditor& editor = trackview.editor();
2033         // x is region relative, convert it to global absolute frames
2034         nframes64_t frame = editor.pixel_to_frame(x) + _region->position();
2035         editor.snap_to(frame);
2036         return frame - _region->position(); // convert back to region relative
2037 }
2038
2039 nframes64_t
2040 MidiRegionView::snap_frame_to_frame(nframes64_t x)
2041 {
2042         PublicEditor& editor = trackview.editor();
2043         // x is region relative, convert it to global absolute frames
2044         nframes64_t frame = x + _region->position();
2045         editor.snap_to(frame);
2046         return frame - _region->position(); // convert back to region relative
2047 }
2048
2049 double
2050 MidiRegionView::snap_to_pixel(double x)
2051 {
2052         return (double) trackview.editor().frame_to_pixel(snap_pixel_to_frame(x));
2053 }
2054
2055 double
2056 MidiRegionView::get_position_pixels()
2057 {
2058         nframes64_t region_frame = get_position();
2059         return trackview.editor().frame_to_pixel(region_frame);
2060 }
2061
2062 double
2063 MidiRegionView::get_end_position_pixels()
2064 {
2065         nframes64_t frame = get_position() + get_duration ();
2066         return trackview.editor().frame_to_pixel(frame);
2067 }
2068
2069 nframes64_t
2070 MidiRegionView::beats_to_frames(double beats) const
2071 {
2072         return _time_converter.to(beats);
2073 }
2074
2075 double
2076 MidiRegionView::frames_to_beats(nframes64_t frames) const
2077 {
2078         return _time_converter.from(frames);
2079 }
2080
2081 void
2082 MidiRegionView::begin_resizing (bool /*at_front*/)
2083 {
2084         _resize_data.clear();
2085
2086         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2087                 CanvasNote *note = dynamic_cast<CanvasNote *> (*i);
2088
2089                 // only insert CanvasNotes into the map
2090                 if (note) {
2091                         NoteResizeData *resize_data = new NoteResizeData();
2092                         resize_data->canvas_note = note;
2093
2094                         // create a new SimpleRect from the note which will be the resize preview
2095                         SimpleRect *resize_rect = new SimpleRect(
2096                                         *group, note->x1(), note->y1(), note->x2(), note->y2());
2097
2098                         // calculate the colors: get the color settings
2099                         uint32_t fill_color = UINT_RGBA_CHANGE_A(
2100                                         ARDOUR_UI::config()->canvasvar_MidiNoteSelected.get(),
2101                                         128);
2102
2103                         // make the resize preview notes more transparent and bright
2104                         fill_color = UINT_INTERPOLATE(fill_color, 0xFFFFFF40, 0.5);
2105
2106                         // calculate color based on note velocity
2107                         resize_rect->property_fill_color_rgba() = UINT_INTERPOLATE(
2108                                 CanvasNoteEvent::meter_style_fill_color(note->note()->velocity(), note->selected()),
2109                                         fill_color,
2110                                         0.85);
2111
2112                         resize_rect->property_outline_color_rgba() = CanvasNoteEvent::calculate_outline(
2113                                         ARDOUR_UI::config()->canvasvar_MidiNoteSelected.get());
2114
2115                         resize_data->resize_rect = resize_rect;
2116                         _resize_data.push_back(resize_data);
2117                 }
2118         }
2119 }
2120
2121 /** Update resizing notes while user drags.
2122  * @param primary `primary' note for the drag; ie the one that is used as the reference in non-relative mode.
2123  * @param at_front which end of the note (true == note on, false == note off)
2124  * @param delta_x change in mouse position since the start of the drag 
2125  * @param relative true if relative resizing is taking place, false if absolute resizing.  This only makes
2126  * a difference when multiple notes are being resized; in relative mode, each note's length is changed by the
2127  * amount of the drag.  In non-relative mode, all selected notes are set to have the same start or end point
2128  * as the \a primary note.
2129  */
2130 void
2131 MidiRegionView::update_resizing (ArdourCanvas::CanvasNote* primary, bool at_front, double delta_x, bool relative)
2132 {
2133         bool cursor_set = false;
2134
2135         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
2136                 SimpleRect* resize_rect = (*i)->resize_rect;
2137                 CanvasNote* canvas_note = (*i)->canvas_note;
2138                 double current_x;
2139
2140                 if (at_front) {
2141                         if (relative) {
2142                                 current_x = canvas_note->x1() + delta_x;
2143                         } else {
2144                                 current_x = primary->x1() + delta_x;
2145                         }
2146                 } else {
2147                         if (relative) {
2148                                 current_x = canvas_note->x2() + delta_x;
2149                         } else {
2150                                 current_x = primary->x2() + delta_x;
2151                         }
2152                 }
2153
2154                 if (at_front) {
2155                         resize_rect->property_x1() = snap_to_pixel(current_x);
2156                         resize_rect->property_x2() = canvas_note->x2();
2157                 } else {
2158                         resize_rect->property_x2() = snap_to_pixel(current_x);
2159                         resize_rect->property_x1() = canvas_note->x1();
2160                 }
2161
2162                 if (!cursor_set) {
2163                         double beats;
2164
2165                         beats = snap_pixel_to_frame (current_x);
2166                         beats = frames_to_beats (beats);
2167                         
2168                         double len;
2169
2170                         if (at_front) {
2171                                 if (beats < canvas_note->note()->end_time()) {
2172                                         len = canvas_note->note()->time() - beats;
2173                                         len += canvas_note->note()->length();
2174                                 } else {
2175                                         len = 0;
2176                                 }
2177                         } else {
2178                                 if (beats >= canvas_note->note()->end_time()) { 
2179                                         len = beats - canvas_note->note()->time();
2180                                 } else {
2181                                         len = 0;
2182                                 }
2183                         }
2184
2185                         char buf[16];
2186                         snprintf (buf, sizeof (buf), "%.3g beats", len);
2187                         trackview.editor().show_verbose_canvas_cursor_with (buf);
2188
2189                         cursor_set = true;
2190                 }
2191
2192         }
2193 }
2194
2195
2196 /** Finish resizing notes when the user releases the mouse button.
2197  *  Parameters the same as for \a update_resizing().
2198  */
2199 void
2200 MidiRegionView::commit_resizing (ArdourCanvas::CanvasNote* primary, bool at_front, double delta_x, bool relative)
2201 {
2202         start_diff_command(_("resize notes"));
2203
2204         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
2205                 CanvasNote*  canvas_note = (*i)->canvas_note;
2206                 SimpleRect*  resize_rect = (*i)->resize_rect;
2207                 double current_x;
2208
2209                 if (at_front) {
2210                         if (relative) {
2211                                 current_x = canvas_note->x1() + delta_x;
2212                         } else {
2213                                 current_x = primary->x1() + delta_x;
2214                         }
2215                 } else {
2216                         if (relative) {
2217                                 current_x = canvas_note->x2() + delta_x;
2218                         } else {
2219                                 current_x = primary->x2() + delta_x;
2220                         }
2221                 }
2222
2223                 current_x = snap_pixel_to_frame (current_x);
2224                 current_x = frames_to_beats (current_x);
2225
2226                 if (at_front && current_x < canvas_note->note()->end_time()) {
2227                         diff_add_change (canvas_note, MidiModel::DiffCommand::StartTime, current_x);
2228
2229                         double len = canvas_note->note()->time() - current_x;
2230                         len += canvas_note->note()->length();
2231
2232                         if (len > 0) {
2233                                 /* XXX convert to beats */
2234                                 diff_add_change (canvas_note, MidiModel::DiffCommand::Length, len);
2235                         }
2236                 }
2237
2238                 if (!at_front) {
2239                         double len = current_x - canvas_note->note()->time();
2240
2241                         if (len > 0) {
2242                                 /* XXX convert to beats */
2243                                 diff_add_change (canvas_note, MidiModel::DiffCommand::Length, len);
2244                         }
2245                 }
2246
2247                 delete resize_rect;
2248                 delete (*i);
2249         }
2250
2251         _resize_data.clear();
2252         apply_diff();
2253 }
2254
2255 void
2256 MidiRegionView::change_note_channel (CanvasNoteEvent* event, int8_t channel)
2257 {
2258         diff_add_change (event, MidiModel::DiffCommand::Channel, (uint8_t) channel);
2259 }
2260
2261 void
2262 MidiRegionView::change_note_velocity(CanvasNoteEvent* event, int8_t velocity, bool relative)
2263 {
2264         uint8_t new_velocity;
2265
2266         if (relative) {
2267                 new_velocity = event->note()->velocity() + velocity;
2268                 clamp_to_0_127(new_velocity);
2269         } else {
2270                 new_velocity = velocity;
2271         }
2272
2273         event->set_selected (event->selected()); // change color 
2274         
2275         diff_add_change (event, MidiModel::DiffCommand::Velocity, new_velocity);
2276 }
2277
2278 void
2279 MidiRegionView::change_note_note (CanvasNoteEvent* event, int8_t note, bool relative)
2280 {
2281         uint8_t new_note;
2282
2283         if (relative) {
2284                 new_note = event->note()->note() + note;
2285         } else {
2286                 new_note = note;
2287         }
2288
2289         clamp_to_0_127 (new_note);
2290         diff_add_change (event, MidiModel::DiffCommand::NoteNumber, new_note);
2291 }
2292
2293 void
2294 MidiRegionView::trim_note (CanvasNoteEvent* event, Evoral::MusicalTime front_delta, Evoral::MusicalTime end_delta)
2295 {
2296         bool change_start = false;
2297         bool change_length = false;
2298         Evoral::MusicalTime new_start = 0;
2299         Evoral::MusicalTime new_length = 0;
2300
2301         /* NOTE: the semantics of the two delta arguments are slightly subtle:
2302
2303            front_delta: if positive - move the start of the note later in time (shortening it)
2304                         if negative - move the start of the note earlier in time (lengthening it)
2305
2306            end_delta:   if positive - move the end of the note later in time (lengthening it)
2307                         if negative - move the end of the note earlier in time (shortening it)
2308          */
2309
2310         if (front_delta) {
2311                 if (front_delta < 0) {
2312
2313                         if (event->note()->time() < -front_delta) {
2314                                 new_start = 0;
2315                         } else {
2316                                 new_start = event->note()->time() + front_delta; // moves earlier
2317                         }
2318
2319                         /* start moved toward zero, so move the end point out to where it used to be.
2320                            Note that front_delta is negative, so this increases the length.
2321                         */
2322
2323                         new_length = event->note()->length() - front_delta;
2324                         change_start = true;
2325                         change_length = true;
2326
2327                 } else {
2328
2329                         Evoral::MusicalTime new_pos = event->note()->time() + front_delta;
2330
2331                         if (new_pos < event->note()->end_time()) {
2332                                 new_start = event->note()->time() + front_delta;
2333                                 /* start moved toward the end, so move the end point back to where it used to be */
2334                                 new_length = event->note()->length() - front_delta;
2335                                 change_start = true;
2336                                 change_length = true;
2337                         }
2338                 }
2339
2340         }
2341
2342         if (end_delta) {
2343                 bool can_change = true;
2344                 if (end_delta < 0) {
2345                         if (event->note()->length() < -end_delta) {
2346                                 can_change = false;
2347                         }
2348                 }
2349
2350                 if (can_change) {
2351                         new_length = event->note()->length() + end_delta;
2352                         change_length = true;
2353                 }
2354         }
2355
2356         if (change_start) {
2357                 diff_add_change (event, MidiModel::DiffCommand::StartTime, new_start);
2358         }
2359
2360         if (change_length) {
2361                 diff_add_change (event, MidiModel::DiffCommand::Length, new_length);
2362         }
2363 }
2364
2365 void
2366 MidiRegionView::change_note_time (CanvasNoteEvent* event, Evoral::MusicalTime delta, bool relative)
2367 {
2368         Evoral::MusicalTime new_time;
2369
2370         if (relative) {
2371                 if (delta < 0.0) {
2372                         if (event->note()->time() < -delta) {
2373                                 new_time = 0;
2374                         } else {
2375                                 new_time = event->note()->time() + delta;
2376                         }
2377                 } else {
2378                         new_time = event->note()->time() + delta;
2379                 }
2380         } else {
2381                 new_time = delta;
2382         }
2383
2384         diff_add_change (event, MidiModel::DiffCommand::StartTime, new_time);
2385 }
2386
2387 void
2388 MidiRegionView::change_note_length (CanvasNoteEvent* event, Evoral::MusicalTime t)
2389 {
2390         diff_add_change (event, MidiModel::DiffCommand::Length, t);
2391 }
2392
2393 void
2394 MidiRegionView::change_velocities (bool up, bool fine, bool allow_smush)
2395 {
2396         int8_t delta;
2397
2398         if (_selection.empty()) {
2399                 return;
2400         }
2401
2402         if (fine) {
2403                 delta = 1;
2404         } else {
2405                 delta = 10;
2406         }
2407
2408         if (!up) {
2409                 delta = -delta;
2410         }
2411
2412         if (!allow_smush) {
2413                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2414                         if ((*i)->note()->velocity() + delta == 0 || (*i)->note()->velocity() + delta == 127) {
2415                                 return;
2416                         }
2417                 }
2418         }
2419
2420         start_diff_command(_("change velocities"));
2421
2422         for (Selection::iterator i = _selection.begin(); i != _selection.end();) {
2423                 Selection::iterator next = i;
2424                 ++next;
2425                 change_note_velocity (*i, delta, true);
2426                 i = next;
2427         }
2428
2429         apply_diff();
2430         
2431         if (!_selection.empty()) {
2432                 char buf[24];
2433                 snprintf (buf, sizeof (buf), "Vel %d", 
2434                           (int) (*_selection.begin())->note()->velocity());
2435                 trackview.editor().show_verbose_canvas_cursor_with (buf);
2436         }
2437 }
2438
2439
2440 void
2441 MidiRegionView::transpose (bool up, bool fine, bool allow_smush)
2442 {
2443         if (_selection.empty()) {
2444                 return;
2445         }
2446
2447         int8_t delta;
2448
2449         if (fine) {
2450                 delta = 1;
2451         } else {
2452                 delta = 12;
2453         }
2454
2455         if (!up) {
2456                 delta = -delta;
2457         }
2458
2459         if (!allow_smush) {
2460                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2461                         if (!up) {
2462                                 if ((int8_t) (*i)->note()->note() + delta <= 0) {
2463                                         return;
2464                                 }
2465                         } else {
2466                                 if ((int8_t) (*i)->note()->note() + delta > 127) {
2467                                         return;
2468                                 }
2469                         }
2470                 }
2471         }
2472
2473         start_diff_command (_("transpose"));
2474
2475         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
2476                 Selection::iterator next = i;
2477                 ++next;
2478                 change_note_note (*i, delta, true);
2479                 i = next;
2480         }
2481
2482         apply_diff ();
2483 }
2484
2485 void
2486 MidiRegionView::change_note_lengths (bool fine, bool shorter, Evoral::MusicalTime delta, bool start, bool end)
2487 {
2488         if (delta == 0.0) {
2489                 if (fine) {
2490                         delta = 1.0/128.0;
2491                 } else {
2492                         /* grab the current grid distance */
2493                         bool success;
2494                         delta = trackview.editor().get_grid_type_as_beats (success, _region->position());
2495                         if (!success) {
2496                                 /* XXX cannot get grid type as beats ... should always be possible ... FIX ME */
2497                                 cerr << "Grid type not available as beats - TO BE FIXED\n";
2498                                 return;
2499                         }
2500                 }
2501         }
2502
2503         if (shorter) {
2504                 delta = -delta;
2505         }
2506
2507         start_diff_command (_("change note lengths"));
2508
2509         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
2510                 Selection::iterator next = i;
2511                 ++next;
2512
2513                 /* note the negation of the delta for start */
2514
2515                 trim_note (*i, (start ? -delta : 0), (end ? delta : 0));
2516                 i = next;
2517         }
2518
2519         apply_diff ();
2520
2521 }
2522
2523 void
2524 MidiRegionView::nudge_notes (bool forward)
2525 {
2526         if (_selection.empty()) {
2527                 return;
2528         }
2529
2530         /* pick a note as the point along the timeline to get the nudge distance.
2531            its not necessarily the earliest note, so we may want to pull the notes out
2532            into a vector and sort before using the first one.
2533         */
2534
2535         nframes64_t ref_point = _region->position() + beats_to_frames ((*(_selection.begin()))->note()->time());
2536         nframes64_t unused;
2537         nframes64_t distance;
2538
2539         if (trackview.editor().snap_mode() == Editing::SnapOff) {
2540                 
2541                 /* grid is off - use nudge distance */
2542
2543                 distance = trackview.editor().get_nudge_distance (ref_point, unused);
2544
2545         } else {
2546
2547                 /* use grid */
2548
2549                 nframes64_t next_pos = ref_point;
2550
2551                 if (forward) {
2552                         /* XXX need check on max_frames, but that needs max_frames64 or something */
2553                         next_pos += 1;
2554                 } else {
2555                         if (next_pos == 0) {
2556                                 return;
2557                         }
2558                         next_pos -= 1;
2559                 }
2560
2561                 trackview.editor().snap_to (next_pos, (forward ? 1 : -1), false);
2562                 distance = ref_point - next_pos;
2563         }
2564
2565         if (distance == 0) {
2566                 return;
2567         }
2568
2569         Evoral::MusicalTime delta = frames_to_beats (fabs (distance));
2570
2571         if (!forward) {
2572                 delta = -delta;
2573         }
2574
2575         start_diff_command (_("nudge"));
2576
2577         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
2578                 Selection::iterator next = i;
2579                 ++next;
2580                 change_note_time (*i, delta, true);
2581                 i = next;
2582         }
2583
2584         apply_diff ();
2585 }
2586
2587 void
2588 MidiRegionView::change_channel(uint8_t channel)
2589 {
2590         start_diff_command(_("change channel"));
2591         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2592                 diff_add_change (*i, MidiModel::DiffCommand::Channel, channel);
2593         }
2594
2595         apply_diff();
2596 }
2597
2598
2599 void
2600 MidiRegionView::note_entered(ArdourCanvas::CanvasNoteEvent* ev)
2601 {
2602         if (_mouse_state == SelectTouchDragging) {
2603                 note_selected (ev, true);
2604         }
2605
2606         show_verbose_canvas_cursor (ev->note ());
2607 }
2608
2609 void
2610 MidiRegionView::note_left (ArdourCanvas::CanvasNoteEvent* note)
2611 {
2612         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2613                 (*i)->hide_velocity ();
2614         }
2615
2616         trackview.editor().hide_verbose_canvas_cursor ();
2617 }
2618
2619 void
2620 MidiRegionView::switch_source(boost::shared_ptr<Source> src)
2621 {
2622         boost::shared_ptr<MidiSource> msrc = boost::dynamic_pointer_cast<MidiSource>(src);
2623         if (msrc)
2624                 display_model(msrc->model());
2625 }
2626
2627 void
2628 MidiRegionView::set_frame_color()
2629 {
2630         if (frame) {
2631                 if (_selected && should_show_selection) {
2632                         frame->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectedFrameBase.get();
2633                 } else {
2634                         frame->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiFrameBase.get();
2635                 }
2636         }
2637 }
2638
2639 void
2640 MidiRegionView::midi_channel_mode_changed(ChannelMode mode, uint16_t mask)
2641 {
2642         switch (mode) {
2643         case AllChannels:
2644         case FilterChannels:
2645                 _force_channel = -1;
2646                 break;
2647         case ForceChannel:
2648                 _force_channel = mask;
2649                 mask = 0xFFFF; // Show all notes as active (below)
2650         };
2651
2652         // Update notes for selection
2653         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2654                 (*i)->on_channel_selection_change(mask);
2655         }
2656
2657         _last_channel_selection = mask;
2658 }
2659
2660 void
2661 MidiRegionView::midi_patch_settings_changed(std::string model, std::string custom_device_mode)
2662 {
2663         _model_name         = model;
2664         _custom_device_mode = custom_device_mode;
2665         redisplay_model();
2666 }
2667
2668 void
2669 MidiRegionView::cut_copy_clear (Editing::CutCopyOp op)
2670 {
2671         if (_selection.empty()) {
2672                 return;
2673         }
2674
2675         PublicEditor& editor (trackview.editor());
2676
2677         switch (op) {
2678         case Cut:
2679         case Copy:
2680                 editor.get_cut_buffer().add (selection_as_cut_buffer());
2681                 break;
2682         default:
2683                 break;
2684         }
2685
2686         if (op != Copy) {
2687
2688                 start_diff_command();
2689                 
2690                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2691                         switch (op) {
2692                         case Copy:
2693                                 break;
2694                         case Cut:
2695                         case Clear:
2696                                 diff_remove_note (*i);
2697                                 break;
2698                         }
2699                 }
2700                 
2701                 apply_diff();
2702         }
2703 }
2704
2705 MidiCutBuffer*
2706 MidiRegionView::selection_as_cut_buffer () const
2707 {
2708         Notes notes;
2709
2710         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2711                 NoteType* n = (*i)->note().get();
2712                 notes.insert (boost::shared_ptr<NoteType> (new NoteType (*n)));
2713         }
2714
2715         MidiCutBuffer* cb = new MidiCutBuffer (trackview.session());
2716         cb->set (notes);
2717
2718         return cb;
2719 }
2720
2721 void
2722 MidiRegionView::paste (nframes64_t pos, float times, const MidiCutBuffer& mcb)
2723 {
2724         if (mcb.empty()) {
2725                 return;
2726         }
2727
2728         start_diff_command (_("paste"));
2729
2730         Evoral::MusicalTime beat_delta;
2731         Evoral::MusicalTime paste_pos_beats;
2732         Evoral::MusicalTime duration;
2733         Evoral::MusicalTime end_point = 0;
2734
2735         duration = (*mcb.notes().rbegin())->end_time() - (*mcb.notes().begin())->time();
2736         paste_pos_beats = frames_to_beats (pos - _region->position());
2737         beat_delta = (*mcb.notes().begin())->time() - paste_pos_beats;
2738         paste_pos_beats = 0;
2739
2740         _selection.clear ();
2741
2742         for (int n = 0; n < (int) times; ++n) {
2743
2744                 for (Notes::const_iterator i = mcb.notes().begin(); i != mcb.notes().end(); ++i) {
2745
2746                         boost::shared_ptr<NoteType> copied_note (new NoteType (*((*i).get())));
2747                         copied_note->set_time (paste_pos_beats + copied_note->time() - beat_delta);
2748
2749                         /* make all newly added notes selected */
2750
2751                         diff_add_note (copied_note, true);
2752                         end_point = copied_note->end_time();
2753                 }
2754
2755                 paste_pos_beats += duration;
2756         }
2757
2758         /* if we pasted past the current end of the region, extend the region */
2759
2760         nframes64_t end_frame = _region->position() + beats_to_frames (end_point);
2761         nframes64_t region_end = _region->position() + _region->length() - 1;
2762
2763         if (end_frame > region_end) {
2764
2765                 trackview.session()->begin_reversible_command (_("paste"));
2766
2767                 _region->clear_history ();
2768                 _region->set_length (end_frame, this);
2769                 trackview.session()->add_command (new StatefulDiffCommand (_region));
2770         }
2771
2772         apply_diff ();
2773 }
2774
2775 struct EventNoteTimeEarlyFirstComparator {
2776     bool operator() (CanvasNoteEvent* a, CanvasNoteEvent* b) {
2777             return a->note()->time() < b->note()->time();
2778     }
2779 };
2780
2781 void
2782 MidiRegionView::time_sort_events ()
2783 {
2784         if (!_sort_needed) {
2785                 return;
2786         }
2787
2788         EventNoteTimeEarlyFirstComparator cmp;
2789         _events.sort (cmp);
2790
2791         _sort_needed = false;
2792 }
2793
2794 void
2795 MidiRegionView::goto_next_note ()
2796 {
2797         // nframes64_t pos = -1;
2798         bool use_next = false;
2799
2800         if (_events.back()->selected()) {
2801                 return;
2802         }
2803
2804         time_sort_events ();
2805
2806         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2807                 if ((*i)->selected()) {
2808                         use_next = true;
2809                         continue;
2810                 } else if (use_next) {
2811                         unique_select (*i);
2812                         // pos = _region->position() + beats_to_frames ((*i)->note()->time());
2813                         return;
2814                 }
2815         }
2816
2817         /* use the first one */
2818
2819         unique_select (_events.front());
2820
2821 }
2822
2823 void
2824 MidiRegionView::goto_previous_note ()
2825 {
2826         // nframes64_t pos = -1;
2827         bool use_next = false;
2828
2829         if (_events.front()->selected()) {
2830                 return;
2831         }
2832
2833         time_sort_events ();
2834
2835         for (Events::reverse_iterator i = _events.rbegin(); i != _events.rend(); ++i) {
2836                 if ((*i)->selected()) {
2837                         use_next = true;
2838                         continue;
2839                 } else if (use_next) {
2840                         unique_select (*i);
2841                         // pos = _region->position() + beats_to_frames ((*i)->note()->time());
2842                         return;
2843                 }
2844         }
2845
2846         /* use the last one */
2847
2848         unique_select (*(_events.rbegin()));
2849 }
2850
2851 void
2852 MidiRegionView::selection_as_notelist (Notes& selected, bool allow_all_if_none_selected)
2853 {
2854         bool had_selected = false;
2855
2856         time_sort_events ();
2857
2858         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2859                 if ((*i)->selected()) {
2860                         selected.insert ((*i)->note());
2861                         had_selected = true;
2862                 }
2863         }
2864         
2865         if (allow_all_if_none_selected && !had_selected) {
2866                 for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2867                         selected.insert ((*i)->note());
2868                 }
2869         }
2870 }
2871
2872 void
2873 MidiRegionView::update_ghost_note (double x, double y)
2874 {
2875         _last_ghost_x = x;
2876         _last_ghost_y = y;
2877         
2878         group->w2i (x, y);
2879         nframes64_t f = trackview.editor().pixel_to_frame (x) + _region->position ();
2880         trackview.editor().snap_to (f);
2881         f -= _region->position ();
2882
2883         bool success;
2884         Evoral::MusicalTime beats = trackview.editor().get_grid_type_as_beats (success, f);
2885         if (!success) {
2886                 beats = 1;
2887         }
2888         
2889         double length = frames_to_beats (snap_frame_to_frame (f + beats_to_frames (beats)) - f);
2890         
2891         _ghost_note->note()->set_time (frames_to_beats (f + _region->start()));
2892         _ghost_note->note()->set_length (length);
2893         _ghost_note->note()->set_note (midi_stream_view()->y_to_note (y));
2894
2895         update_note (_ghost_note);
2896
2897         show_verbose_canvas_cursor (_ghost_note->note ());
2898 }
2899
2900 void
2901 MidiRegionView::create_ghost_note (double x, double y)
2902 {
2903         delete _ghost_note;
2904         _ghost_note = 0;
2905
2906         boost::shared_ptr<NoteType> g (new NoteType);
2907         _ghost_note = new NoEventCanvasNote (*this, *group, g);
2908         update_ghost_note (x, y);
2909         _ghost_note->show ();
2910
2911         _last_ghost_x = x;
2912         _last_ghost_y = y;
2913
2914         show_verbose_canvas_cursor (_ghost_note->note ());
2915 }
2916
2917 void
2918 MidiRegionView::snap_changed ()
2919 {
2920         if (!_ghost_note) {
2921                 return;
2922         }
2923         
2924         create_ghost_note (_last_ghost_x, _last_ghost_y);
2925 }
2926
2927 void
2928 MidiRegionView::show_verbose_canvas_cursor (boost::shared_ptr<NoteType> n) const
2929 {
2930         char buf[24];
2931         snprintf (buf, sizeof (buf), "%s (%d)\nVel %d", 
2932                   Evoral::midi_note_name (n->note()).c_str(), 
2933                   (int) n->note (),
2934                   (int) n->velocity());
2935         trackview.editor().show_verbose_canvas_cursor_with (buf);
2936 }
2937
2938 void
2939 MidiRegionView::drop_down_keys ()
2940 {
2941         _mouse_state = None;
2942 }
2943
2944 void
2945 MidiRegionView::maybe_select_by_position (GdkEventButton* ev, double x, double y)
2946 {
2947         double note = midi_stream_view()->y_to_note(y);
2948         Events e;
2949         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
2950         
2951         cerr << "Selecting by position\n";
2952
2953         uint16_t chn_mask = mtv->channel_selector().get_selected_channels();
2954
2955         if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
2956                 get_events (e, Evoral::Sequence<Evoral::MusicalTime>::PitchGreaterThanOrEqual, (uint8_t) floor (note), chn_mask);
2957         } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
2958                 get_events (e, Evoral::Sequence<Evoral::MusicalTime>::PitchLessThanOrEqual, (uint8_t) floor (note), chn_mask);
2959         } else {
2960                 return;
2961         }
2962
2963         bool add_mrv_selection = false;
2964
2965         if (_selection.empty()) {
2966                 add_mrv_selection = true;
2967         }
2968
2969         for (Events::iterator i = e.begin(); i != e.end(); ++i) {
2970                 if (_selection.insert (*i).second) {
2971                         (*i)->set_selected (true);
2972                 }
2973         }
2974
2975         if (add_mrv_selection) {
2976                 PublicEditor& editor (trackview.editor());
2977                 editor.get_selection().add (this);
2978         }
2979 }                
2980
2981 void
2982 MidiRegionView::color_handler ()
2983 {
2984         RegionView::color_handler ();
2985
2986         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2987                 (*i)->set_selected ((*i)->selected()); // will change color
2988         }
2989
2990         /* XXX probably more to do here */
2991 }
2992
2993 void
2994 MidiRegionView::enable_display (bool yn)
2995 {
2996         RegionView::enable_display (yn);
2997         if (yn) {
2998                 redisplay_model ();
2999         }
3000 }
3001
3002 void
3003 MidiRegionView::show_step_edit_cursor (Evoral::MusicalTime pos)
3004 {
3005         if (_step_edit_cursor == 0) {
3006                 ArdourCanvas::Group* const group = (ArdourCanvas::Group*)get_canvas_group();
3007
3008                 _step_edit_cursor = new ArdourCanvas::SimpleRect (*group);
3009                 _step_edit_cursor->property_y1() = 0;
3010                 _step_edit_cursor->property_y2() = midi_stream_view()->contents_height();
3011                 _step_edit_cursor->property_fill_color_rgba() = RGBA_TO_UINT (45,0,0,90);
3012                 _step_edit_cursor->property_outline_color_rgba() = RGBA_TO_UINT (85,0,0,90);
3013         }
3014
3015         move_step_edit_cursor (pos);
3016         _step_edit_cursor->show ();
3017 }
3018
3019 void
3020 MidiRegionView::move_step_edit_cursor (Evoral::MusicalTime pos)
3021 {
3022         _step_edit_cursor_position = pos;
3023
3024         if (_step_edit_cursor) {
3025                 double pixel = trackview.editor().frame_to_pixel (beats_to_frames (pos));
3026                 _step_edit_cursor->property_x1() = pixel;
3027                 set_step_edit_cursor_width (_step_edit_cursor_width);
3028         }
3029 }
3030
3031 void
3032 MidiRegionView::hide_step_edit_cursor ()
3033 {
3034         if (_step_edit_cursor) {
3035                 _step_edit_cursor->hide ();
3036         }
3037 }
3038
3039 void
3040 MidiRegionView::set_step_edit_cursor_width (Evoral::MusicalTime beats)
3041 {
3042         _step_edit_cursor_width = beats;
3043
3044         if (_step_edit_cursor) {
3045                 _step_edit_cursor->property_x2() = _step_edit_cursor->property_x1() + trackview.editor().frame_to_pixel (beats_to_frames (beats));
3046         }
3047 }
3048