Fix display of MIDI notes/regions while recording.
[ardour.git] / gtk2_ardour / midi_region_view.cc
1 /*
2     Copyright (C) 2001-2011 Paul Davis
3     Author: David 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 <algorithm>
22 #include <ostream>
23
24 #include <gtkmm.h>
25
26 #include "gtkmm2ext/gtk_ui.h"
27
28 #include <sigc++/signal.h>
29
30 #include "midi++/midnam_patch.h"
31
32 #include "pbd/memento_command.h"
33 #include "pbd/stateful_diff_command.h"
34
35 #include "ardour/midi_model.h"
36 #include "ardour/midi_region.h"
37 #include "ardour/midi_source.h"
38 #include "ardour/midi_track.h"
39 #include "ardour/operations.h"
40 #include "ardour/session.h"
41
42 #include "evoral/Parameter.hpp"
43 #include "evoral/MIDIEvent.hpp"
44 #include "evoral/Control.hpp"
45 #include "evoral/midi_util.h"
46
47 #include "canvas/debug.h"
48 #include "canvas/text.h"
49
50 #include "automation_region_view.h"
51 #include "automation_time_axis.h"
52 #include "control_point.h"
53 #include "debug.h"
54 #include "editor.h"
55 #include "editor_drag.h"
56 #include "ghostregion.h"
57 #include "gui_thread.h"
58 #include "item_counts.h"
59 #include "keyboard.h"
60 #include "midi_channel_dialog.h"
61 #include "midi_cut_buffer.h"
62 #include "midi_list_editor.h"
63 #include "midi_region_view.h"
64 #include "midi_streamview.h"
65 #include "midi_time_axis.h"
66 #include "midi_util.h"
67 #include "midi_velocity_dialog.h"
68 #include "mouse_cursors.h"
69 #include "note_player.h"
70 #include "paste_context.h"
71 #include "public_editor.h"
72 #include "route_time_axis.h"
73 #include "rgb_macros.h"
74 #include "selection.h"
75 #include "streamview.h"
76 #include "patch_change_dialog.h"
77 #include "verbose_cursor.h"
78 #include "ardour_ui.h"
79 #include "note.h"
80 #include "hit.h"
81 #include "patch_change.h"
82 #include "sys_ex.h"
83
84 #include "i18n.h"
85
86 using namespace ARDOUR;
87 using namespace PBD;
88 using namespace Editing;
89 using namespace std;
90 using Gtkmm2ext::Keyboard;
91
92 PBD::Signal1<void, MidiRegionView *> MidiRegionView::SelectionCleared;
93
94 #define MIDI_BP_ZERO ((Config->get_first_midi_bank_is_zero())?0:1)
95
96 MidiRegionView::MidiRegionView (ArdourCanvas::Container*      parent,
97                                 RouteTimeAxisView&            tv,
98                                 boost::shared_ptr<MidiRegion> r,
99                                 double                        spu,
100                                 uint32_t                      basic_color)
101         : RegionView (parent, tv, r, spu, basic_color)
102         , _current_range_min(0)
103         , _current_range_max(0)
104         , _region_relative_time_converter(r->session().tempo_map(), r->position())
105         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
106         , _active_notes(0)
107         , _note_group (new ArdourCanvas::Container (group))
108         , _note_diff_command (0)
109         , _ghost_note(0)
110         , _step_edit_cursor (0)
111         , _step_edit_cursor_width (1.0)
112         , _step_edit_cursor_position (0.0)
113         , _channel_selection_scoped_note (0)
114         , _temporary_note_group (0)
115         , _mouse_state(None)
116         , _pressed_button(0)
117         , _sort_needed (true)
118         , _optimization_iterator (_events.end())
119         , _list_editor (0)
120         , _no_sound_notes (false)
121         , _last_event_x (0)
122         , _last_event_y (0)
123         , _grabbed_keyboard (false)
124         , _entered (false)
125         , pre_enter_cursor (0)
126         , pre_press_cursor (0)
127         , pre_note_enter_cursor (0)
128         , _note_player (0)
129 {
130         CANVAS_DEBUG_NAME (_note_group, string_compose ("note group for %1", get_item_name()));
131         _note_group->raise_to_top();
132         PublicEditor::DropDownKeys.connect (sigc::mem_fun (*this, &MidiRegionView::drop_down_keys));
133
134         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&MidiRegionView::parameter_changed, this, _1), gui_context());
135         connect_to_diskstream ();
136
137         SelectionCleared.connect (_selection_cleared_connection, invalidator (*this), boost::bind (&MidiRegionView::selection_cleared, this, _1), gui_context ());
138 }
139
140 MidiRegionView::MidiRegionView (ArdourCanvas::Container*      parent,
141                                 RouteTimeAxisView&            tv,
142                                 boost::shared_ptr<MidiRegion> r,
143                                 double                        spu,
144                                 uint32_t                      basic_color,
145                                 bool                          recording,
146                                 TimeAxisViewItem::Visibility  visibility)
147         : RegionView (parent, tv, r, spu, basic_color, recording, visibility)
148         , _current_range_min(0)
149         , _current_range_max(0)
150         , _region_relative_time_converter(r->session().tempo_map(), r->position())
151         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
152         , _active_notes(0)
153         , _note_group (new ArdourCanvas::Container (parent))
154         , _note_diff_command (0)
155         , _ghost_note(0)
156         , _step_edit_cursor (0)
157         , _step_edit_cursor_width (1.0)
158         , _step_edit_cursor_position (0.0)
159         , _channel_selection_scoped_note (0)
160         , _temporary_note_group (0)
161         , _mouse_state(None)
162         , _pressed_button(0)
163         , _sort_needed (true)
164         , _optimization_iterator (_events.end())
165         , _list_editor (0)
166         , _no_sound_notes (false)
167         , _last_event_x (0)
168         , _last_event_y (0)
169         , _grabbed_keyboard (false)
170         , _entered (false)
171         , pre_enter_cursor (0)
172         , pre_press_cursor (0)
173         , pre_note_enter_cursor (0)
174         , _note_player (0)
175 {
176         CANVAS_DEBUG_NAME (_note_group, string_compose ("note group for %1", get_item_name()));
177         _note_group->raise_to_top();
178
179         PublicEditor::DropDownKeys.connect (sigc::mem_fun (*this, &MidiRegionView::drop_down_keys));
180
181         connect_to_diskstream ();
182
183         SelectionCleared.connect (_selection_cleared_connection, invalidator (*this), boost::bind (&MidiRegionView::selection_cleared, this, _1), gui_context ());
184 }
185
186 void
187 MidiRegionView::parameter_changed (std::string const & p)
188 {
189         if (p == "display-first-midi-bank-as-zero") {
190                 if (_enable_display) {
191                         redisplay_model();
192                 }
193         }
194 }
195
196 MidiRegionView::MidiRegionView (const MidiRegionView& other)
197         : sigc::trackable(other)
198         , RegionView (other)
199         , _current_range_min(0)
200         , _current_range_max(0)
201         , _region_relative_time_converter(other.region_relative_time_converter())
202         , _source_relative_time_converter(other.source_relative_time_converter())
203         , _active_notes(0)
204         , _note_group (new ArdourCanvas::Container (get_canvas_group()))
205         , _note_diff_command (0)
206         , _ghost_note(0)
207         , _step_edit_cursor (0)
208         , _step_edit_cursor_width (1.0)
209         , _step_edit_cursor_position (0.0)
210         , _channel_selection_scoped_note (0)
211         , _temporary_note_group (0)
212         , _mouse_state(None)
213         , _pressed_button(0)
214         , _sort_needed (true)
215         , _optimization_iterator (_events.end())
216         , _list_editor (0)
217         , _no_sound_notes (false)
218         , _last_event_x (0)
219         , _last_event_y (0)
220         , _grabbed_keyboard (false)
221         , _entered (false)
222         , pre_enter_cursor (0)
223         , pre_press_cursor (0)
224         , pre_note_enter_cursor (0)
225         , _note_player (0)
226 {
227         init (false);
228 }
229
230 MidiRegionView::MidiRegionView (const MidiRegionView& other, boost::shared_ptr<MidiRegion> region)
231         : RegionView (other, boost::shared_ptr<Region> (region))
232         , _current_range_min(0)
233         , _current_range_max(0)
234         , _region_relative_time_converter(other.region_relative_time_converter())
235         , _source_relative_time_converter(other.source_relative_time_converter())
236         , _active_notes(0)
237         , _note_group (new ArdourCanvas::Container (get_canvas_group()))
238         , _note_diff_command (0)
239         , _ghost_note(0)
240         , _step_edit_cursor (0)
241         , _step_edit_cursor_width (1.0)
242         , _step_edit_cursor_position (0.0)
243         , _channel_selection_scoped_note (0)
244         , _temporary_note_group (0)
245         , _mouse_state(None)
246         , _pressed_button(0)
247         , _sort_needed (true)
248         , _optimization_iterator (_events.end())
249         , _list_editor (0)
250         , _no_sound_notes (false)
251         , _last_event_x (0)
252         , _last_event_y (0)
253         , _grabbed_keyboard (false)
254         , _entered (false)
255         , pre_enter_cursor (0)
256         , pre_press_cursor (0)
257         , pre_note_enter_cursor (0)
258         , _note_player (0)
259 {
260         init (true);
261 }
262
263 void
264 MidiRegionView::init (bool wfd)
265 {
266         PublicEditor::DropDownKeys.connect (sigc::mem_fun (*this, &MidiRegionView::drop_down_keys));
267
268         NoteBase::NoteBaseDeleted.connect (note_delete_connection, MISSING_INVALIDATOR,
269                                            boost::bind (&MidiRegionView::maybe_remove_deleted_note_from_selection, this, _1),
270                                            gui_context());
271         
272         if (wfd) {
273                 Glib::Threads::Mutex::Lock lm(midi_region()->midi_source(0)->mutex());
274                 midi_region()->midi_source(0)->load_model(lm);
275         }
276
277         _model = midi_region()->midi_source(0)->model();
278         _enable_display = false;
279         _fill_color_name = "midi frame base";
280
281         RegionView::init (false);
282
283         set_height (trackview.current_height());
284
285         region_muted ();
286         region_sync_changed ();
287         region_resized (ARDOUR::bounds_change);
288         region_locked ();
289
290         set_colors ();
291
292         _enable_display = true;
293         if (_model) {
294                 if (wfd) {
295                         display_model (_model);
296                 }
297         }
298
299         reset_width_dependent_items (_pixel_width);
300
301         group->raise_to_top();
302
303         midi_view()->midi_track()->PlaybackChannelModeChanged.connect (_channel_mode_changed_connection, invalidator (*this),
304                                                                        boost::bind (&MidiRegionView::midi_channel_mode_changed, this),
305                                                                        gui_context ());
306
307         instrument_info().Changed.connect (_instrument_changed_connection, invalidator (*this),
308                                            boost::bind (&MidiRegionView::instrument_settings_changed, this), gui_context());
309
310         trackview.editor().SnapChanged.connect(snap_changed_connection, invalidator(*this),
311                                                boost::bind (&MidiRegionView::snap_changed, this),
312                                                gui_context());
313
314         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&MidiRegionView::parameter_changed, this, _1), gui_context());
315         connect_to_diskstream ();
316
317         SelectionCleared.connect (_selection_cleared_connection, invalidator (*this), boost::bind (&MidiRegionView::selection_cleared, this, _1), gui_context ());
318 }
319
320 InstrumentInfo&
321 MidiRegionView::instrument_info () const
322 {
323         RouteUI* route_ui = dynamic_cast<RouteUI*> (&trackview);
324         return route_ui->route()->instrument_info();
325 }
326
327 const boost::shared_ptr<ARDOUR::MidiRegion>
328 MidiRegionView::midi_region() const
329 {
330         return boost::dynamic_pointer_cast<ARDOUR::MidiRegion>(_region);
331 }
332
333 void
334 MidiRegionView::connect_to_diskstream ()
335 {
336         midi_view()->midi_track()->DataRecorded.connect(
337                 *this, invalidator(*this),
338                 boost::bind (&MidiRegionView::data_recorded, this, _1),
339                 gui_context());
340 }
341
342 bool
343 MidiRegionView::canvas_group_event(GdkEvent* ev)
344 {
345         if (in_destructor || _recregion) {
346                 return false;
347         }
348
349         if (!trackview.editor().internal_editing()) {
350                 // not in internal edit mode, so just act like a normal region
351                 return RegionView::canvas_group_event (ev);
352         }
353
354         const MouseMode m = trackview.editor().current_mouse_mode();
355         bool r;
356
357         switch (ev->type) {
358         case GDK_ENTER_NOTIFY:
359                 _last_event_x = ev->crossing.x;
360                 _last_event_y = ev->crossing.y;
361                 enter_notify(&ev->crossing);
362                 // set entered_regionview (among other things)
363                 return RegionView::canvas_group_event (ev);
364
365         case GDK_LEAVE_NOTIFY:
366                 _last_event_x = ev->crossing.x;
367                 _last_event_y = ev->crossing.y;
368                 leave_notify(&ev->crossing);
369                 // reset entered_regionview (among other things)
370                 return RegionView::canvas_group_event (ev);
371
372         case GDK_2BUTTON_PRESS:
373                 // cannot use double-click to exit internal mode if single-click is being used
374                 if ((m != MouseDraw) &&
375                     (m != MouseObject ||
376                      !Keyboard::modifier_state_contains (ev->button.state, Keyboard::insert_note_modifier()))) {
377                         return trackview.editor().toggle_internal_editing_from_double_click (ev);
378                 }
379                 break;
380
381         case GDK_SCROLL:
382                 if (scroll (&ev->scroll)) {
383                         return true;
384                 }
385                 break;
386
387         case GDK_KEY_PRESS:
388                 return key_press (&ev->key);
389
390         case GDK_KEY_RELEASE:
391                 return key_release (&ev->key);
392
393         case GDK_BUTTON_PRESS:
394                 return button_press (&ev->button);
395
396         case GDK_BUTTON_RELEASE:
397                 r = button_release (&ev->button);
398                 delete _note_player;
399                 _note_player = 0;
400                 return r;
401
402         case GDK_MOTION_NOTIFY:
403                 _last_event_x = ev->motion.x;
404                 _last_event_y = ev->motion.y;
405                 return motion (&ev->motion);
406
407         default:
408                 break;
409         }
410
411         return RegionView::canvas_group_event (ev);
412 }
413
414 bool
415 MidiRegionView::enter_notify (GdkEventCrossing* ev)
416 {
417         trackview.editor().MouseModeChanged.connect (
418                 _mouse_mode_connection, invalidator (*this), boost::bind (&MidiRegionView::mouse_mode_changed, this), gui_context ()
419                 );
420
421         enter_internal();
422
423         _entered = true;
424         return false;
425 }
426
427 bool
428 MidiRegionView::leave_notify (GdkEventCrossing*)
429 {
430         _mouse_mode_connection.disconnect ();
431
432         leave_internal();
433
434         _entered = false;
435         return false;
436 }
437
438 void
439 MidiRegionView::mouse_mode_changed ()
440 {
441         if (trackview.editor().internal_editing()) {
442                 // Switched in to internal editing mode while entered
443                 enter_internal();
444         } else {
445                 // Switched out of internal editing mode while entered
446                 leave_internal();
447         }
448 }
449
450 void
451 MidiRegionView::enter_internal()
452 {
453         if (trackview.editor().current_mouse_mode() == MouseDraw && _mouse_state != AddDragging) {
454                 // Show ghost note under pencil
455                 create_ghost_note(_last_event_x, _last_event_y);
456         }
457
458         if (!_selection.empty()) {
459                 // Grab keyboard for moving selected notes with arrow keys
460                 Keyboard::magic_widget_grab_focus();
461                 _grabbed_keyboard = true;
462         }
463 }
464
465 void
466 MidiRegionView::leave_internal()
467 {
468         trackview.editor().verbose_cursor()->hide ();
469         remove_ghost_note ();
470
471         if (_grabbed_keyboard) {
472                 Keyboard::magic_widget_drop_focus();
473                 _grabbed_keyboard = false;
474         }
475 }
476
477 bool
478 MidiRegionView::button_press (GdkEventButton* ev)
479 {
480         if (ev->button != 1) {
481                 return false;
482         }
483
484         Editor* editor = dynamic_cast<Editor *> (&trackview.editor());
485         MouseMode m = editor->current_mouse_mode();
486
487         if (m == MouseObject && Keyboard::modifier_state_contains (ev->state, Keyboard::insert_note_modifier())) {
488                 pre_press_cursor = editor->get_canvas_cursor ();
489                 editor->set_canvas_cursor (editor->cursors()->midi_pencil);
490         }
491
492         if (_mouse_state != SelectTouchDragging) {
493                 
494                 _pressed_button = ev->button;
495                 _mouse_state = Pressed;
496                 
497                 return true;
498         }
499
500         _pressed_button = ev->button;
501
502         return true;
503 }
504
505 bool
506 MidiRegionView::button_release (GdkEventButton* ev)
507 {
508         double event_x, event_y;
509
510         if (ev->button != 1) {
511                 return false;
512         }
513
514         event_x = ev->x;
515         event_y = ev->y;
516
517         group->canvas_to_item (event_x, event_y);
518         group->ungrab ();
519
520         PublicEditor& editor = trackview.editor ();
521
522         if (pre_press_cursor) {
523                 dynamic_cast<Editor*>(&editor)->set_canvas_cursor (pre_press_cursor, false);
524                 pre_press_cursor = 0;
525         }
526
527         switch (_mouse_state) {
528         case Pressed: // Clicked
529
530                 switch (editor.current_mouse_mode()) {
531                 case MouseRange:
532                         /* no motion occured - simple click */
533                         clear_selection ();
534                         break;
535
536                 case MouseObject:
537                 case MouseTimeFX:
538                         {
539                                 clear_selection();
540
541                                 if (Keyboard::is_insert_note_event(ev)) {
542
543                                         double event_x, event_y;
544
545                                         event_x = ev->x;
546                                         event_y = ev->y;
547                                         group->canvas_to_item (event_x, event_y);
548
549                                         Evoral::MusicalTime beats = get_grid_beats(editor.pixel_to_sample(event_x));
550
551                                         /* Shorten the length by 1 tick so that we can add a new note at the next
552                                            grid snap without it overlapping this one.
553                                         */
554                                         beats -= Evoral::MusicalTime::tick();
555
556                                         create_note_at (editor.pixel_to_sample (event_x), event_y, beats, true);
557                                 }
558
559                                 break;
560                         }
561                 case MouseDraw:
562                         {
563                                 Evoral::MusicalTime beats = get_grid_beats(editor.pixel_to_sample(event_x));
564
565                                 /* Shorten the length by 1 tick so that we can add a new note at the next
566                                    grid snap without it overlapping this one.
567                                 */
568                                 beats -= Evoral::MusicalTime::tick();
569                                 
570                                 create_note_at (editor.pixel_to_sample (event_x), event_y, beats, true);
571
572                                 break;
573                         }
574                 default:
575                         break;
576                 }
577
578                 _mouse_state = None;
579                 break;
580
581         case SelectRectDragging:
582         case AddDragging:
583                 editor.drags()->end_grab ((GdkEvent *) ev);
584                 _mouse_state = None;
585                 create_ghost_note (ev->x, ev->y);
586                 break;
587
588
589         default:
590                 break;
591         }
592
593         return false;
594 }
595
596 bool
597 MidiRegionView::motion (GdkEventMotion* ev)
598 {
599         PublicEditor& editor = trackview.editor ();
600
601         if (!_ghost_note && editor.current_mouse_mode() == MouseObject &&
602             Keyboard::modifier_state_contains (ev->state, Keyboard::insert_note_modifier()) &&
603             _mouse_state != AddDragging) {
604
605                 create_ghost_note (ev->x, ev->y);
606
607         } else if (_ghost_note && editor.current_mouse_mode() == MouseObject &&
608                    Keyboard::modifier_state_contains (ev->state, Keyboard::insert_note_modifier())) {
609
610                 update_ghost_note (ev->x, ev->y);
611
612         } else if (_ghost_note && editor.current_mouse_mode() == MouseObject) {
613
614                 remove_ghost_note ();
615                 editor.verbose_cursor()->hide ();
616
617         } else if (_ghost_note && editor.current_mouse_mode() == MouseDraw) {
618
619                 update_ghost_note (ev->x, ev->y);
620         }
621
622         /* any motion immediately hides velocity text that may have been visible */
623
624         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
625                 (*i)->hide_velocity ();
626         }
627
628         switch (_mouse_state) {
629         case Pressed:
630
631                 if (_pressed_button == 1) {
632                         
633                         MouseMode m = editor.current_mouse_mode();
634                         
635                         if (m == MouseDraw || (m == MouseObject && Keyboard::modifier_state_contains (ev->state, Keyboard::insert_note_modifier()))) {
636                                 editor.drags()->set (new NoteCreateDrag (dynamic_cast<Editor *> (&editor), group, this), (GdkEvent *) ev);
637                                 _mouse_state = AddDragging;
638                                 remove_ghost_note ();
639                                 editor.verbose_cursor()->hide ();
640                                 return true;
641                         } else if (m == MouseObject) {
642                                 editor.drags()->set (new MidiRubberbandSelectDrag (dynamic_cast<Editor *> (&editor), this), (GdkEvent *) ev);
643                                 if (!Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
644                                         clear_selection ();
645                                 }
646                                 _mouse_state = SelectRectDragging;
647                                 return true;
648                         } else if (m == MouseRange) {
649                                 editor.drags()->set (new MidiVerticalSelectDrag (dynamic_cast<Editor *> (&editor), this), (GdkEvent *) ev);
650                                 _mouse_state = SelectVerticalDragging;
651                                 return true;
652                         }
653                 }
654
655                 return false;
656
657         case SelectRectDragging:
658         case SelectVerticalDragging:
659         case AddDragging:
660                 editor.drags()->motion_handler ((GdkEvent *) ev, false);
661                 break;
662                 
663         case SelectTouchDragging:
664                 return false;
665
666         default:
667                 break;
668
669         }
670
671         /* we may be dragging some non-note object (eg. patch-change, sysex) 
672          */
673
674         return editor.drags()->motion_handler ((GdkEvent *) ev, false);
675 }
676
677
678 bool
679 MidiRegionView::scroll (GdkEventScroll* ev)
680 {
681         if (_selection.empty()) {
682                 return false;
683         }
684
685         if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
686                 /* XXX: bit of a hack; allow PrimaryModifier scroll through so that
687                    it still works for zoom.
688                 */
689                 return false;
690         }
691
692         trackview.editor().verbose_cursor()->hide ();
693
694         bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
695         bool together = Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier);
696
697         if (ev->direction == GDK_SCROLL_UP) {
698                 change_velocities (true, fine, false, together);
699         } else if (ev->direction == GDK_SCROLL_DOWN) {
700                 change_velocities (false, fine, false, together);
701         } else {
702                 /* left, right: we don't use them */
703                 return false;
704         }
705
706         return true;
707 }
708
709 bool
710 MidiRegionView::key_press (GdkEventKey* ev)
711 {
712         /* since GTK bindings are generally activated on press, and since
713            detectable auto-repeat is the name of the game and only sends
714            repeated presses, carry out key actions at key press, not release.
715         */
716
717         bool unmodified = Keyboard::no_modifier_keys_pressed (ev);
718         
719         if (unmodified && (ev->keyval == GDK_Alt_L || ev->keyval == GDK_Alt_R)) {
720                 _mouse_state = SelectTouchDragging;
721                 return true;
722
723         } else if (ev->keyval == GDK_Escape && unmodified) {
724                 clear_selection();
725                 _mouse_state = None;
726
727         } else if (unmodified && (ev->keyval == GDK_comma || ev->keyval == GDK_period)) {
728
729                 bool start = (ev->keyval == GDK_comma);
730                 bool end = (ev->keyval == GDK_period);
731                 bool shorter = Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier);
732                 bool fine = Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
733
734                 change_note_lengths (fine, shorter, Evoral::MusicalTime(), start, end);
735
736                 return true;
737
738         } else if ((ev->keyval == GDK_BackSpace || ev->keyval == GDK_Delete) && unmodified) {
739
740                 if (_selection.empty()) {
741                         return false;
742                 }
743
744                 delete_selection();
745                 return true;
746
747         } else if (ev->keyval == GDK_Tab) {
748
749                 if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier)) {
750                         goto_previous_note (Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier));
751                 } else {
752                         goto_next_note (Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier));
753                 }
754                 return true;
755
756         } else if (ev->keyval == GDK_ISO_Left_Tab) {
757
758                 /* Shift-TAB generates ISO Left Tab, for some reason */
759
760                 if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier)) {
761                         goto_previous_note (Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier));
762                 } else {
763                         goto_next_note (Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier));
764                 }
765                 return true;
766
767
768
769         } else if (ev->keyval == GDK_Up) {
770
771                 bool allow_smush = Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier);
772                 bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
773                 bool together = Keyboard::modifier_state_contains (ev->state, Keyboard::Level4Modifier);
774
775                 if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier)) {
776                         change_velocities (true, fine, allow_smush, together);
777                 } else {
778                         transpose (true, fine, allow_smush);
779                 }
780                 return true;
781
782         } else if (ev->keyval == GDK_Down) {
783
784                 bool allow_smush = Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier);
785                 bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
786                 bool together = Keyboard::modifier_state_contains (ev->state, Keyboard::Level4Modifier);
787
788                 if (Keyboard::modifier_state_contains (ev->state, Keyboard::PrimaryModifier)) {
789                         change_velocities (false, fine, allow_smush, together);
790                 } else {
791                         transpose (false, fine, allow_smush);
792                 }
793                 return true;
794
795         } else if (ev->keyval == GDK_Left) {
796
797                 bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
798                 nudge_notes (false, fine);
799                 return true;
800
801         } else if (ev->keyval == GDK_Right) {
802
803                 bool fine = !Keyboard::modifier_state_contains (ev->state, Keyboard::SecondaryModifier);
804                 nudge_notes (true, fine);
805                 return true;
806
807         } else if (ev->keyval == GDK_c && unmodified) {
808                 channel_edit ();
809                 return true;
810
811         } else if (ev->keyval == GDK_v && unmodified) {
812                 velocity_edit ();
813                 return true;
814         }
815
816         return false;
817 }
818
819 bool
820 MidiRegionView::key_release (GdkEventKey* ev)
821 {
822         if ((_mouse_state == SelectTouchDragging) && (ev->keyval == GDK_Alt_L || ev->keyval == GDK_Alt_R)) {
823                 _mouse_state = None;
824                 return true;
825         }
826         return false;
827 }
828
829 void
830 MidiRegionView::channel_edit ()
831 {
832         if (_selection.empty()) {
833                 return;
834         }
835
836         /* pick a note somewhat at random (since Selection is a set<>) to
837          * provide the "current" channel for the dialog.
838          */
839
840         uint8_t current_channel = (*_selection.begin())->note()->channel ();
841         MidiChannelDialog channel_dialog (current_channel);
842         int ret = channel_dialog.run ();
843
844         switch (ret) {
845         case Gtk::RESPONSE_OK:
846                 break;
847         default:
848                 return;
849         }
850
851         uint8_t new_channel = channel_dialog.active_channel ();
852
853         start_note_diff_command (_("channel edit"));
854
855         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
856                 Selection::iterator next = i;
857                 ++next;
858                 change_note_channel (*i, new_channel);
859                 i = next;
860         }
861
862         apply_diff ();
863 }
864
865 void
866 MidiRegionView::velocity_edit ()
867 {
868         if (_selection.empty()) {
869                 return;
870         }
871         
872         /* pick a note somewhat at random (since Selection is a set<>) to
873          * provide the "current" velocity for the dialog.
874          */
875
876         uint8_t current_velocity = (*_selection.begin())->note()->velocity ();
877         MidiVelocityDialog velocity_dialog (current_velocity);
878         int ret = velocity_dialog.run ();
879
880         switch (ret) {
881         case Gtk::RESPONSE_OK:
882                 break;
883         default:
884                 return;
885         }
886
887         uint8_t new_velocity = velocity_dialog.velocity ();
888
889         start_note_diff_command (_("velocity edit"));
890
891         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
892                 Selection::iterator next = i;
893                 ++next;
894                 change_note_velocity (*i, new_velocity, false);
895                 i = next;
896         }
897
898         apply_diff ();
899 }
900
901 void
902 MidiRegionView::show_list_editor ()
903 {
904         if (!_list_editor) {
905                 _list_editor = new MidiListEditor (trackview.session(), midi_region(), midi_view()->midi_track());
906         }
907         _list_editor->present ();
908 }
909
910 /** Add a note to the model, and the view, at a canvas (click) coordinate.
911  * \param t time in frames relative to the position of the region
912  * \param y vertical position in pixels
913  * \param length duration of the note in beats
914  * \param snap_t true to snap t to the grid, otherwise false.
915  */
916 void
917 MidiRegionView::create_note_at (framepos_t t, double y, Evoral::MusicalTime length, bool snap_t)
918 {
919         if (length < 2 * DBL_EPSILON) {
920                 return;
921         }
922
923         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
924         MidiStreamView* const view = mtv->midi_view();
925
926         const double note = view->y_to_note(y);
927
928         // Start of note in frames relative to region start
929         if (snap_t) {
930                 framecnt_t grid_frames;
931                 t = snap_frame_to_grid_underneath (t, grid_frames);
932         }
933
934         const boost::shared_ptr<NoteType> new_note (
935                 new NoteType (mtv->get_channel_for_add (),
936                               region_frames_to_region_beats(t + _region->start()), 
937                               length,
938                               (uint8_t)note, 0x40));
939
940         if (_model->contains (new_note)) {
941                 return;
942         }
943
944         view->update_note_range(new_note->note());
945
946         MidiModel::NoteDiffCommand* cmd = _model->new_note_diff_command(_("add note"));
947         cmd->add (new_note);
948         _model->apply_command(*trackview.session(), cmd);
949
950         play_midi_note (new_note);
951 }
952
953 void
954 MidiRegionView::clear_events (bool with_selection_signal)
955 {
956         clear_selection (with_selection_signal);
957
958         MidiGhostRegion* gr;
959         for (std::vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
960                 if ((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
961                         gr->clear_events();
962                 }
963         }
964
965         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
966                 delete *i;
967         }
968
969         _events.clear();
970         _patch_changes.clear();
971         _sys_exes.clear();
972         _optimization_iterator = _events.end();
973 }
974
975 void
976 MidiRegionView::display_model(boost::shared_ptr<MidiModel> model)
977 {
978         _model = model;
979
980         content_connection.disconnect ();
981         _model->ContentsChanged.connect (content_connection, invalidator (*this), boost::bind (&MidiRegionView::redisplay_model, this), gui_context());
982
983         clear_events ();
984
985         if (_enable_display) {
986                 redisplay_model();
987         }
988 }
989
990 void
991 MidiRegionView::start_note_diff_command (string name)
992 {
993         if (!_note_diff_command) {
994                 _note_diff_command = _model->new_note_diff_command (name);
995         }
996 }
997
998 void
999 MidiRegionView::note_diff_add_note (const boost::shared_ptr<NoteType> note, bool selected, bool show_velocity)
1000 {
1001         if (_note_diff_command) {
1002                 _note_diff_command->add (note);
1003         }
1004         if (selected) {
1005                 _marked_for_selection.insert(note);
1006         }
1007         if (show_velocity) {
1008                 _marked_for_velocity.insert(note);
1009         }
1010 }
1011
1012 void
1013 MidiRegionView::note_diff_remove_note (NoteBase* ev)
1014 {
1015         if (_note_diff_command && ev->note()) {
1016                 _note_diff_command->remove(ev->note());
1017         }
1018 }
1019
1020 void
1021 MidiRegionView::note_diff_add_change (NoteBase* ev,
1022                                       MidiModel::NoteDiffCommand::Property property,
1023                                       uint8_t val)
1024 {
1025         if (_note_diff_command) {
1026                 _note_diff_command->change (ev->note(), property, val);
1027         }
1028 }
1029
1030 void
1031 MidiRegionView::note_diff_add_change (NoteBase* ev,
1032                                       MidiModel::NoteDiffCommand::Property property,
1033                                       Evoral::MusicalTime val)
1034 {
1035         if (_note_diff_command) {
1036                 _note_diff_command->change (ev->note(), property, val);
1037         }
1038 }
1039
1040 void
1041 MidiRegionView::apply_diff (bool as_subcommand)
1042 {
1043         bool add_or_remove;
1044
1045         if (!_note_diff_command) {
1046                 return;
1047         }
1048
1049         if ((add_or_remove = _note_diff_command->adds_or_removes())) {
1050                 // Mark all selected notes for selection when model reloads
1051                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
1052                         _marked_for_selection.insert((*i)->note());
1053                 }
1054         }
1055
1056         if (as_subcommand) {
1057                 _model->apply_command_as_subcommand (*trackview.session(), _note_diff_command);
1058         } else {
1059                 _model->apply_command (*trackview.session(), _note_diff_command);
1060         }
1061
1062         _note_diff_command = 0;
1063         midi_view()->midi_track()->playlist_modified();
1064
1065         if (add_or_remove) {
1066                 _marked_for_selection.clear();
1067         }
1068
1069         _marked_for_velocity.clear();
1070 }
1071
1072 void
1073 MidiRegionView::abort_command()
1074 {
1075         delete _note_diff_command;
1076         _note_diff_command = 0;
1077         clear_selection();
1078 }
1079
1080 NoteBase*
1081 MidiRegionView::find_canvas_note (boost::shared_ptr<NoteType> note)
1082 {
1083         if (_optimization_iterator != _events.end()) {
1084                 ++_optimization_iterator;
1085         }
1086
1087         if (_optimization_iterator != _events.end() && (*_optimization_iterator)->note() == note) {
1088                 return *_optimization_iterator;
1089         }
1090
1091         for (_optimization_iterator = _events.begin(); _optimization_iterator != _events.end(); ++_optimization_iterator) {
1092                 if ((*_optimization_iterator)->note() == note) {
1093                         return *_optimization_iterator;
1094                 }
1095         }
1096
1097         return 0;
1098 }
1099
1100 void
1101 MidiRegionView::get_events (Events& e, Evoral::Sequence<Evoral::MusicalTime>::NoteOperator op, uint8_t val, int chan_mask)
1102 {
1103         MidiModel::Notes notes;
1104         _model->get_notes (notes, op, val, chan_mask);
1105
1106         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
1107                 NoteBase* cne = find_canvas_note (*n);
1108                 if (cne) {
1109                         e.push_back (cne);
1110                 }
1111         }
1112 }
1113
1114 void
1115 MidiRegionView::redisplay_model()
1116 {
1117         // Don't redisplay the model if we're currently recording and displaying that
1118         if (_active_notes) {
1119                 return;
1120         }
1121
1122         if (!_model) {
1123                 return;
1124         }
1125
1126         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
1127                 (*i)->invalidate ();
1128         }
1129
1130         MidiModel::ReadLock lock(_model->read_lock());
1131
1132         MidiModel::Notes& notes (_model->notes());
1133         _optimization_iterator = _events.begin();
1134
1135         bool empty_when_starting = _events.empty();
1136
1137         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
1138
1139                 boost::shared_ptr<NoteType> note (*n);
1140                 NoteBase* cne;
1141                 bool visible;
1142
1143                 if (note_in_region_range (note, visible)) {
1144                         
1145                         if (!empty_when_starting && (cne = find_canvas_note (note)) != 0) {
1146
1147                                 cne->validate ();
1148
1149                                 Note* cn;
1150                                 Hit* ch;
1151
1152                                 if ((cn = dynamic_cast<Note*>(cne)) != 0) {
1153                                         update_note (cn);
1154                                 } else if ((ch = dynamic_cast<Hit*>(cne)) != 0) {
1155                                         update_hit (ch);
1156                                 }
1157
1158                                 if (visible) {
1159                                         cne->show ();
1160                                 } else {
1161                                         cne->hide ();
1162                                 }
1163
1164                         } else {
1165
1166                                 add_note (note, visible);
1167                         }
1168
1169                 } else {
1170                         
1171                         if (!empty_when_starting && (cne = find_canvas_note (note)) != 0) {
1172                                 cne->validate ();
1173                                 cne->hide ();
1174                         }
1175                 }
1176         }
1177
1178
1179         /* remove note items that are no longer valid */
1180
1181         if (!empty_when_starting) {
1182                 for (Events::iterator i = _events.begin(); i != _events.end(); ) {
1183                         if (!(*i)->valid ()) {
1184                                 
1185                                 for (vector<GhostRegion*>::iterator j = ghosts.begin(); j != ghosts.end(); ++j) {
1186                                         MidiGhostRegion* gr = dynamic_cast<MidiGhostRegion*> (*j);
1187                                         if (gr) {
1188                                                 gr->remove_note (*i);
1189                                         }
1190                                 }
1191                                 
1192                                 delete *i;
1193                                 i = _events.erase (i);
1194                                 
1195                         } else {
1196                                 ++i;
1197                         }
1198                 }
1199         }
1200
1201         _patch_changes.clear();
1202         _sys_exes.clear();
1203
1204         display_sysexes();
1205         display_patch_changes ();
1206
1207         _marked_for_selection.clear ();
1208         _marked_for_velocity.clear ();
1209
1210         /* we may have caused _events to contain things out of order (e.g. if a note
1211            moved earlier or later). we don't generally need them in time order, but
1212            make a note that a sort is required for those cases that require it.
1213         */
1214
1215         _sort_needed = true;
1216 }
1217
1218 void
1219 MidiRegionView::display_patch_changes ()
1220 {
1221         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
1222         uint16_t chn_mask = mtv->midi_track()->get_playback_channel_mask();
1223
1224         for (uint8_t i = 0; i < 16; ++i) {
1225                 display_patch_changes_on_channel (i, chn_mask & (1 << i));
1226         }
1227 }
1228
1229 /** @param active_channel true to display patch changes fully, false to display
1230  * them `greyed-out' (as on an inactive channel)
1231  */
1232 void
1233 MidiRegionView::display_patch_changes_on_channel (uint8_t channel, bool active_channel)
1234 {
1235         for (MidiModel::PatchChanges::const_iterator i = _model->patch_changes().begin(); i != _model->patch_changes().end(); ++i) {
1236
1237                 if ((*i)->channel() != channel) {
1238                         continue;
1239                 }
1240
1241                 const string patch_name = instrument_info().get_patch_name ((*i)->bank(), (*i)->program(), channel);
1242                 add_canvas_patch_change (*i, patch_name, active_channel);
1243         }
1244 }
1245
1246 void
1247 MidiRegionView::display_sysexes()
1248 {
1249         bool have_periodic_system_messages = false;
1250         bool display_periodic_messages = true;
1251
1252         if (!Config->get_never_display_periodic_midi()) {
1253
1254                 for (MidiModel::SysExes::const_iterator i = _model->sysexes().begin(); i != _model->sysexes().end(); ++i) {
1255                         const boost::shared_ptr<const Evoral::MIDIEvent<Evoral::MusicalTime> > mev = 
1256                                 boost::static_pointer_cast<const Evoral::MIDIEvent<Evoral::MusicalTime> > (*i);
1257                         
1258                         if (mev) {
1259                                 if (mev->is_spp() || mev->is_mtc_quarter() || mev->is_mtc_full()) {
1260                                         have_periodic_system_messages = true;
1261                                         break;
1262                                 }
1263                         }
1264                 }
1265                 
1266                 if (have_periodic_system_messages) {
1267                         double zoom = trackview.editor().get_current_zoom (); // frames per pixel
1268                         
1269                         /* get an approximate value for the number of samples per video frame */
1270                         
1271                         double video_frame = trackview.session()->frame_rate() * (1.0/30);
1272                         
1273                         /* if we are zoomed out beyond than the cutoff (i.e. more
1274                          * frames per pixel than frames per 4 video frames), don't
1275                          * show periodic sysex messages.
1276                          */
1277                         
1278                         if (zoom > (video_frame*4)) {
1279                                 display_periodic_messages = false;
1280                         } 
1281                 }
1282         } else {
1283                 display_periodic_messages = false;
1284         }
1285
1286         for (MidiModel::SysExes::const_iterator i = _model->sysexes().begin(); i != _model->sysexes().end(); ++i) {
1287
1288                 const boost::shared_ptr<const Evoral::MIDIEvent<Evoral::MusicalTime> > mev = 
1289                         boost::static_pointer_cast<const Evoral::MIDIEvent<Evoral::MusicalTime> > (*i);
1290
1291                 Evoral::MusicalTime time = (*i)->time();
1292
1293                 if (mev) {
1294                         if (mev->is_spp() || mev->is_mtc_quarter() || mev->is_mtc_full()) {
1295                                 if (!display_periodic_messages) {
1296                                         continue;
1297                                 }
1298                         }
1299                 }
1300
1301                 ostringstream str;
1302                 str << hex;
1303                 for (uint32_t b = 0; b < (*i)->size(); ++b) {
1304                         str << int((*i)->buffer()[b]);
1305                         if (b != (*i)->size() -1) {
1306                                 str << " ";
1307                         }
1308                 }
1309                 string text = str.str();
1310
1311                 const double x = trackview.editor().sample_to_pixel(source_beats_to_region_frames(time));
1312
1313                 double height = midi_stream_view()->contents_height();
1314
1315                 // CAIROCANVAS: no longer passing *i (the sysex event) to the
1316                 // SysEx canvas object!!!
1317
1318                 boost::shared_ptr<SysEx> sysex = boost::shared_ptr<SysEx>(
1319                         new SysEx (*this, _note_group, text, height, x, 1.0));
1320
1321                 // Show unless message is beyond the region bounds
1322                 if (time - _region->start() >= _region->length() || time < _region->start()) {
1323                         sysex->hide();
1324                 } else {
1325                         sysex->show();
1326                 }
1327
1328                 _sys_exes.push_back(sysex);
1329         }
1330 }
1331
1332 MidiRegionView::~MidiRegionView ()
1333 {
1334         in_destructor = true;
1335
1336         trackview.editor().verbose_cursor()->hide ();
1337
1338         note_delete_connection.disconnect ();
1339
1340         delete _list_editor;
1341
1342         RegionViewGoingAway (this); /* EMIT_SIGNAL */
1343
1344         if (_active_notes) {
1345                 end_write();
1346         }
1347
1348         _selection_cleared_connection.disconnect ();
1349
1350         _selection.clear();
1351         clear_events (false);
1352
1353         delete _note_group;
1354         delete _note_diff_command;
1355         delete _step_edit_cursor;
1356         delete _temporary_note_group;
1357 }
1358
1359 void
1360 MidiRegionView::region_resized (const PropertyChange& what_changed)
1361 {
1362         RegionView::region_resized(what_changed);
1363
1364         if (what_changed.contains (ARDOUR::Properties::position)) {
1365                 _region_relative_time_converter.set_origin_b(_region->position());
1366                 set_duration(_region->length(), 0);
1367                 if (_enable_display) {
1368                         redisplay_model();
1369                 }
1370         }
1371
1372         if (what_changed.contains (ARDOUR::Properties::start) ||
1373             what_changed.contains (ARDOUR::Properties::position)) {
1374                 _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
1375         }
1376 }
1377
1378 void
1379 MidiRegionView::reset_width_dependent_items (double pixel_width)
1380 {
1381         RegionView::reset_width_dependent_items(pixel_width);
1382
1383         if (_enable_display) {
1384                 redisplay_model();
1385         }
1386
1387         for (PatchChanges::iterator x = _patch_changes.begin(); x != _patch_changes.end(); ++x) {
1388                 if ((*x)->canvas_item()->width() >= _pixel_width) {
1389                         (*x)->hide();
1390                 } else {
1391                         (*x)->show();
1392                 }
1393         }
1394
1395         move_step_edit_cursor (_step_edit_cursor_position);
1396         set_step_edit_cursor_width (_step_edit_cursor_width);
1397 }
1398
1399 void
1400 MidiRegionView::set_height (double height)
1401 {
1402         double old_height = _height;
1403         RegionView::set_height(height);
1404
1405         apply_note_range (midi_stream_view()->lowest_note(),
1406                           midi_stream_view()->highest_note(),
1407                           height != old_height);
1408
1409         if (name_text) {
1410                 name_text->raise_to_top();
1411         }
1412
1413         for (PatchChanges::iterator x = _patch_changes.begin(); x != _patch_changes.end(); ++x) {
1414                 (*x)->set_height (midi_stream_view()->contents_height());
1415         }
1416
1417         if (_step_edit_cursor) {
1418                 _step_edit_cursor->set_y1 (midi_stream_view()->contents_height());
1419         }
1420 }
1421
1422
1423 /** Apply the current note range from the stream view
1424  * by repositioning/hiding notes as necessary
1425  */
1426 void
1427 MidiRegionView::apply_note_range (uint8_t min, uint8_t max, bool force)
1428 {
1429         if (!_enable_display) {
1430                 return;
1431         }
1432
1433         if (!force && _current_range_min == min && _current_range_max == max) {
1434                 return;
1435         }
1436
1437         _current_range_min = min;
1438         _current_range_max = max;
1439
1440         for (Events::const_iterator i = _events.begin(); i != _events.end(); ++i) {
1441                 NoteBase* event = *i;
1442                 boost::shared_ptr<NoteType> note (event->note());
1443
1444                 if (note->note() < _current_range_min ||
1445                     note->note() > _current_range_max) {
1446                         event->hide();
1447                 } else {
1448                         event->show();
1449                 }
1450
1451                 if (Note* cnote = dynamic_cast<Note*>(event)) {
1452
1453                         const double y0 = 1. + floor (midi_stream_view()->note_to_y(note->note()));
1454                         const double y1 = y0 + std::max(1., floor(midi_stream_view()->note_height()) - 1.);
1455
1456                         cnote->set_y0 (y0);
1457                         cnote->set_y1 (y1);
1458
1459                 } else if (Hit* chit = dynamic_cast<Hit*>(event)) {
1460                         update_hit (chit);
1461                 }
1462         }
1463 }
1464
1465 GhostRegion*
1466 MidiRegionView::add_ghost (TimeAxisView& tv)
1467 {
1468         Note* note;
1469
1470         double unit_position = _region->position () / samples_per_pixel;
1471         MidiTimeAxisView* mtv = dynamic_cast<MidiTimeAxisView*>(&tv);
1472         MidiGhostRegion* ghost;
1473
1474         if (mtv && mtv->midi_view()) {
1475                 /* if ghost is inserted into midi track, use a dedicated midi ghost canvas group
1476                    to allow having midi notes on top of note lines and waveforms.
1477                 */
1478                 ghost = new MidiGhostRegion (*mtv->midi_view(), trackview, unit_position);
1479         } else {
1480                 ghost = new MidiGhostRegion (tv, trackview, unit_position);
1481         }
1482
1483         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
1484                 if ((note = dynamic_cast<Note*>(*i)) != 0) {
1485                         ghost->add_note(note);
1486                 }
1487         }
1488
1489         ghost->set_height ();
1490         ghost->set_duration (_region->length() / samples_per_pixel);
1491         ghosts.push_back (ghost);
1492
1493         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
1494
1495         return ghost;
1496 }
1497
1498
1499 /** Begin tracking note state for successive calls to add_event
1500  */
1501 void
1502 MidiRegionView::begin_write()
1503 {
1504         if (_active_notes) {
1505                 delete[] _active_notes;
1506         }
1507         _active_notes = new Note*[128];
1508         for (unsigned i = 0; i < 128; ++i) {
1509                 _active_notes[i] = 0;
1510         }
1511 }
1512
1513
1514 /** Destroy note state for add_event
1515  */
1516 void
1517 MidiRegionView::end_write()
1518 {
1519         delete[] _active_notes;
1520         _active_notes = 0;
1521         _marked_for_selection.clear();
1522         _marked_for_velocity.clear();
1523 }
1524
1525
1526 /** Resolve an active MIDI note (while recording).
1527  */
1528 void
1529 MidiRegionView::resolve_note(uint8_t note, Evoral::MusicalTime end_time)
1530 {
1531         if (midi_view()->note_mode() != Sustained) {
1532                 return;
1533         }
1534
1535         if (_active_notes && _active_notes[note]) {
1536
1537                 /* XXX is end_time really region-centric? I think so, because
1538                    this is a new region that we're recording, so source zero is
1539                    the same as region zero
1540                 */
1541                 const framepos_t end_time_frames = region_beats_to_region_frames(end_time);
1542
1543                 _active_notes[note]->set_x1 (trackview.editor().sample_to_pixel(end_time_frames));
1544                 _active_notes[note]->set_outline_all ();
1545                 _active_notes[note] = 0;
1546
1547         }
1548 }
1549
1550
1551 /** Extend active notes to rightmost edge of region (if length is changed)
1552  */
1553 void
1554 MidiRegionView::extend_active_notes()
1555 {
1556         if (!_active_notes) {
1557                 return;
1558         }
1559
1560         for (unsigned i=0; i < 128; ++i) {
1561                 if (_active_notes[i]) {
1562                         _active_notes[i]->set_x1(
1563                                 trackview.editor().sample_to_pixel(_region->position() + _region->length()));
1564                 }
1565         }
1566 }
1567
1568
1569 void
1570 MidiRegionView::play_midi_note(boost::shared_ptr<NoteType> note)
1571 {
1572         if (_no_sound_notes || !Config->get_sound_midi_notes()) {
1573                 return;
1574         }
1575
1576         RouteUI* route_ui = dynamic_cast<RouteUI*> (&trackview);
1577
1578         if (!route_ui || !route_ui->midi_track()) {
1579                 return;
1580         }
1581
1582         NotePlayer* np = new NotePlayer (route_ui->midi_track ());
1583         np->add (note);
1584         np->play ();
1585
1586         /* NotePlayer deletes itself */
1587 }
1588
1589 void
1590 MidiRegionView::start_playing_midi_note(boost::shared_ptr<NoteType> note)
1591 {
1592         if (_no_sound_notes || !Config->get_sound_midi_notes()) {
1593                 return;
1594         }
1595
1596         RouteUI* route_ui = dynamic_cast<RouteUI*> (&trackview);
1597
1598         if (!route_ui || !route_ui->midi_track()) {
1599                 return;
1600         }
1601
1602         delete _note_player;
1603         _note_player = new NotePlayer (route_ui->midi_track ());
1604         _note_player->add (note);
1605         _note_player->on ();
1606 }
1607
1608 void
1609 MidiRegionView::start_playing_midi_chord (vector<boost::shared_ptr<NoteType> > notes)
1610 {
1611         if (_no_sound_notes || !Config->get_sound_midi_notes()) {
1612                 return;
1613         }
1614
1615         RouteUI* route_ui = dynamic_cast<RouteUI*> (&trackview);
1616
1617         if (!route_ui || !route_ui->midi_track()) {
1618                 return;
1619         }
1620
1621         delete _note_player;
1622         _note_player = new NotePlayer (route_ui->midi_track());
1623
1624         for (vector<boost::shared_ptr<NoteType> >::iterator n = notes.begin(); n != notes.end(); ++n) {
1625                 _note_player->add (*n);
1626         }
1627
1628         _note_player->on ();
1629 }
1630
1631
1632 bool
1633 MidiRegionView::note_in_region_range (const boost::shared_ptr<NoteType> note, bool& visible) const
1634 {
1635         const framepos_t note_start_frames = source_beats_to_region_frames (note->time());
1636         bool outside = (note_start_frames  < 0) || (note_start_frames > _region->last_frame());
1637
1638         visible = (note->note() >= midi_stream_view()->lowest_note()) &&
1639                 (note->note() <= midi_stream_view()->highest_note());
1640
1641         return !outside;
1642 }
1643
1644 /** Update a canvas note's size from its model note.
1645  *  @param ev Canvas note to update.
1646  *  @param update_ghost_regions true to update the note in any ghost regions that we have, otherwise false.
1647  */
1648 void
1649 MidiRegionView::update_note (Note* ev, bool update_ghost_regions)
1650 {
1651         boost::shared_ptr<NoteType> note = ev->note();
1652         const double x = trackview.editor().sample_to_pixel (source_beats_to_region_frames (note->time()));
1653         const double y0 = 1 + floor(midi_stream_view()->note_to_y(note->note()));
1654
1655         ev->set_x0 (x);
1656         ev->set_y0 (y0);
1657
1658         /* trim note display to not overlap the end of its region */
1659
1660         if (note->length() > 0) {
1661                 const framepos_t note_end_frames = min (source_beats_to_region_frames (note->end_time()), _region->length());
1662                 ev->set_x1 (trackview.editor().sample_to_pixel (note_end_frames));
1663         } else {
1664                 ev->set_x1 (trackview.editor().sample_to_pixel (_region->length()));
1665         }
1666
1667         ev->set_y1 (y0 + std::max(1., floor(midi_stream_view()->note_height()) - 1));
1668
1669         if (!note->length()) {
1670                 if (_active_notes && note->note() < 128) {
1671                         // If this note is already active there's a stuck note,
1672                         // finish the old note rectangle
1673                         if (_active_notes[note->note()]) {
1674                                 Note* const old_rect = _active_notes[note->note()];
1675                                 boost::shared_ptr<NoteType> old_note = old_rect->note();
1676                                 old_rect->set_x1 (x);
1677                                 old_rect->set_outline_all ();
1678                         }
1679                         _active_notes[note->note()] = ev;
1680                 }
1681                 /* outline all but right edge */
1682                 ev->set_outline_what (ArdourCanvas::Rectangle::What (
1683                                               ArdourCanvas::Rectangle::TOP|
1684                                               ArdourCanvas::Rectangle::LEFT|
1685                                               ArdourCanvas::Rectangle::BOTTOM));
1686         } else {
1687                 /* outline all edges */
1688                 ev->set_outline_all ();
1689         }
1690         
1691         if (update_ghost_regions) {
1692                 for (std::vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
1693                         MidiGhostRegion* gr = dynamic_cast<MidiGhostRegion*> (*i);
1694                         if (gr) {
1695                                 gr->update_note (ev);
1696                         }
1697                 }
1698         }
1699 }
1700
1701 void
1702 MidiRegionView::update_hit (Hit* ev)
1703 {
1704         boost::shared_ptr<NoteType> note = ev->note();
1705
1706         const framepos_t note_start_frames = source_beats_to_region_frames(note->time());
1707         const double x = trackview.editor().sample_to_pixel(note_start_frames);
1708         const double diamond_size = std::max(1., floor(midi_stream_view()->note_height()) - 2.);
1709         const double y = 1.5 + floor(midi_stream_view()->note_to_y(note->note())) + diamond_size * .5;
1710
1711         ev->set_position (ArdourCanvas::Duple (x, y));
1712         ev->set_height (diamond_size);
1713 }
1714
1715 /** Add a MIDI note to the view (with length).
1716  *
1717  * If in sustained mode, notes with length 0 will be considered active
1718  * notes, and resolve_note should be called when the corresponding note off
1719  * event arrives, to properly display the note.
1720  */
1721 void
1722 MidiRegionView::add_note(const boost::shared_ptr<NoteType> note, bool visible)
1723 {
1724         NoteBase* event = 0;
1725
1726         if (midi_view()->note_mode() == Sustained) {
1727
1728                 Note* ev_rect = new Note (*this, _note_group, note);
1729
1730                 update_note (ev_rect);
1731
1732                 event = ev_rect;
1733
1734                 MidiGhostRegion* gr;
1735
1736                 for (std::vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
1737                         if ((gr = dynamic_cast<MidiGhostRegion*>(*g)) != 0) {
1738                                 gr->add_note(ev_rect);
1739                         }
1740                 }
1741
1742         } else if (midi_view()->note_mode() == Percussive) {
1743
1744                 const double diamond_size = std::max(1., floor(midi_stream_view()->note_height()) - 2.);
1745
1746                 Hit* ev_diamond = new Hit (*this, _note_group, diamond_size, note);
1747
1748                 update_hit (ev_diamond);
1749
1750                 event = ev_diamond;
1751
1752         } else {
1753                 event = 0;
1754         }
1755
1756         if (event) {
1757                 if (_marked_for_selection.find(note) != _marked_for_selection.end()) {
1758                         note_selected(event, true);
1759                 }
1760
1761                 if (_marked_for_velocity.find(note) != _marked_for_velocity.end()) {
1762                         event->show_velocity();
1763                 }
1764
1765                 event->on_channel_selection_change (get_selected_channels());
1766                 _events.push_back(event);
1767
1768                 if (visible) {
1769                         event->show();
1770                 } else {
1771                         event->hide ();
1772                 }
1773         }
1774
1775         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
1776         MidiStreamView* const view = mtv->midi_view();
1777
1778         view->update_note_range (note->note());
1779 }
1780
1781 void
1782 MidiRegionView::step_add_note (uint8_t channel, uint8_t number, uint8_t velocity,
1783                                Evoral::MusicalTime pos, Evoral::MusicalTime len)
1784 {
1785         boost::shared_ptr<NoteType> new_note (new NoteType (channel, pos, len, number, velocity));
1786
1787         /* potentially extend region to hold new note */
1788
1789         framepos_t end_frame = source_beats_to_absolute_frames (new_note->end_time());
1790         framepos_t region_end = _region->last_frame();
1791
1792         if (end_frame > region_end) {
1793                 _region->set_length (end_frame - _region->position());
1794         }
1795
1796         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
1797         MidiStreamView* const view = mtv->midi_view();
1798
1799         view->update_note_range(new_note->note());
1800
1801         _marked_for_selection.clear ();
1802         clear_selection ();
1803
1804         start_note_diff_command (_("step add"));
1805         note_diff_add_note (new_note, true, false);
1806         apply_diff();
1807
1808         // last_step_edit_note = new_note;
1809 }
1810
1811 void
1812 MidiRegionView::step_sustain (Evoral::MusicalTime beats)
1813 {
1814         change_note_lengths (false, false, beats, false, true);
1815 }
1816
1817 /** Add a new patch change flag to the canvas.
1818  * @param patch the patch change to add
1819  * @param the text to display in the flag
1820  * @param active_channel true to display the flag as on an active channel, false to grey it out for an inactive channel.
1821  */
1822 void
1823 MidiRegionView::add_canvas_patch_change (MidiModel::PatchChangePtr patch, const string& displaytext, bool /*active_channel*/)
1824 {
1825         framecnt_t region_frames = source_beats_to_region_frames (patch->time());
1826         const double x = trackview.editor().sample_to_pixel (region_frames);
1827
1828         double const height = midi_stream_view()->contents_height();
1829
1830         // CAIROCANVAS: active_channel info removed from PatcChange constructor
1831         // so we need to do something more sophisticated to keep its color
1832         // appearance (MidiPatchChangeFill/MidiPatchChangeInactiveChannelFill)
1833         // up to date.
1834
1835         boost::shared_ptr<PatchChange> patch_change = boost::shared_ptr<PatchChange>(
1836                 new PatchChange(*this, group,
1837                                 displaytext,
1838                                 height,
1839                                 x, 1.0,
1840                                 instrument_info(),
1841                                 patch));
1842
1843         if (patch_change->item().width() < _pixel_width) {
1844                 // Show unless patch change is beyond the region bounds
1845                 if (region_frames < 0 || region_frames >= _region->length()) {
1846                         patch_change->hide();
1847                 } else {
1848                         patch_change->show();
1849                 }
1850         } else {
1851                 patch_change->hide ();
1852         }
1853
1854         _patch_changes.push_back (patch_change);
1855 }
1856
1857 MIDI::Name::PatchPrimaryKey
1858 MidiRegionView::patch_change_to_patch_key (MidiModel::PatchChangePtr p)
1859 {
1860         return MIDI::Name::PatchPrimaryKey (p->program(), p->bank());
1861 }
1862
1863 /// Return true iff @p pc applies to the given time on the given channel.
1864 static bool
1865 patch_applies (const ARDOUR::MidiModel::constPatchChangePtr pc, Evoral::MusicalTime time, uint8_t channel)
1866 {
1867         return pc->time() <= time && pc->channel() == channel;
1868 }
1869         
1870 void 
1871 MidiRegionView::get_patch_key_at (Evoral::MusicalTime time, uint8_t channel, MIDI::Name::PatchPrimaryKey& key) const
1872 {
1873         // The earliest event not before time
1874         MidiModel::PatchChanges::iterator i = _model->patch_change_lower_bound (time);
1875
1876         // Go backwards until we find the latest PC for this channel, or the start
1877         while (i != _model->patch_changes().begin() &&
1878                (i == _model->patch_changes().end() ||
1879                 !patch_applies(*i, time, channel))) {
1880                 --i;
1881         }
1882
1883         if (i != _model->patch_changes().end() && patch_applies(*i, time, channel)) {
1884                 key.bank_number    = (*i)->bank();
1885                 key.program_number = (*i)->program ();
1886         } else {
1887                 key.bank_number = key.program_number = 0;
1888         }
1889
1890         if (!key.is_sane()) {
1891                 error << string_compose(_("insane MIDI patch key %1:%2"),
1892                                         key.bank_number, key.program_number) << endmsg;
1893         }
1894 }
1895
1896 void
1897 MidiRegionView::change_patch_change (PatchChange& pc, const MIDI::Name::PatchPrimaryKey& new_patch)
1898 {
1899         MidiModel::PatchChangeDiffCommand* c = _model->new_patch_change_diff_command (_("alter patch change"));
1900
1901         if (pc.patch()->program() != new_patch.program_number) {
1902                 c->change_program (pc.patch (), new_patch.program_number);
1903         }
1904
1905         int const new_bank = new_patch.bank_number;
1906         if (pc.patch()->bank() != new_bank) {
1907                 c->change_bank (pc.patch (), new_bank);
1908         }
1909
1910         _model->apply_command (*trackview.session(), c);
1911
1912         _patch_changes.clear ();
1913         display_patch_changes ();
1914 }
1915
1916 void
1917 MidiRegionView::change_patch_change (MidiModel::PatchChangePtr old_change, const Evoral::PatchChange<Evoral::MusicalTime> & new_change)
1918 {
1919         MidiModel::PatchChangeDiffCommand* c = _model->new_patch_change_diff_command (_("alter patch change"));
1920
1921         if (old_change->time() != new_change.time()) {
1922                 c->change_time (old_change, new_change.time());
1923         }
1924
1925         if (old_change->channel() != new_change.channel()) {
1926                 c->change_channel (old_change, new_change.channel());
1927         }
1928
1929         if (old_change->program() != new_change.program()) {
1930                 c->change_program (old_change, new_change.program());
1931         }
1932
1933         if (old_change->bank() != new_change.bank()) {
1934                 c->change_bank (old_change, new_change.bank());
1935         }
1936
1937         _model->apply_command (*trackview.session(), c);
1938
1939         _patch_changes.clear ();
1940         display_patch_changes ();
1941 }
1942
1943 /** Add a patch change to the region.
1944  *  @param t Time in frames relative to region position
1945  *  @param patch Patch to add; time and channel are ignored (time is converted from t, and channel comes from
1946  *  MidiTimeAxisView::get_channel_for_add())
1947  */
1948 void
1949 MidiRegionView::add_patch_change (framecnt_t t, Evoral::PatchChange<Evoral::MusicalTime> const & patch)
1950 {
1951         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
1952
1953         MidiModel::PatchChangeDiffCommand* c = _model->new_patch_change_diff_command (_("add patch change"));
1954         c->add (MidiModel::PatchChangePtr (
1955                         new Evoral::PatchChange<Evoral::MusicalTime> (
1956                                 absolute_frames_to_source_beats (_region->position() + t),
1957                                 mtv->get_channel_for_add(), patch.program(), patch.bank()
1958                                 )
1959                         )
1960                 );
1961
1962         _model->apply_command (*trackview.session(), c);
1963
1964         _patch_changes.clear ();
1965         display_patch_changes ();
1966 }
1967
1968 void
1969 MidiRegionView::move_patch_change (PatchChange& pc, Evoral::MusicalTime t)
1970 {
1971         MidiModel::PatchChangeDiffCommand* c = _model->new_patch_change_diff_command (_("move patch change"));
1972         c->change_time (pc.patch (), t);
1973         _model->apply_command (*trackview.session(), c);
1974
1975         _patch_changes.clear ();
1976         display_patch_changes ();
1977 }
1978
1979 void
1980 MidiRegionView::delete_patch_change (PatchChange* pc)
1981 {
1982         MidiModel::PatchChangeDiffCommand* c = _model->new_patch_change_diff_command (_("delete patch change"));
1983         c->remove (pc->patch ());
1984         _model->apply_command (*trackview.session(), c);
1985
1986         _patch_changes.clear ();
1987         display_patch_changes ();
1988 }
1989
1990 void
1991 MidiRegionView::previous_patch (PatchChange& patch)
1992 {
1993         if (patch.patch()->program() < 127) {
1994                 MIDI::Name::PatchPrimaryKey key = patch_change_to_patch_key (patch.patch());
1995                 key.program_number++;
1996                 change_patch_change (patch, key);
1997         }
1998 }
1999
2000 void
2001 MidiRegionView::next_patch (PatchChange& patch)
2002 {
2003         if (patch.patch()->program() > 0) {
2004                 MIDI::Name::PatchPrimaryKey key = patch_change_to_patch_key (patch.patch());
2005                 key.program_number--;
2006                 change_patch_change (patch, key);
2007         }
2008 }
2009
2010 void
2011 MidiRegionView::next_bank (PatchChange& patch)
2012 {
2013         if (patch.patch()->program() < 127) {
2014                 MIDI::Name::PatchPrimaryKey key = patch_change_to_patch_key (patch.patch());
2015                 if (key.bank_number > 0) {
2016                         key.bank_number--;
2017                         change_patch_change (patch, key);
2018                 }
2019         }
2020 }
2021
2022 void
2023 MidiRegionView::previous_bank (PatchChange& patch)
2024 {
2025         if (patch.patch()->program() > 0) {
2026                 MIDI::Name::PatchPrimaryKey key = patch_change_to_patch_key (patch.patch());
2027                 if (key.bank_number < 127) {
2028                         key.bank_number++;
2029                         change_patch_change (patch, key);
2030                 }
2031         }
2032 }
2033
2034 void
2035 MidiRegionView::maybe_remove_deleted_note_from_selection (NoteBase* cne)
2036 {
2037         if (_selection.empty()) {
2038                 return;
2039         }
2040
2041         _selection.erase (cne);
2042 }
2043
2044 void
2045 MidiRegionView::delete_selection()
2046 {
2047         if (_selection.empty()) {
2048                 return;
2049         }
2050
2051         start_note_diff_command (_("delete selection"));
2052
2053         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2054                 if ((*i)->selected()) {
2055                         _note_diff_command->remove((*i)->note());
2056                 }
2057         }
2058
2059         _selection.clear();
2060
2061         apply_diff ();
2062 }
2063
2064 void
2065 MidiRegionView::delete_note (boost::shared_ptr<NoteType> n)
2066 {
2067         start_note_diff_command (_("delete note"));
2068         _note_diff_command->remove (n);
2069         apply_diff ();
2070
2071         trackview.editor().verbose_cursor()->hide ();
2072 }
2073
2074 void
2075 MidiRegionView::clear_selection_except (NoteBase* ev, bool signal)
2076 {
2077         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
2078                 if ((*i) != ev) {
2079                         Selection::iterator tmp = i;
2080                         ++tmp;
2081
2082                         (*i)->set_selected (false);
2083                         (*i)->hide_velocity ();
2084                         _selection.erase (i);
2085
2086                         i = tmp;
2087                 } else {
2088                         ++i;
2089                 }
2090         }
2091
2092         if (!ev && _entered) {
2093                 // Clearing selection entirely, ungrab keyboard
2094                 Keyboard::magic_widget_drop_focus();
2095                 _grabbed_keyboard = false;
2096         }
2097
2098         /* this does not change the status of this regionview w.r.t the editor
2099            selection.
2100         */
2101
2102         if (signal) {
2103                 SelectionCleared (this); /* EMIT SIGNAL */
2104         }
2105 }
2106
2107 void
2108 MidiRegionView::unique_select(NoteBase* ev)
2109 {
2110         const bool selection_was_empty = _selection.empty();
2111
2112         clear_selection_except (ev);
2113
2114         /* don't bother with checking to see if we should remove this
2115            regionview from the editor selection, since we're about to add
2116            another note, and thus put/keep this regionview in the editor
2117            selection anyway.
2118         */
2119
2120         if (!ev->selected()) {
2121                 add_to_selection (ev);
2122                 if (selection_was_empty && _entered) {
2123                         // Grab keyboard for moving notes with arrow keys
2124                         Keyboard::magic_widget_grab_focus();
2125                         _grabbed_keyboard = true;
2126                 }
2127         }
2128 }
2129
2130 void
2131 MidiRegionView::select_all_notes ()
2132 {
2133         clear_selection ();
2134
2135         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2136                 add_to_selection (*i);
2137         }
2138 }
2139
2140 void
2141 MidiRegionView::select_range (framepos_t start, framepos_t end)
2142 {
2143         clear_selection ();
2144
2145         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2146                 framepos_t t = source_beats_to_absolute_frames((*i)->note()->time());
2147                 if (t >= start && t <= end) {
2148                         add_to_selection (*i);
2149                 }
2150         }
2151 }
2152
2153 void
2154 MidiRegionView::invert_selection ()
2155 {
2156         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2157                 if ((*i)->selected()) {
2158                         remove_from_selection(*i);
2159                 } else {
2160                         add_to_selection (*i);
2161                 }
2162         }
2163 }
2164
2165 void
2166 MidiRegionView::select_matching_notes (uint8_t notenum, uint16_t channel_mask, bool add, bool extend)
2167 {
2168         bool have_selection = !_selection.empty();
2169         uint8_t low_note = 127;
2170         uint8_t high_note = 0;
2171         MidiModel::Notes& notes (_model->notes());
2172         _optimization_iterator = _events.begin();
2173         
2174         if (extend && !have_selection) {
2175                 extend = false;
2176         }
2177
2178         /* scan existing selection to get note range */
2179         
2180         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2181                 if ((*i)->note()->note() < low_note) {
2182                         low_note = (*i)->note()->note();
2183                 }
2184                 if ((*i)->note()->note() > high_note) {
2185                         high_note = (*i)->note()->note();
2186                 }
2187         }
2188         
2189         if (!add) {
2190                 clear_selection ();
2191
2192                 if (!extend && (low_note == high_note) && (high_note == notenum)) {
2193                         /* only note previously selected is the one we are
2194                          * reselecting. treat this as cancelling the selection.
2195                          */
2196                         return;
2197                 }
2198         }
2199
2200         if (extend) {
2201                 low_note = min (low_note, notenum);
2202                 high_note = max (high_note, notenum);
2203         }
2204
2205         _no_sound_notes = true;
2206
2207         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
2208
2209                 boost::shared_ptr<NoteType> note (*n);
2210                 NoteBase* cne;
2211                 bool select = false;
2212
2213                 if (((1 << note->channel()) & channel_mask) != 0) {
2214                         if (extend) {
2215                                 if ((note->note() >= low_note && note->note() <= high_note)) {
2216                                         select = true;
2217                                 }
2218                         } else if (note->note() == notenum) {
2219                                 select = true;
2220                         }
2221                 }
2222
2223                 if (select) {
2224                         if ((cne = find_canvas_note (note)) != 0) {
2225                                 // extend is false because we've taken care of it,
2226                                 // since it extends by time range, not pitch.
2227                                 note_selected (cne, add, false);
2228                         }
2229                 }
2230
2231                 add = true; // we need to add all remaining matching notes, even if the passed in value was false (for "set")
2232
2233         }
2234
2235         _no_sound_notes = false;
2236 }
2237
2238 void
2239 MidiRegionView::toggle_matching_notes (uint8_t notenum, uint16_t channel_mask)
2240 {
2241         MidiModel::Notes& notes (_model->notes());
2242         _optimization_iterator = _events.begin();
2243
2244         for (MidiModel::Notes::iterator n = notes.begin(); n != notes.end(); ++n) {
2245
2246                 boost::shared_ptr<NoteType> note (*n);
2247                 NoteBase* cne;
2248
2249                 if (note->note() == notenum && (((0x0001 << note->channel()) & channel_mask) != 0)) {
2250                         if ((cne = find_canvas_note (note)) != 0) {
2251                                 if (cne->selected()) {
2252                                         note_deselected (cne);
2253                                 } else {
2254                                         note_selected (cne, true, false);
2255                                 }
2256                         }
2257                 }
2258         }
2259 }
2260
2261 void
2262 MidiRegionView::note_selected (NoteBase* ev, bool add, bool extend)
2263 {
2264         if (!add) {
2265                 clear_selection_except (ev);
2266                 if (!_selection.empty()) {
2267                         PublicEditor& editor (trackview.editor());
2268                         editor.get_selection().add (this);
2269                 }
2270         }
2271
2272         if (!extend) {
2273
2274                 if (!ev->selected()) {
2275                         add_to_selection (ev);
2276                 }
2277
2278         } else {
2279                 /* find end of latest note selected, select all between that and the start of "ev" */
2280
2281                 Evoral::MusicalTime earliest = Evoral::MaxMusicalTime;
2282                 Evoral::MusicalTime latest   = Evoral::MusicalTime();
2283
2284                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2285                         if ((*i)->note()->end_time() > latest) {
2286                                 latest = (*i)->note()->end_time();
2287                         }
2288                         if ((*i)->note()->time() < earliest) {
2289                                 earliest = (*i)->note()->time();
2290                         }
2291                 }
2292
2293                 if (ev->note()->end_time() > latest) {
2294                         latest = ev->note()->end_time();
2295                 }
2296
2297                 if (ev->note()->time() < earliest) {
2298                         earliest = ev->note()->time();
2299                 }
2300
2301                 for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2302
2303                         /* find notes entirely within OR spanning the earliest..latest range */
2304
2305                         if (((*i)->note()->time() >= earliest && (*i)->note()->end_time() <= latest) ||
2306                             ((*i)->note()->time() <= earliest && (*i)->note()->end_time() >= latest)) {
2307                                 add_to_selection (*i);
2308                         }
2309
2310                 }
2311         }
2312 }
2313
2314 void
2315 MidiRegionView::note_deselected(NoteBase* ev)
2316 {
2317         remove_from_selection (ev);
2318 }
2319
2320 void
2321 MidiRegionView::update_drag_selection(framepos_t start, framepos_t end, double gy0, double gy1, bool extend)
2322 {
2323         PublicEditor& editor = trackview.editor();
2324
2325         // Convert to local coordinates
2326         const framepos_t p  = _region->position();
2327         const double     y  = midi_view()->y_position();
2328         const double     x0 = editor.sample_to_pixel(max((framepos_t)0, start - p));
2329         const double     x1 = editor.sample_to_pixel(max((framepos_t)0, end - p));
2330         const double     y0 = max(0.0, gy0 - y);
2331         const double     y1 = max(0.0, gy1 - y);
2332
2333         // TODO: Make this faster by storing the last updated selection rect, and only
2334         // adjusting things that are in the area that appears/disappeared.
2335         // We probably need a tree to be able to find events in O(log(n)) time.
2336
2337         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2338                 if ((*i)->x0() < x1 && (*i)->x1() > x0 && (*i)->y0() < y1 && (*i)->y1() > y0) {
2339                         // Rectangles intersect
2340                         if (!(*i)->selected()) {
2341                                 add_to_selection (*i);
2342                         }
2343                 } else if ((*i)->selected() && !extend) {
2344                         // Rectangles do not intersect
2345                         remove_from_selection (*i);
2346                 }
2347         }
2348
2349         typedef RouteTimeAxisView::AutomationTracks ATracks;
2350         typedef std::list<Selectable*>              Selectables;
2351
2352         /* Add control points to selection. */
2353         const ATracks& atracks = midi_view()->automation_tracks();
2354         Selectables    selectables;
2355         editor.get_selection().clear_points();
2356         for (ATracks::const_iterator a = atracks.begin(); a != atracks.end(); ++a) {
2357                 a->second->get_selectables(start, end, gy0, gy1, selectables);
2358                 for (Selectables::const_iterator s = selectables.begin(); s != selectables.end(); ++s) {
2359                         ControlPoint* cp = dynamic_cast<ControlPoint*>(*s);
2360                         if (cp) {
2361                                 editor.get_selection().add(cp);
2362                         }
2363                 }
2364                 a->second->set_selected_points(editor.get_selection().points);
2365         }
2366 }
2367
2368 void
2369 MidiRegionView::update_vertical_drag_selection (double y1, double y2, bool extend)
2370 {
2371         if (y1 > y2) {
2372                 swap (y1, y2);
2373         }
2374
2375         // TODO: Make this faster by storing the last updated selection rect, and only
2376         // adjusting things that are in the area that appears/disappeared.
2377         // We probably need a tree to be able to find events in O(log(n)) time.
2378
2379         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
2380                 if (((*i)->y1() >= y1 && (*i)->y1() <= y2)) {
2381                         // within y- (note-) range
2382                         if (!(*i)->selected()) {
2383                                 add_to_selection (*i);
2384                         }
2385                 } else if ((*i)->selected() && !extend) {
2386                         remove_from_selection (*i);
2387                 }
2388         }
2389 }
2390
2391 void
2392 MidiRegionView::remove_from_selection (NoteBase* ev)
2393 {
2394         Selection::iterator i = _selection.find (ev);
2395
2396         if (i != _selection.end()) {
2397                 _selection.erase (i);
2398                 if (_selection.empty() && _grabbed_keyboard) {
2399                         // Ungrab keyboard
2400                         Keyboard::magic_widget_drop_focus();
2401                         _grabbed_keyboard = false;
2402                 }
2403         }
2404
2405         ev->set_selected (false);
2406         ev->hide_velocity ();
2407
2408         if (_selection.empty()) {
2409                 PublicEditor& editor (trackview.editor());
2410                 editor.get_selection().remove (this);
2411         }
2412 }
2413
2414 void
2415 MidiRegionView::add_to_selection (NoteBase* ev)
2416 {
2417         const bool selection_was_empty = _selection.empty();
2418
2419         if (_selection.insert (ev).second) {
2420                 ev->set_selected (true);
2421                 start_playing_midi_note ((ev)->note());
2422                 if (selection_was_empty && _entered) {
2423                         // Grab keyboard for moving notes with arrow keys
2424                         Keyboard::magic_widget_grab_focus();
2425                         _grabbed_keyboard = true;
2426                 }
2427         }
2428
2429         if (selection_was_empty) {
2430                 PublicEditor& editor (trackview.editor());
2431                 editor.get_selection().add (this);
2432         }
2433 }
2434
2435 void
2436 MidiRegionView::move_selection(double dx, double dy, double cumulative_dy)
2437 {
2438         typedef vector<boost::shared_ptr<NoteType> > PossibleChord;
2439         PossibleChord to_play;
2440         Evoral::MusicalTime earliest = Evoral::MaxMusicalTime;
2441
2442         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2443                 if ((*i)->note()->time() < earliest) {
2444                         earliest = (*i)->note()->time();
2445                 }
2446         }
2447
2448         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2449                 if ((*i)->note()->time() == earliest) {
2450                         to_play.push_back ((*i)->note());
2451                 }
2452                 (*i)->move_event(dx, dy);
2453         }
2454
2455         if (dy && !_selection.empty() && !_no_sound_notes && Config->get_sound_midi_notes()) {
2456
2457                 if (to_play.size() > 1) {
2458
2459                         PossibleChord shifted;
2460
2461                         for (PossibleChord::iterator n = to_play.begin(); n != to_play.end(); ++n) {
2462                                 boost::shared_ptr<NoteType> moved_note (new NoteType (**n));
2463                                 moved_note->set_note (moved_note->note() + cumulative_dy);
2464                                 shifted.push_back (moved_note);
2465                         }
2466
2467                         start_playing_midi_chord (shifted);
2468
2469                 } else if (!to_play.empty()) {
2470
2471                         boost::shared_ptr<NoteType> moved_note (new NoteType (*to_play.front()));
2472                         moved_note->set_note (moved_note->note() + cumulative_dy);
2473                         start_playing_midi_note (moved_note);
2474                 }
2475         }
2476 }
2477
2478 void
2479 MidiRegionView::note_dropped(NoteBase *, frameoffset_t dt, int8_t dnote)
2480 {
2481         uint8_t lowest_note_in_selection  = 127;
2482         uint8_t highest_note_in_selection = 0;
2483         uint8_t highest_note_difference   = 0;
2484
2485         // find highest and lowest notes first
2486
2487         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2488                 uint8_t pitch = (*i)->note()->note();
2489                 lowest_note_in_selection  = std::min(lowest_note_in_selection,  pitch);
2490                 highest_note_in_selection = std::max(highest_note_in_selection, pitch);
2491         }
2492
2493         /*
2494           cerr << "dnote: " << (int) dnote << endl;
2495           cerr << "lowest note (streamview): " << int(midi_stream_view()->lowest_note())
2496           << " highest note (streamview): " << int(midi_stream_view()->highest_note()) << endl;
2497           cerr << "lowest note (selection): " << int(lowest_note_in_selection) << " highest note(selection): "
2498           << int(highest_note_in_selection) << endl;
2499           cerr << "selection size: " << _selection.size() << endl;
2500           cerr << "Highest note in selection: " << (int) highest_note_in_selection << endl;
2501         */
2502
2503         // Make sure the note pitch does not exceed the MIDI standard range
2504         if (highest_note_in_selection + dnote > 127) {
2505                 highest_note_difference = highest_note_in_selection - 127;
2506         }
2507
2508         start_note_diff_command (_("move notes"));
2509
2510         for (Selection::iterator i = _selection.begin(); i != _selection.end() ; ++i) {
2511                 
2512                 framepos_t new_frames = source_beats_to_absolute_frames ((*i)->note()->time()) + dt;
2513                 Evoral::MusicalTime new_time = absolute_frames_to_source_beats (new_frames);
2514
2515                 if (new_time < 0) {
2516                         continue;
2517                 }
2518
2519                 note_diff_add_change (*i, MidiModel::NoteDiffCommand::StartTime, new_time);
2520
2521                 uint8_t original_pitch = (*i)->note()->note();
2522                 uint8_t new_pitch      = original_pitch + dnote - highest_note_difference;
2523
2524                 // keep notes in standard midi range
2525                 clamp_to_0_127(new_pitch);
2526
2527                 lowest_note_in_selection  = std::min(lowest_note_in_selection,  new_pitch);
2528                 highest_note_in_selection = std::max(highest_note_in_selection, new_pitch);
2529
2530                 note_diff_add_change (*i, MidiModel::NoteDiffCommand::NoteNumber, new_pitch);
2531         }
2532
2533         apply_diff();
2534
2535         // care about notes being moved beyond the upper/lower bounds on the canvas
2536         if (lowest_note_in_selection  < midi_stream_view()->lowest_note() ||
2537             highest_note_in_selection > midi_stream_view()->highest_note()) {
2538                 midi_stream_view()->set_note_range(MidiStreamView::ContentsRange);
2539         }
2540 }
2541
2542 /** @param x Pixel relative to the region position.
2543  *  @return Snapped frame relative to the region position.
2544  */
2545 framepos_t
2546 MidiRegionView::snap_pixel_to_sample(double x)
2547 {
2548         PublicEditor& editor (trackview.editor());
2549         return snap_frame_to_frame (editor.pixel_to_sample (x));
2550 }
2551
2552 /** @param x Pixel relative to the region position.
2553  *  @return Snapped pixel relative to the region position.
2554  */
2555 double
2556 MidiRegionView::snap_to_pixel(double x)
2557 {
2558         return (double) trackview.editor().sample_to_pixel(snap_pixel_to_sample(x));
2559 }
2560
2561 double
2562 MidiRegionView::get_position_pixels()
2563 {
2564         framepos_t region_frame = get_position();
2565         return trackview.editor().sample_to_pixel(region_frame);
2566 }
2567
2568 double
2569 MidiRegionView::get_end_position_pixels()
2570 {
2571         framepos_t frame = get_position() + get_duration ();
2572         return trackview.editor().sample_to_pixel(frame);
2573 }
2574
2575 framepos_t
2576 MidiRegionView::source_beats_to_absolute_frames(Evoral::MusicalTime beats) const
2577 {
2578         /* the time converter will return the frame corresponding to `beats'
2579            relative to the start of the source. The start of the source
2580            is an implied position given by region->position - region->start
2581         */
2582         const framepos_t source_start = _region->position() - _region->start();
2583         return  source_start +  _source_relative_time_converter.to (beats);
2584 }
2585
2586 Evoral::MusicalTime
2587 MidiRegionView::absolute_frames_to_source_beats(framepos_t frames) const
2588 {
2589         /* the `frames' argument needs to be converted into a frame count
2590            relative to the start of the source before being passed in to the
2591            converter.
2592         */
2593         const framepos_t source_start = _region->position() - _region->start();
2594         return  _source_relative_time_converter.from (frames - source_start);
2595 }
2596
2597 framepos_t
2598 MidiRegionView::region_beats_to_region_frames(Evoral::MusicalTime beats) const
2599 {
2600         return _region_relative_time_converter.to(beats);
2601 }
2602
2603 Evoral::MusicalTime
2604 MidiRegionView::region_frames_to_region_beats(framepos_t frames) const
2605 {
2606         return _region_relative_time_converter.from(frames);
2607 }
2608
2609 void
2610 MidiRegionView::begin_resizing (bool /*at_front*/)
2611 {
2612         _resize_data.clear();
2613
2614         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2615                 Note *note = dynamic_cast<Note*> (*i);
2616
2617                 // only insert CanvasNotes into the map
2618                 if (note) {
2619                         NoteResizeData *resize_data = new NoteResizeData();
2620                         resize_data->note = note;
2621
2622                         // create a new SimpleRect from the note which will be the resize preview
2623                         ArdourCanvas::Rectangle *resize_rect = new ArdourCanvas::Rectangle (_note_group, 
2624                                                                                             ArdourCanvas::Rect (note->x0(), note->y0(), note->x0(), note->y1()));
2625
2626                         // calculate the colors: get the color settings
2627                         uint32_t fill_color = UINT_RGBA_CHANGE_A(
2628                                 ARDOUR_UI::config()->color ("midi note selected"),
2629                                 128);
2630
2631                         // make the resize preview notes more transparent and bright
2632                         fill_color = UINT_INTERPOLATE(fill_color, 0xFFFFFF40, 0.5);
2633
2634                         // calculate color based on note velocity
2635                         resize_rect->set_fill_color (UINT_INTERPOLATE(
2636                                 NoteBase::meter_style_fill_color(note->note()->velocity(), note->selected()),
2637                                 fill_color,
2638                                 0.85));
2639
2640                         resize_rect->set_outline_color (NoteBase::calculate_outline (
2641                                                                 ARDOUR_UI::config()->color ("midi note selected")));
2642
2643                         resize_data->resize_rect = resize_rect;
2644                         _resize_data.push_back(resize_data);
2645                 }
2646         }
2647 }
2648
2649 /** Update resizing notes while user drags.
2650  * @param primary `primary' note for the drag; ie the one that is used as the reference in non-relative mode.
2651  * @param at_front which end of the note (true == note on, false == note off)
2652  * @param delta_x change in mouse position since the start of the drag
2653  * @param relative true if relative resizing is taking place, false if absolute resizing.  This only makes
2654  * a difference when multiple notes are being resized; in relative mode, each note's length is changed by the
2655  * amount of the drag.  In non-relative mode, all selected notes are set to have the same start or end point
2656  * as the \a primary note.
2657  */
2658 void
2659 MidiRegionView::update_resizing (NoteBase* primary, bool at_front, double delta_x, bool relative)
2660 {
2661         bool cursor_set = false;
2662
2663         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
2664                 ArdourCanvas::Rectangle* resize_rect = (*i)->resize_rect;
2665                 Note* canvas_note = (*i)->note;
2666                 double current_x;
2667
2668                 if (at_front) {
2669                         if (relative) {
2670                                 current_x = canvas_note->x0() + delta_x;
2671                         } else {
2672                                 current_x = primary->x0() + delta_x;
2673                         }
2674                 } else {
2675                         if (relative) {
2676                                 current_x = canvas_note->x1() + delta_x;
2677                         } else {
2678                                 current_x = primary->x1() + delta_x;
2679                         }
2680                 }
2681
2682                 if (current_x < 0) {
2683                         // This works even with snapping because RegionView::snap_frame_to_frame()
2684                         // snaps forward if the snapped sample is before the beginning of the region
2685                         current_x = 0;
2686                 }
2687                 if (current_x > trackview.editor().sample_to_pixel(_region->length())) {
2688                         current_x = trackview.editor().sample_to_pixel(_region->length());
2689                 }
2690
2691                 if (at_front) {
2692                         resize_rect->set_x0 (snap_to_pixel(current_x));
2693                         resize_rect->set_x1 (canvas_note->x1());
2694                 } else {
2695                         resize_rect->set_x1 (snap_to_pixel(current_x));
2696                         resize_rect->set_x0 (canvas_note->x0());
2697                 }
2698
2699                 if (!cursor_set) {
2700                         const double        snapped_x = snap_pixel_to_sample (current_x);
2701                         Evoral::MusicalTime beats     = region_frames_to_region_beats (snapped_x);
2702                         Evoral::MusicalTime len       = Evoral::MusicalTime();
2703
2704                         if (at_front) {
2705                                 if (beats < canvas_note->note()->end_time()) {
2706                                         len = canvas_note->note()->time() - beats;
2707                                         len += canvas_note->note()->length();
2708                                 }
2709                         } else {
2710                                 if (beats >= canvas_note->note()->time()) {
2711                                         len = beats - canvas_note->note()->time();
2712                                 }
2713                         }
2714
2715                         char buf[16];
2716                         snprintf (buf, sizeof (buf), "%.3g beats", len.to_double());
2717                         show_verbose_cursor (buf, 0, 0);
2718
2719                         cursor_set = true;
2720                 }
2721
2722         }
2723 }
2724
2725
2726 /** Finish resizing notes when the user releases the mouse button.
2727  *  Parameters the same as for \a update_resizing().
2728  */
2729 void
2730 MidiRegionView::commit_resizing (NoteBase* primary, bool at_front, double delta_x, bool relative)
2731 {
2732         start_note_diff_command (_("resize notes"));
2733
2734         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
2735                 Note*  canvas_note = (*i)->note;
2736                 ArdourCanvas::Rectangle*  resize_rect = (*i)->resize_rect;
2737
2738                 /* Get the new x position for this resize, which is in pixels relative
2739                  * to the region position.
2740                  */
2741                 
2742                 double current_x;
2743
2744                 if (at_front) {
2745                         if (relative) {
2746                                 current_x = canvas_note->x0() + delta_x;
2747                         } else {
2748                                 current_x = primary->x0() + delta_x;
2749                         }
2750                 } else {
2751                         if (relative) {
2752                                 current_x = canvas_note->x1() + delta_x;
2753                         } else {
2754                                 current_x = primary->x1() + delta_x;
2755                         }
2756                 }
2757
2758                 if (current_x < 0) {
2759                         current_x = 0;
2760                 }
2761                 if (current_x > trackview.editor().sample_to_pixel(_region->length())) {
2762                         current_x = trackview.editor().sample_to_pixel(_region->length());
2763                 }
2764
2765                 /* Convert that to a frame within the source */
2766                 current_x = snap_pixel_to_sample (current_x) + _region->start ();
2767
2768                 /* and then to beats */
2769                 const Evoral::MusicalTime x_beats = region_frames_to_region_beats (current_x);
2770
2771                 if (at_front && x_beats < canvas_note->note()->end_time()) {
2772                         note_diff_add_change (canvas_note, MidiModel::NoteDiffCommand::StartTime, x_beats);
2773
2774                         Evoral::MusicalTime len = canvas_note->note()->time() - x_beats;
2775                         len += canvas_note->note()->length();
2776
2777                         if (!!len) {
2778                                 note_diff_add_change (canvas_note, MidiModel::NoteDiffCommand::Length, len);
2779                         }
2780                 }
2781
2782                 if (!at_front) {
2783                         const Evoral::MusicalTime len = x_beats - canvas_note->note()->time();
2784
2785                         if (!!len) {
2786                                 /* XXX convert to beats */
2787                                 note_diff_add_change (canvas_note, MidiModel::NoteDiffCommand::Length, len);
2788                         }
2789                 }
2790
2791                 delete resize_rect;
2792                 delete (*i);
2793         }
2794
2795         _resize_data.clear();
2796         apply_diff();
2797 }
2798
2799 void
2800 MidiRegionView::abort_resizing ()
2801 {
2802         for (std::vector<NoteResizeData *>::iterator i = _resize_data.begin(); i != _resize_data.end(); ++i) {
2803                 delete (*i)->resize_rect;
2804                 delete *i;
2805         }
2806
2807         _resize_data.clear ();
2808 }
2809
2810 void
2811 MidiRegionView::change_note_velocity(NoteBase* event, int8_t velocity, bool relative)
2812 {
2813         uint8_t new_velocity;
2814
2815         if (relative) {
2816                 new_velocity = event->note()->velocity() + velocity;
2817                 clamp_to_0_127(new_velocity);
2818         } else {
2819                 new_velocity = velocity;
2820         }
2821
2822         event->set_selected (event->selected()); // change color
2823
2824         note_diff_add_change (event, MidiModel::NoteDiffCommand::Velocity, new_velocity);
2825 }
2826
2827 void
2828 MidiRegionView::change_note_note (NoteBase* event, int8_t note, bool relative)
2829 {
2830         uint8_t new_note;
2831
2832         if (relative) {
2833                 new_note = event->note()->note() + note;
2834         } else {
2835                 new_note = note;
2836         }
2837
2838         clamp_to_0_127 (new_note);
2839         note_diff_add_change (event, MidiModel::NoteDiffCommand::NoteNumber, new_note);
2840 }
2841
2842 void
2843 MidiRegionView::trim_note (NoteBase* event, Evoral::MusicalTime front_delta, Evoral::MusicalTime end_delta)
2844 {
2845         bool change_start = false;
2846         bool change_length = false;
2847         Evoral::MusicalTime new_start;
2848         Evoral::MusicalTime new_length;
2849
2850         /* NOTE: the semantics of the two delta arguments are slightly subtle:
2851
2852            front_delta: if positive - move the start of the note later in time (shortening it)
2853            if negative - move the start of the note earlier in time (lengthening it)
2854
2855            end_delta:   if positive - move the end of the note later in time (lengthening it)
2856            if negative - move the end of the note earlier in time (shortening it)
2857         */
2858
2859         if (!!front_delta) {
2860                 if (front_delta < 0) {
2861
2862                         if (event->note()->time() < -front_delta) {
2863                                 new_start = Evoral::MusicalTime();
2864                         } else {
2865                                 new_start = event->note()->time() + front_delta; // moves earlier
2866                         }
2867
2868                         /* start moved toward zero, so move the end point out to where it used to be.
2869                            Note that front_delta is negative, so this increases the length.
2870                         */
2871
2872                         new_length = event->note()->length() - front_delta;
2873                         change_start = true;
2874                         change_length = true;
2875
2876                 } else {
2877
2878                         Evoral::MusicalTime new_pos = event->note()->time() + front_delta;
2879
2880                         if (new_pos < event->note()->end_time()) {
2881                                 new_start = event->note()->time() + front_delta;
2882                                 /* start moved toward the end, so move the end point back to where it used to be */
2883                                 new_length = event->note()->length() - front_delta;
2884                                 change_start = true;
2885                                 change_length = true;
2886                         }
2887                 }
2888
2889         }
2890
2891         if (!!end_delta) {
2892                 bool can_change = true;
2893                 if (end_delta < 0) {
2894                         if (event->note()->length() < -end_delta) {
2895                                 can_change = false;
2896                         }
2897                 }
2898
2899                 if (can_change) {
2900                         new_length = event->note()->length() + end_delta;
2901                         change_length = true;
2902                 }
2903         }
2904
2905         if (change_start) {
2906                 note_diff_add_change (event, MidiModel::NoteDiffCommand::StartTime, new_start);
2907         }
2908
2909         if (change_length) {
2910                 note_diff_add_change (event, MidiModel::NoteDiffCommand::Length, new_length);
2911         }
2912 }
2913
2914 void
2915 MidiRegionView::change_note_channel (NoteBase* event, int8_t chn, bool relative)
2916 {
2917         uint8_t new_channel;
2918
2919         if (relative) {
2920                 if (chn < 0.0) {
2921                         if (event->note()->channel() < -chn) {
2922                                 new_channel = 0;
2923                         } else {
2924                                 new_channel = event->note()->channel() + chn;
2925                         }
2926                 } else {
2927                         new_channel = event->note()->channel() + chn;
2928                 }
2929         } else {
2930                 new_channel = (uint8_t) chn;
2931         }
2932
2933         note_diff_add_change (event, MidiModel::NoteDiffCommand::Channel, new_channel);
2934 }
2935
2936 void
2937 MidiRegionView::change_note_time (NoteBase* event, Evoral::MusicalTime delta, bool relative)
2938 {
2939         Evoral::MusicalTime new_time;
2940
2941         if (relative) {
2942                 if (delta < 0.0) {
2943                         if (event->note()->time() < -delta) {
2944                                 new_time = Evoral::MusicalTime();
2945                         } else {
2946                                 new_time = event->note()->time() + delta;
2947                         }
2948                 } else {
2949                         new_time = event->note()->time() + delta;
2950                 }
2951         } else {
2952                 new_time = delta;
2953         }
2954
2955         note_diff_add_change (event, MidiModel::NoteDiffCommand::StartTime, new_time);
2956 }
2957
2958 void
2959 MidiRegionView::change_note_length (NoteBase* event, Evoral::MusicalTime t)
2960 {
2961         note_diff_add_change (event, MidiModel::NoteDiffCommand::Length, t);
2962 }
2963
2964 void
2965 MidiRegionView::change_velocities (bool up, bool fine, bool allow_smush, bool all_together)
2966 {
2967         int8_t delta;
2968         int8_t value = 0;
2969
2970         if (_selection.empty()) {
2971                 return;
2972         }
2973
2974         if (fine) {
2975                 delta = 1;
2976         } else {
2977                 delta = 10;
2978         }
2979
2980         if (!up) {
2981                 delta = -delta;
2982         }
2983
2984         if (!allow_smush) {
2985                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
2986                         if ((*i)->note()->velocity() < -delta || (*i)->note()->velocity() + delta > 127) {
2987                                 goto cursor_label;
2988                         }
2989                 }
2990         }
2991
2992         start_note_diff_command (_("change velocities"));
2993
2994         for (Selection::iterator i = _selection.begin(); i != _selection.end();) {
2995                 Selection::iterator next = i;
2996                 ++next;
2997
2998                 if (all_together) {
2999                         if (i == _selection.begin()) {
3000                                 change_note_velocity (*i, delta, true);
3001                                 value = (*i)->note()->velocity() + delta;
3002                         } else {
3003                                 change_note_velocity (*i, value, false);
3004                         }
3005
3006                 } else {
3007                         change_note_velocity (*i, delta, true);
3008                 }
3009
3010                 i = next;
3011         }
3012
3013         apply_diff();
3014
3015   cursor_label:
3016         if (!_selection.empty()) {
3017                 char buf[24];
3018                 snprintf (buf, sizeof (buf), "Vel %d",
3019                           (int) (*_selection.begin())->note()->velocity());
3020                 show_verbose_cursor (buf, 10, 10);
3021         }
3022 }
3023
3024
3025 void
3026 MidiRegionView::transpose (bool up, bool fine, bool allow_smush)
3027 {
3028         if (_selection.empty()) {
3029                 return;
3030         }
3031
3032         int8_t delta;
3033
3034         if (fine) {
3035                 delta = 1;
3036         } else {
3037                 delta = 12;
3038         }
3039
3040         if (!up) {
3041                 delta = -delta;
3042         }
3043
3044         if (!allow_smush) {
3045                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
3046                         if (!up) {
3047                                 if ((int8_t) (*i)->note()->note() + delta <= 0) {
3048                                         return;
3049                                 }
3050                         } else {
3051                                 if ((int8_t) (*i)->note()->note() + delta > 127) {
3052                                         return;
3053                                 }
3054                         }
3055                 }
3056         }
3057
3058         start_note_diff_command (_("transpose"));
3059
3060         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
3061                 Selection::iterator next = i;
3062                 ++next;
3063                 change_note_note (*i, delta, true);
3064                 i = next;
3065         }
3066
3067         apply_diff ();
3068 }
3069
3070 void
3071 MidiRegionView::change_note_lengths (bool fine, bool shorter, Evoral::MusicalTime delta, bool start, bool end)
3072 {
3073         if (!delta) {
3074                 if (fine) {
3075                         delta = Evoral::MusicalTime(1.0/128.0);
3076                 } else {
3077                         /* grab the current grid distance */
3078                         delta = get_grid_beats(_region->position());
3079                 }
3080         }
3081
3082         if (shorter) {
3083                 delta = -delta;
3084         }
3085
3086         start_note_diff_command (_("change note lengths"));
3087
3088         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
3089                 Selection::iterator next = i;
3090                 ++next;
3091
3092                 /* note the negation of the delta for start */
3093
3094                 trim_note (*i,
3095                            (start ? -delta : Evoral::MusicalTime()),
3096                            (end   ? delta  : Evoral::MusicalTime()));
3097                 i = next;
3098         }
3099
3100         apply_diff ();
3101
3102 }
3103
3104 void
3105 MidiRegionView::nudge_notes (bool forward, bool fine)
3106 {
3107         if (_selection.empty()) {
3108                 return;
3109         }
3110
3111         /* pick a note as the point along the timeline to get the nudge distance.
3112            its not necessarily the earliest note, so we may want to pull the notes out
3113            into a vector and sort before using the first one.
3114         */
3115
3116         const framepos_t    ref_point = source_beats_to_absolute_frames ((*(_selection.begin()))->note()->time());
3117         Evoral::MusicalTime delta;
3118
3119         if (!fine) {
3120
3121                 /* non-fine, move by 1 bar regardless of snap */
3122                 delta = Evoral::MusicalTime(trackview.session()->tempo_map().meter_at(ref_point).divisions_per_bar());
3123
3124         } else if (trackview.editor().snap_mode() == Editing::SnapOff) {
3125
3126                 /* grid is off - use nudge distance */
3127
3128                 framepos_t       unused;
3129                 const framecnt_t distance = trackview.editor().get_nudge_distance (ref_point, unused);
3130                 delta = region_frames_to_region_beats (fabs ((double)distance));
3131
3132         } else {
3133
3134                 /* use grid */
3135
3136                 framepos_t next_pos = ref_point;
3137
3138                 if (forward) {
3139                         if (max_framepos - 1 < next_pos) {
3140                                 next_pos += 1;
3141                         }
3142                 } else {
3143                         if (next_pos == 0) {
3144                                 return;
3145                         }
3146                         next_pos -= 1;
3147                 }
3148
3149                 trackview.editor().snap_to (next_pos, (forward ? RoundUpAlways : RoundDownAlways), false);
3150                 const framecnt_t distance = ref_point - next_pos;
3151                 delta = region_frames_to_region_beats (fabs ((double)distance));
3152         }
3153
3154         if (!delta) {
3155                 return;
3156         }
3157
3158         if (!forward) {
3159                 delta = -delta;
3160         }
3161
3162         start_note_diff_command (_("nudge"));
3163
3164         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ) {
3165                 Selection::iterator next = i;
3166                 ++next;
3167                 change_note_time (*i, delta, true);
3168                 i = next;
3169         }
3170
3171         apply_diff ();
3172 }
3173
3174 void
3175 MidiRegionView::change_channel(uint8_t channel)
3176 {
3177         start_note_diff_command(_("change channel"));
3178         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
3179                 note_diff_add_change (*i, MidiModel::NoteDiffCommand::Channel, channel);
3180         }
3181
3182         apply_diff();
3183 }
3184
3185
3186 void
3187 MidiRegionView::note_entered(NoteBase* ev)
3188 {
3189         Editor* editor = dynamic_cast<Editor*>(&trackview.editor());
3190
3191         pre_note_enter_cursor = editor->get_canvas_cursor ();
3192
3193         if (_mouse_state == SelectTouchDragging) {
3194                 note_selected (ev, true);
3195         }
3196
3197         show_verbose_cursor (ev->note ());
3198 }
3199
3200 void
3201 MidiRegionView::note_left (NoteBase*)
3202 {
3203         Editor* editor = dynamic_cast<Editor*>(&trackview.editor());
3204
3205         for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
3206                 (*i)->hide_velocity ();
3207         }
3208
3209         editor->verbose_cursor()->hide ();
3210
3211         if (pre_note_enter_cursor) {
3212                 editor->set_canvas_cursor (pre_note_enter_cursor);
3213                 pre_note_enter_cursor = 0;
3214         }
3215 }
3216
3217 void
3218 MidiRegionView::patch_entered (PatchChange* p)
3219 {
3220         ostringstream s;
3221         /* XXX should get patch name if we can */
3222         s << _("Bank ") << (p->patch()->bank() + MIDI_BP_ZERO) << '\n' 
3223           << _("Program ") << ((int) p->patch()->program()) + MIDI_BP_ZERO << '\n' 
3224           << _("Channel ") << ((int) p->patch()->channel() + 1);
3225         show_verbose_cursor (s.str(), 10, 20);
3226         p->item().grab_focus();
3227 }
3228
3229 void
3230 MidiRegionView::patch_left (PatchChange *)
3231 {
3232         trackview.editor().verbose_cursor()->hide ();
3233         /* focus will transfer back via the enter-notify event sent to this
3234          * midi region view.
3235          */
3236 }
3237
3238 void
3239 MidiRegionView::sysex_entered (SysEx* p)
3240 {
3241         ostringstream s;
3242         // CAIROCANVAS
3243         // need a way to extract text from p->_flag->_text
3244         // s << p->text();
3245         // show_verbose_cursor (s.str(), 10, 20);
3246         p->item().grab_focus();
3247 }
3248
3249 void
3250 MidiRegionView::sysex_left (SysEx *)
3251 {
3252         trackview.editor().verbose_cursor()->hide ();
3253         /* focus will transfer back via the enter-notify event sent to this
3254          * midi region view.
3255          */
3256 }
3257
3258 void
3259 MidiRegionView::note_mouse_position (float x_fraction, float /*y_fraction*/, bool can_set_cursor)
3260 {
3261         Editor* editor = dynamic_cast<Editor*>(&trackview.editor());
3262         Editing::MouseMode mm = editor->current_mouse_mode();
3263         bool trimmable = (mm == MouseObject || mm == MouseTimeFX || mm == MouseDraw);
3264
3265         if (can_set_cursor) {
3266                 if (trimmable && x_fraction > 0.0 && x_fraction < 0.2) {
3267                         editor->set_canvas_cursor (editor->cursors()->left_side_trim);
3268                 } else if (trimmable && x_fraction >= 0.8 && x_fraction < 1.0) {
3269                         editor->set_canvas_cursor (editor->cursors()->right_side_trim);
3270                 } else if (pre_note_enter_cursor) {
3271                         editor->set_canvas_cursor (pre_note_enter_cursor);
3272                 }
3273         }
3274 }
3275
3276 void
3277 MidiRegionView::set_frame_color()
3278 {
3279         uint32_t f;
3280
3281         TimeAxisViewItem::set_frame_color ();
3282
3283         if (!frame) {
3284                 return;
3285         }
3286
3287         if (_selected) {
3288                 f = ARDOUR_UI::config()->color ("selected region base");
3289         } else if (high_enough_for_name || !ARDOUR_UI::config()->get_color_regions_using_track_color()) {
3290                 f = ARDOUR_UI::config()->color_mod ("midi frame base", "midi frame base");
3291         } else {
3292                 f = fill_color;
3293         }
3294
3295         if (!rect_visible) {
3296                 f = UINT_RGBA_CHANGE_A (f, 80);
3297         }
3298
3299         frame->set_fill_color (f);
3300 }
3301
3302 void
3303 MidiRegionView::midi_channel_mode_changed ()
3304 {
3305         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
3306         uint16_t mask = mtv->midi_track()->get_playback_channel_mask();
3307         ChannelMode mode = mtv->midi_track()->get_playback_channel_mode ();
3308
3309         if (mode == ForceChannel) {
3310                 mask = 0xFFFF; // Show all notes as active (below)
3311         }
3312
3313         // Update notes for selection
3314         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
3315                 (*i)->on_channel_selection_change (mask);
3316         }
3317
3318         _patch_changes.clear ();
3319         display_patch_changes ();
3320 }
3321
3322 void
3323 MidiRegionView::instrument_settings_changed ()
3324 {
3325         redisplay_model();
3326 }
3327
3328 void
3329 MidiRegionView::cut_copy_clear (Editing::CutCopyOp op)
3330 {
3331         if (_selection.empty()) {
3332                 return;
3333         }
3334
3335         PublicEditor& editor (trackview.editor());
3336
3337         switch (op) {
3338         case Delete:
3339                 /* XXX what to do ? */
3340                 break;
3341         case Cut:
3342         case Copy:
3343                 editor.get_cut_buffer().add (selection_as_cut_buffer());
3344                 break;
3345         default:
3346                 break;
3347         }
3348
3349         if (op != Copy) {
3350
3351                 start_note_diff_command();
3352
3353                 for (Selection::iterator i = _selection.begin(); i != _selection.end(); ++i) {
3354                         switch (op) {
3355                         case Copy:
3356                                 break;
3357                         case Delete:
3358                         case Cut:
3359                         case Clear:
3360                                 note_diff_remove_note (*i);
3361                                 break;
3362                         }
3363                 }
3364
3365                 apply_diff();
3366         }
3367 }
3368
3369 MidiCutBuffer*
3370 MidiRegionView::selection_as_cut_buffer () const
3371 {
3372         Notes notes;
3373
3374         for (Selection::const_iterator i = _selection.begin(); i != _selection.end(); ++i) {
3375                 NoteType* n = (*i)->note().get();
3376                 notes.insert (boost::shared_ptr<NoteType> (new NoteType (*n)));
3377         }
3378
3379         MidiCutBuffer* cb = new MidiCutBuffer (trackview.session());
3380         cb->set (notes);
3381
3382         return cb;
3383 }
3384
3385 /** This method handles undo */
3386 bool
3387 MidiRegionView::paste (framepos_t pos, const ::Selection& selection, PasteContext& ctx)
3388 {
3389         trackview.session()->begin_reversible_command (Operations::paste);
3390
3391         // Paste notes, if available
3392         MidiNoteSelection::const_iterator m = selection.midi_notes.get_nth(ctx.counts.n_notes());
3393         if (m != selection.midi_notes.end()) {
3394                 ctx.counts.increase_n_notes();
3395                 paste_internal(pos, ctx.count, ctx.times, **m);
3396         }
3397
3398         // Paste control points to automation children, if available
3399         typedef RouteTimeAxisView::AutomationTracks ATracks;
3400         const ATracks& atracks = midi_view()->automation_tracks();
3401         for (ATracks::const_iterator a = atracks.begin(); a != atracks.end(); ++a) {
3402                 a->second->paste(pos, selection, ctx);
3403         }
3404
3405         trackview.session()->commit_reversible_command ();
3406
3407         return true;
3408 }
3409
3410 /** This method handles undo */
3411 void
3412 MidiRegionView::paste_internal (framepos_t pos, unsigned paste_count, float times, const MidiCutBuffer& mcb)
3413 {
3414         if (mcb.empty()) {
3415                 return;
3416         }
3417
3418         start_note_diff_command (_("paste"));
3419
3420         const Evoral::MusicalTime snap_beats    = get_grid_beats(pos);
3421         const Evoral::MusicalTime first_time    = (*mcb.notes().begin())->time();
3422         const Evoral::MusicalTime last_time     = (*mcb.notes().rbegin())->end_time();
3423         const Evoral::MusicalTime duration      = last_time - first_time;
3424         const Evoral::MusicalTime snap_duration = duration.snap_to(snap_beats);
3425         const Evoral::MusicalTime paste_offset  = snap_duration * paste_count;
3426         const Evoral::MusicalTime pos_beats     = absolute_frames_to_source_beats(pos) + paste_offset;
3427         Evoral::MusicalTime       end_point     = Evoral::MusicalTime();
3428
3429         DEBUG_TRACE (DEBUG::CutNPaste, string_compose ("Paste data spans from %1 to %2 (%3) ; paste pos beats = %4 (based on %5 - %6)\n",
3430                                                        first_time,
3431                                                        last_time,
3432                                                        duration, pos, _region->position(),
3433                                                        pos_beats));
3434
3435         clear_selection ();
3436
3437         for (int n = 0; n < (int) times; ++n) {
3438
3439                 for (Notes::const_iterator i = mcb.notes().begin(); i != mcb.notes().end(); ++i) {
3440
3441                         boost::shared_ptr<NoteType> copied_note (new NoteType (*((*i).get())));
3442                         copied_note->set_time (pos_beats + copied_note->time() - first_time);
3443
3444                         /* make all newly added notes selected */
3445
3446                         note_diff_add_note (copied_note, true);
3447                         end_point = copied_note->end_time();
3448                 }
3449         }
3450
3451         /* if we pasted past the current end of the region, extend the region */
3452
3453         framepos_t end_frame = source_beats_to_absolute_frames (end_point);
3454         framepos_t region_end = _region->position() + _region->length() - 1;
3455
3456         if (end_frame > region_end) {
3457
3458                 DEBUG_TRACE (DEBUG::CutNPaste, string_compose ("Paste extended region from %1 to %2\n", region_end, end_frame));
3459
3460                 _region->clear_changes ();
3461                 _region->set_length (end_frame - _region->position());
3462                 trackview.session()->add_command (new StatefulDiffCommand (_region));
3463         }
3464
3465         apply_diff (true);
3466 }
3467
3468 struct EventNoteTimeEarlyFirstComparator {
3469         bool operator() (NoteBase* a, NoteBase* b) {
3470                 return a->note()->time() < b->note()->time();
3471         }
3472 };
3473
3474 void
3475 MidiRegionView::time_sort_events ()
3476 {
3477         if (!_sort_needed) {
3478                 return;
3479         }
3480
3481         EventNoteTimeEarlyFirstComparator cmp;
3482         _events.sort (cmp);
3483
3484         _sort_needed = false;
3485 }
3486
3487 void
3488 MidiRegionView::goto_next_note (bool add_to_selection)
3489 {
3490         bool use_next = false;
3491
3492         if (_events.back()->selected()) {
3493                 return;
3494         }
3495
3496         time_sort_events ();
3497
3498         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
3499         uint16_t const channel_mask = mtv->midi_track()->get_playback_channel_mask();
3500
3501         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
3502                 if ((*i)->selected()) {
3503                         use_next = true;
3504                         continue;
3505                 } else if (use_next) {
3506                         if (channel_mask & (1 << (*i)->note()->channel())) {
3507                                 if (!add_to_selection) {
3508                                         unique_select (*i);
3509                                 } else {
3510                                         note_selected (*i, true, false);
3511                                 }
3512                                 return;
3513                         }
3514                 }
3515         }
3516
3517         /* use the first one */
3518
3519         if (!_events.empty() && (channel_mask & (1 << _events.front()->note()->channel ()))) {
3520                 unique_select (_events.front());
3521         }
3522 }
3523
3524 void
3525 MidiRegionView::goto_previous_note (bool add_to_selection)
3526 {
3527         bool use_next = false;
3528
3529         if (_events.front()->selected()) {
3530                 return;
3531         }
3532
3533         time_sort_events ();
3534
3535         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
3536         uint16_t const channel_mask = mtv->midi_track()->get_playback_channel_mask ();
3537
3538         for (Events::reverse_iterator i = _events.rbegin(); i != _events.rend(); ++i) {
3539                 if ((*i)->selected()) {
3540                         use_next = true;
3541                         continue;
3542                 } else if (use_next) {
3543                         if (channel_mask & (1 << (*i)->note()->channel())) {
3544                                 if (!add_to_selection) {
3545                                         unique_select (*i);
3546                                 } else {
3547                                         note_selected (*i, true, false);
3548                                 }
3549                                 return;
3550                         }
3551                 }
3552         }
3553
3554         /* use the last one */
3555
3556         if (!_events.empty() && (channel_mask & (1 << (*_events.rbegin())->note()->channel ()))) {
3557                 unique_select (*(_events.rbegin()));
3558         }
3559 }
3560
3561 void
3562 MidiRegionView::selection_as_notelist (Notes& selected, bool allow_all_if_none_selected)
3563 {
3564         bool had_selected = false;
3565
3566         time_sort_events ();
3567
3568         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
3569                 if ((*i)->selected()) {
3570                         selected.insert ((*i)->note());
3571                         had_selected = true;
3572                 }
3573         }
3574
3575         if (allow_all_if_none_selected && !had_selected) {
3576                 for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
3577                         selected.insert ((*i)->note());
3578                 }
3579         }
3580 }
3581
3582 void
3583 MidiRegionView::update_ghost_note (double x, double y)
3584 {
3585         x = std::max(0.0, x);
3586
3587         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
3588
3589         _last_ghost_x = x;
3590         _last_ghost_y = y;
3591
3592         _note_group->canvas_to_item (x, y);
3593
3594         PublicEditor& editor = trackview.editor ();
3595         
3596         framepos_t const unsnapped_frame = editor.pixel_to_sample (x);
3597         framecnt_t grid_frames;
3598         framepos_t const f = snap_frame_to_grid_underneath (unsnapped_frame, grid_frames);
3599
3600         /* use region_frames... because we are converting a delta within the region
3601         */
3602          
3603         const Evoral::MusicalTime length = get_grid_beats(unsnapped_frame);
3604
3605         /* note that this sets the time of the ghost note in beats relative to
3606            the start of the source; that is how all note times are stored.
3607         */
3608         _ghost_note->note()->set_time (
3609                 std::max(Evoral::MusicalTime(),
3610                          absolute_frames_to_source_beats (f + _region->position ())));
3611         _ghost_note->note()->set_length (length);
3612         _ghost_note->note()->set_note (midi_stream_view()->y_to_note (y));
3613         _ghost_note->note()->set_channel (mtv->get_channel_for_add ());
3614
3615         /* the ghost note does not appear in ghost regions, so pass false in here */
3616         update_note (_ghost_note, false);
3617
3618         show_verbose_cursor (_ghost_note->note ());
3619 }
3620
3621 void
3622 MidiRegionView::create_ghost_note (double x, double y)
3623 {
3624         remove_ghost_note ();
3625
3626         boost::shared_ptr<NoteType> g (new NoteType);
3627         _ghost_note = new Note (*this, _note_group, g);
3628         _ghost_note->set_ignore_events (true);
3629         _ghost_note->set_outline_color (0x000000aa);
3630         update_ghost_note (x, y);
3631         _ghost_note->show ();
3632
3633         show_verbose_cursor (_ghost_note->note ());
3634 }
3635
3636 void
3637 MidiRegionView::remove_ghost_note ()
3638 {
3639         delete _ghost_note;
3640         _ghost_note = 0;
3641 }
3642
3643 void
3644 MidiRegionView::snap_changed ()
3645 {
3646         if (!_ghost_note) {
3647                 return;
3648         }
3649
3650         create_ghost_note (_last_ghost_x, _last_ghost_y);
3651 }
3652
3653 void
3654 MidiRegionView::drop_down_keys ()
3655 {
3656         _mouse_state = None;
3657 }
3658
3659 void
3660 MidiRegionView::maybe_select_by_position (GdkEventButton* ev, double /*x*/, double y)
3661 {
3662         /* XXX: This is dead code.  What was it for? */
3663
3664         double note = midi_stream_view()->y_to_note(y);
3665         Events e;
3666         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
3667
3668         uint16_t chn_mask = mtv->midi_track()->get_playback_channel_mask();
3669
3670         if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
3671                 get_events (e, Evoral::Sequence<Evoral::MusicalTime>::PitchGreaterThanOrEqual, (uint8_t) floor (note), chn_mask);
3672         } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
3673                 get_events (e, Evoral::Sequence<Evoral::MusicalTime>::PitchLessThanOrEqual, (uint8_t) floor (note), chn_mask);
3674         } else {
3675                 return;
3676         }
3677
3678         bool add_mrv_selection = false;
3679
3680         if (_selection.empty()) {
3681                 add_mrv_selection = true;
3682         }
3683
3684         for (Events::iterator i = e.begin(); i != e.end(); ++i) {
3685                 if (_selection.insert (*i).second) {
3686                         (*i)->set_selected (true);
3687                 }
3688         }
3689
3690         if (add_mrv_selection) {
3691                 PublicEditor& editor (trackview.editor());
3692                 editor.get_selection().add (this);
3693         }
3694 }
3695
3696 void
3697 MidiRegionView::color_handler ()
3698 {
3699         RegionView::color_handler ();
3700
3701         for (Events::iterator i = _events.begin(); i != _events.end(); ++i) {
3702                 (*i)->set_selected ((*i)->selected()); // will change color
3703         }
3704
3705         /* XXX probably more to do here */
3706 }
3707
3708 void
3709 MidiRegionView::enable_display (bool yn)
3710 {
3711         RegionView::enable_display (yn);
3712         if (yn) {
3713                 redisplay_model ();
3714         }
3715 }
3716
3717 void
3718 MidiRegionView::show_step_edit_cursor (Evoral::MusicalTime pos)
3719 {
3720         if (_step_edit_cursor == 0) {
3721                 ArdourCanvas::Item* const group = get_canvas_group();
3722
3723                 _step_edit_cursor = new ArdourCanvas::Rectangle (group);
3724                 _step_edit_cursor->set_y0 (0);
3725                 _step_edit_cursor->set_y1 (midi_stream_view()->contents_height());
3726                 _step_edit_cursor->set_fill_color (RGBA_TO_UINT (45,0,0,90));
3727                 _step_edit_cursor->set_outline_color (RGBA_TO_UINT (85,0,0,90));
3728         }
3729
3730         move_step_edit_cursor (pos);
3731         _step_edit_cursor->show ();
3732 }
3733
3734 void
3735 MidiRegionView::move_step_edit_cursor (Evoral::MusicalTime pos)
3736 {
3737         _step_edit_cursor_position = pos;
3738
3739         if (_step_edit_cursor) {
3740                 double pixel = trackview.editor().sample_to_pixel (region_beats_to_region_frames (pos));
3741                 _step_edit_cursor->set_x0 (pixel);
3742                 set_step_edit_cursor_width (_step_edit_cursor_width);
3743         }
3744 }
3745
3746 void
3747 MidiRegionView::hide_step_edit_cursor ()
3748 {
3749         if (_step_edit_cursor) {
3750                 _step_edit_cursor->hide ();
3751         }
3752 }
3753
3754 void
3755 MidiRegionView::set_step_edit_cursor_width (Evoral::MusicalTime beats)
3756 {
3757         _step_edit_cursor_width = beats;
3758
3759         if (_step_edit_cursor) {
3760                 _step_edit_cursor->set_x1 (_step_edit_cursor->x0() + trackview.editor().sample_to_pixel (region_beats_to_region_frames (beats)));
3761         }
3762 }
3763
3764 /** Called when a diskstream on our track has received some data.  Update the view, if applicable.
3765  *  @param w Source that the data will end up in.
3766  */
3767 void
3768 MidiRegionView::data_recorded (boost::weak_ptr<MidiSource> w)
3769 {
3770         if (!_active_notes) {
3771                 /* we aren't actively being recorded to */
3772                 return;
3773         }
3774
3775         boost::shared_ptr<MidiSource> src = w.lock ();
3776         if (!src || src != midi_region()->midi_source()) {
3777                 /* recorded data was not destined for our source */
3778                 return;
3779         }
3780
3781         MidiTimeAxisView* mtv = dynamic_cast<MidiTimeAxisView*> (&trackview);
3782
3783         boost::shared_ptr<MidiBuffer> buf = mtv->midi_track()->get_gui_feed_buffer ();
3784
3785         framepos_t back = max_framepos;
3786
3787         for (MidiBuffer::iterator i = buf->begin(); i != buf->end(); ++i) {
3788                 Evoral::MIDIEvent<MidiBuffer::TimeType> const ev (*i, false);
3789
3790                 if (ev.is_channel_event()) {
3791                         if (get_channel_mode() == FilterChannels) {
3792                                 if (((uint16_t(1) << ev.channel()) & get_selected_channels()) == 0) {
3793                                         continue;
3794                                 }
3795                         }
3796                 }
3797
3798                 /* convert from session frames to source beats */
3799                 Evoral::MusicalTime const time_beats = _source_relative_time_converter.from(ev.time());
3800
3801                 if (ev.type() == MIDI_CMD_NOTE_ON) {
3802                         boost::shared_ptr<NoteType> note (
3803                                 new NoteType (ev.channel(), time_beats, Evoral::MusicalTime(), ev.note(), ev.velocity()));
3804
3805                         add_note (note, true);
3806
3807                         /* fix up our note range */
3808                         if (ev.note() < _current_range_min) {
3809                                 midi_stream_view()->apply_note_range (ev.note(), _current_range_max, true);
3810                         } else if (ev.note() > _current_range_max) {
3811                                 midi_stream_view()->apply_note_range (_current_range_min, ev.note(), true);
3812                         }
3813
3814                 } else if (ev.type() == MIDI_CMD_NOTE_OFF) {
3815                         resolve_note (ev.note (), time_beats);
3816                 }
3817
3818                 back = ev.time ();
3819         }
3820
3821         midi_stream_view()->check_record_layers (region(), back);
3822 }
3823
3824 void
3825 MidiRegionView::trim_front_starting ()
3826 {
3827         /* Reparent the note group to the region view's parent, so that it doesn't change
3828            when the region view is trimmed.
3829         */
3830         _temporary_note_group = new ArdourCanvas::Container (group->parent ());
3831         _temporary_note_group->move (group->position ());
3832         _note_group->reparent (_temporary_note_group);
3833 }
3834
3835 void
3836 MidiRegionView::trim_front_ending ()
3837 {
3838         _note_group->reparent (group);
3839         delete _temporary_note_group;
3840         _temporary_note_group = 0;
3841
3842         if (_region->start() < 0) {
3843                 /* Trim drag made start time -ve; fix this */
3844                 midi_region()->fix_negative_start ();
3845         }
3846 }
3847
3848 void
3849 MidiRegionView::edit_patch_change (PatchChange* pc)
3850 {
3851         PatchChangeDialog d (&_source_relative_time_converter, trackview.session(), *pc->patch (), instrument_info(), Gtk::Stock::APPLY, true);
3852
3853         int response = d.run();
3854
3855         switch (response) {
3856         case Gtk::RESPONSE_ACCEPT:
3857                 break;
3858         case Gtk::RESPONSE_REJECT:
3859                 delete_patch_change (pc);
3860                 return;
3861         default:
3862                 return;
3863         }
3864
3865         change_patch_change (pc->patch(), d.patch ());
3866 }
3867
3868 void
3869 MidiRegionView::delete_sysex (SysEx* /*sysex*/)
3870 {
3871         // CAIROCANVAS
3872         // sysyex object doesn't have a pointer to a sysex event
3873         // MidiModel::SysExDiffCommand* c = _model->new_sysex_diff_command (_("delete sysex"));
3874         // c->remove (sysex->sysex());
3875         // _model->apply_command (*trackview.session(), c);
3876
3877         //_sys_exes.clear ();
3878         // display_sysexes();
3879 }
3880
3881 void
3882 MidiRegionView::show_verbose_cursor (boost::shared_ptr<NoteType> n) const
3883 {
3884         using namespace MIDI::Name;
3885
3886         std::string name;
3887
3888         MidiTimeAxisView* const mtv = dynamic_cast<MidiTimeAxisView*>(&trackview);
3889         if (mtv) {
3890                 boost::shared_ptr<MasterDeviceNames> device_names(mtv->get_device_names());
3891                 if (device_names) {
3892                         MIDI::Name::PatchPrimaryKey patch_key;
3893                         get_patch_key_at(n->time(), n->channel(), patch_key);
3894                         name = device_names->note_name(mtv->gui_property(X_("midnam-custom-device-mode")),
3895                                                        n->channel(),
3896                                                        patch_key.bank_number,
3897                                                        patch_key.program_number,
3898                                                        n->note());
3899                 }
3900         }
3901
3902         char buf[128];
3903         snprintf (buf, sizeof (buf), "%d %s\nCh %d Vel %d",
3904                   (int) n->note (),
3905                   name.empty() ? Evoral::midi_note_name (n->note()).c_str() : name.c_str(),
3906                   (int) n->channel() + 1,
3907                   (int) n->velocity());
3908
3909         show_verbose_cursor(buf, 10, 20);
3910 }
3911
3912 void
3913 MidiRegionView::show_verbose_cursor (string const & text, double xoffset, double yoffset) const
3914 {
3915         trackview.editor().verbose_cursor()->set (text);
3916         trackview.editor().verbose_cursor()->show ();
3917         trackview.editor().verbose_cursor()->set_offset (ArdourCanvas::Duple (xoffset, yoffset));
3918 }
3919
3920 /** @param p A session framepos.
3921  *  @param grid_frames Filled in with the number of frames that a grid interval is at p.
3922  *  @return p snapped to the grid subdivision underneath it.
3923  */
3924 framepos_t
3925 MidiRegionView::snap_frame_to_grid_underneath (framepos_t p, framecnt_t& grid_frames) const
3926 {
3927         PublicEditor& editor = trackview.editor ();
3928         
3929         const Evoral::MusicalTime grid_beats = get_grid_beats(p);
3930
3931         grid_frames = region_beats_to_region_frames (grid_beats);
3932
3933         /* Hack so that we always snap to the note that we are over, instead of snapping
3934            to the next one if we're more than halfway through the one we're over.
3935         */
3936         if (editor.snap_mode() == SnapNormal && p >= grid_frames / 2) {
3937                 p -= grid_frames / 2;
3938         }
3939
3940         return snap_frame_to_frame (p);
3941 }
3942
3943 /** Called when the selection has been cleared in any MidiRegionView.
3944  *  @param rv MidiRegionView that the selection was cleared in.
3945  */
3946 void
3947 MidiRegionView::selection_cleared (MidiRegionView* rv)
3948 {
3949         if (rv == this) {
3950                 return;
3951         }
3952
3953         /* Clear our selection in sympathy; but don't signal the fact */
3954         clear_selection (false);
3955 }
3956
3957 void
3958 MidiRegionView::note_button_release ()
3959 {
3960         delete _note_player;
3961         _note_player = 0;
3962 }
3963
3964 ChannelMode
3965 MidiRegionView::get_channel_mode () const
3966 {
3967         RouteTimeAxisView* rtav = dynamic_cast<RouteTimeAxisView*> (&trackview);
3968         return rtav->midi_track()->get_playback_channel_mode();
3969 }
3970
3971 uint16_t
3972 MidiRegionView::get_selected_channels () const
3973 {
3974         RouteTimeAxisView* rtav = dynamic_cast<RouteTimeAxisView*> (&trackview);
3975         return rtav->midi_track()->get_playback_channel_mask();
3976 }
3977
3978
3979 Evoral::MusicalTime
3980 MidiRegionView::get_grid_beats(framepos_t pos) const
3981 {
3982         PublicEditor&       editor  = trackview.editor();
3983         bool                success = false;
3984         Evoral::MusicalTime beats   = editor.get_grid_type_as_beats(success, pos);
3985         if (!success) {
3986                 beats = Evoral::MusicalTime(1);
3987         }
3988         return beats;
3989 }