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