Factor out copy-paste code to get grid type in beats defaulting to 1.
[ardour.git] / gtk2_ardour / midi_region_view.h
1 /*
2     Copyright (C) 2001-2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __gtk_ardour_midi_region_view_h__
20 #define __gtk_ardour_midi_region_view_h__
21
22 #include <string>
23 #include <vector>
24 #include <stdint.h>
25
26 #include "pbd/signals.h"
27
28 #include "ardour/midi_model.h"
29 #include "ardour/types.h"
30
31 #include "editing.h"
32 #include "region_view.h"
33 #include "midi_time_axis.h"
34 #include "time_axis_view_item.h"
35 #include "automation_line.h"
36 #include "enums.h"
37
38 namespace ARDOUR {
39         class MidiRegion;
40         class MidiModel;
41         class Filter;
42 };
43
44 namespace MIDI {
45         namespace Name {
46                 struct PatchPrimaryKey;
47         };
48 };
49
50 class SysEx;
51 class NoteBase;
52 class Note;
53 class Hit;
54 class MidiTimeAxisView;
55 class GhostRegion;
56 class AutomationTimeAxisView;
57 class AutomationRegionView;
58 class MidiCutBuffer;
59 class MidiListEditor;
60 class EditNoteDialog;
61 class NotePlayer;
62 class PatchChange;
63 class ItemCounts;
64
65 class MidiRegionView : public RegionView
66 {
67 public:
68         typedef Evoral::Note<Evoral::MusicalTime> NoteType;
69         typedef Evoral::Sequence<Evoral::MusicalTime>::Notes Notes;
70
71         MidiRegionView (ArdourCanvas::Container *,
72                         RouteTimeAxisView&,
73                         boost::shared_ptr<ARDOUR::MidiRegion>,
74                         double initial_samples_per_pixel,
75                         uint32_t base_color);
76
77         MidiRegionView (const MidiRegionView& other);
78         MidiRegionView (const MidiRegionView& other, boost::shared_ptr<ARDOUR::MidiRegion>);
79
80         ~MidiRegionView ();
81
82         void init (bool wfd);
83
84         const boost::shared_ptr<ARDOUR::MidiRegion> midi_region() const;
85
86         inline MidiTimeAxisView* midi_view() const
87         { return dynamic_cast<MidiTimeAxisView*>(&trackview); }
88
89         inline MidiStreamView* midi_stream_view() const
90         { return midi_view()->midi_view(); }
91
92         void step_add_note (uint8_t channel, uint8_t number, uint8_t velocity,
93                             Evoral::MusicalTime pos, Evoral::MusicalTime len);
94         void step_sustain (Evoral::MusicalTime beats);
95         void set_height (double);
96         void apply_note_range(uint8_t lowest, uint8_t highest, bool force=false);
97
98         inline ARDOUR::ColorMode color_mode() const { return midi_view()->color_mode(); }
99
100         void set_frame_color();
101         void color_handler ();
102
103         void show_step_edit_cursor (Evoral::MusicalTime pos);
104         void move_step_edit_cursor (Evoral::MusicalTime pos);
105         void hide_step_edit_cursor ();
106         void set_step_edit_cursor_width (Evoral::MusicalTime beats);
107
108         void redisplay_model();
109
110         GhostRegion* add_ghost (TimeAxisView&);
111
112         void add_note(const boost::shared_ptr<NoteType> note, bool visible);
113         void resolve_note(uint8_t note_num, double end_time);
114
115         void cut_copy_clear (Editing::CutCopyOp);
116         bool paste (framepos_t pos, unsigned paste_count, float times, const ::Selection& selection, ItemCounts& counts);
117         void paste_internal (framepos_t pos, unsigned paste_count, float times, const MidiCutBuffer&);
118
119         void add_canvas_patch_change (ARDOUR::MidiModel::PatchChangePtr patch, const std::string& displaytext, bool);
120
121         /** Look up the given time and channel in the 'automation' and set keys accordingly.
122          * @param time the time of the patch change event
123          * @param channel the MIDI channel of the event
124          * @key a reference to an instance of MIDI::Name::PatchPrimaryKey whose fields will
125          *        will be set according to the result of the lookup
126          */
127         void get_patch_key_at (double time, uint8_t channel, MIDI::Name::PatchPrimaryKey& key) const;
128
129         /** Convert a given PatchChange into a PatchPrimaryKey
130          */
131         MIDI::Name::PatchPrimaryKey patch_change_to_patch_key (ARDOUR::MidiModel::PatchChangePtr);
132
133         /** Change old_patch to new_patch.
134          * @param old_patch the canvas patch change which is to be altered
135          * @param new_patch new patch
136          */
137         void change_patch_change (PatchChange& old_patch, const MIDI::Name::PatchPrimaryKey& new_patch);
138         void change_patch_change (ARDOUR::MidiModel::PatchChangePtr, Evoral::PatchChange<Evoral::MusicalTime> const &);
139
140         void add_patch_change (framecnt_t, Evoral::PatchChange<Evoral::MusicalTime> const &);
141         void move_patch_change (PatchChange &, Evoral::MusicalTime);
142         void delete_patch_change (PatchChange *);
143         void edit_patch_change (PatchChange *);
144
145         void delete_sysex (SysEx*);
146
147         /** Alter a given patch to be its predecessor in the MIDNAM file.
148          */
149         void previous_patch (PatchChange &);
150
151         /** Alters a given patch to be its successor in the MIDNAM file.
152          */
153         void next_patch (PatchChange &);
154
155         void previous_bank (PatchChange &);
156         void next_bank (PatchChange &);
157
158         /** Displays all patch change events in the region as flags on the canvas.
159          */
160         void display_patch_changes();
161
162         /** Displays all system exclusive events in the region as flags on the canvas.
163          */
164         void display_sysexes();
165
166         void begin_write();
167         void end_write();
168         void extend_active_notes();
169
170         void display_model(boost::shared_ptr<ARDOUR::MidiModel> model);
171
172         void start_note_diff_command (std::string name = "midi edit");
173         void note_diff_add_change (NoteBase* ev, ARDOUR::MidiModel::NoteDiffCommand::Property, uint8_t val);
174         void note_diff_add_change (NoteBase* ev, ARDOUR::MidiModel::NoteDiffCommand::Property, Evoral::MusicalTime val);
175         void note_diff_add_note (const boost::shared_ptr<NoteType> note, bool selected, bool show_velocity = false);
176         void note_diff_remove_note (NoteBase* ev);
177
178         void apply_diff (bool as_subcommand = false);
179         void abort_command();
180
181         void   note_entered(NoteBase* ev);
182         void   note_left(NoteBase* ev);
183         void   patch_entered (PatchChange *);
184         void   patch_left (PatchChange *);
185         void   sysex_entered (SysEx* p);
186         void   sysex_left (SysEx* p);
187         void   note_mouse_position (float xfraction, float yfraction, bool can_set_cursor=true);
188         void   unique_select(NoteBase* ev);
189         void   note_selected(NoteBase* ev, bool add, bool extend=false);
190         void   note_deselected(NoteBase* ev);
191         void   delete_selection();
192         void   delete_note (boost::shared_ptr<NoteType>);
193         size_t selection_size() { return _selection.size(); }
194         void   select_all_notes ();
195         void   select_range(framepos_t start, framepos_t end);
196         void   invert_selection ();
197
198         void move_selection(double dx, double dy, double cumulative_dy);
199         void note_dropped (NoteBase* ev, ARDOUR::frameoffset_t, int8_t d_note);
200
201         void select_matching_notes (uint8_t notenum, uint16_t channel_mask, bool add, bool extend);
202         void toggle_matching_notes (uint8_t notenum, uint16_t channel_mask);
203
204         /** Return true iff the note is within the extent of the region.
205          * @param visible will be set to true if the note is within the visible note range, false otherwise.
206          */
207         bool note_in_region_range(const boost::shared_ptr<NoteType> note, bool& visible) const;
208
209         /** Get the region position in pixels relative to session. */
210         double get_position_pixels();
211
212         /** Get the region end position in pixels relative to session. */
213         double get_end_position_pixels();
214
215         /** Begin resizing of some notes.
216          * Called by CanvasMidiNote when resizing starts.
217          * @param at_front which end of the note (true == note on, false == note off)
218          */
219         void begin_resizing(bool at_front);
220
221         void update_resizing (NoteBase*, bool, double, bool);
222         void commit_resizing (NoteBase*, bool, double, bool);
223         void abort_resizing ();
224
225         /** Change the channel of the selection.
226          * @param channel - the channel number of the new channel, zero-based
227          */
228         void change_channel(uint8_t channel);
229
230         enum MouseState {
231                 None,
232                 Pressed,
233                 SelectTouchDragging,
234                 SelectRectDragging,
235                 SelectVerticalDragging,
236                 AddDragging
237         };
238
239         MouseState mouse_state() const { return _mouse_state; }
240
241         void note_button_release ();
242
243         struct NoteResizeData {
244                 Note                     *note;
245                 ArdourCanvas::Rectangle  *resize_rect;
246         };
247
248         /** Snap a region relative pixel coordinate to pixel units.
249          * @param x a pixel coordinate relative to region start
250          * @return the snapped pixel coordinate relative to region start
251          */
252         double snap_to_pixel(double x);
253
254         /** Snap a region relative pixel coordinate to frame units.
255          * @param x a pixel coordinate relative to region start
256          * @return the snapped framepos_t coordinate relative to region start
257          */
258         framepos_t snap_pixel_to_sample(double x);
259
260         /** Convert a timestamp in beats into frames (both relative to region position) */
261         framepos_t region_beats_to_region_frames(double beats) const;
262         /** Convert a timestamp in beats into absolute frames */
263         framepos_t region_beats_to_absolute_frames(double beats) const {
264                 return _region->position() + region_beats_to_region_frames (beats);
265         }
266         /** Convert a timestamp in frames to beats (both relative to region position) */
267         double region_frames_to_region_beats(framepos_t) const;
268
269         /** Convert a timestamp in beats measured from source start into absolute frames */
270         framepos_t source_beats_to_absolute_frames(double beats) const;
271         /** Convert a timestamp in beats measured from source start into region-relative frames */
272         framepos_t source_beats_to_region_frames(double beats) const {
273                 return source_beats_to_absolute_frames (beats) - _region->position();
274         }
275         /** Convert a timestamp in absolute frames to beats measured from source start*/
276         double absolute_frames_to_source_beats(framepos_t) const;
277
278         ARDOUR::BeatsFramesConverter const & region_relative_time_converter () const {
279                 return _region_relative_time_converter;
280         }
281
282         ARDOUR::BeatsFramesConverter const & source_relative_time_converter () const {
283                 return _source_relative_time_converter;
284         }
285
286         void goto_previous_note (bool add_to_selection);
287         void goto_next_note (bool add_to_selection);
288         void change_note_lengths (bool, bool, Evoral::MusicalTime beats, bool start, bool end);
289         void change_velocities (bool up, bool fine, bool allow_smush, bool all_together);
290         void transpose (bool up, bool fine, bool allow_smush);
291         void nudge_notes (bool forward);
292         void channel_edit ();
293         void velocity_edit ();
294
295         void show_list_editor ();
296
297         typedef std::set<NoteBase*> Selection;
298         Selection selection () const {
299                 return _selection;
300         }
301         
302         void selection_as_notelist (Notes& selected, bool allow_all_if_none_selected = false);
303
304         void enable_display (bool);
305
306         void set_channel_selector_scoped_note(NoteBase* note){ _channel_selection_scoped_note = note; }
307         NoteBase* channel_selector_scoped_note(){  return _channel_selection_scoped_note; }
308
309         void trim_front_starting ();
310         void trim_front_ending ();
311
312         void create_note_at (framepos_t, double, double, bool);
313
314         void clear_selection (bool signal = true) { clear_selection_except (0, signal); }
315
316         ARDOUR::InstrumentInfo& instrument_info() const;
317         
318 protected:
319         /** Allows derived types to specify their visibility requirements
320          * to the TimeAxisViewItem parent class.
321          */
322         MidiRegionView (ArdourCanvas::Container *,
323                         RouteTimeAxisView&,
324                         boost::shared_ptr<ARDOUR::MidiRegion>,
325                         double samples_per_pixel,
326                         uint32_t basic_color,
327                         TimeAxisViewItem::Visibility);
328
329         void region_resized (const PBD::PropertyChange&);
330
331         void set_flags (XMLNode *);
332         void store_flags ();
333
334         void reset_width_dependent_items (double pixel_width);
335
336         void parameter_changed (std::string const & p);
337
338 private:
339
340         friend class MidiRubberbandSelectDrag;
341         friend class MidiVerticalSelectDrag;
342
343         /** Emitted when the selection has been cleared in one MidiRegionView,
344          *  with the expectation that others will clear their selections in
345          *  sympathy.
346          */
347         static PBD::Signal1<void, MidiRegionView*> SelectionCleared;
348         PBD::ScopedConnection _selection_cleared_connection;
349         void selection_cleared (MidiRegionView *);
350
351         friend class EditNoteDialog;
352
353         /** Play the NoteOn event of the given note immediately
354          * and schedule the playback of the corresponding NoteOff event.
355          */
356         void play_midi_note (boost::shared_ptr<NoteType> note);
357         void start_playing_midi_note (boost::shared_ptr<NoteType> note);
358         void start_playing_midi_chord (std::vector<boost::shared_ptr<NoteType> > notes);
359
360         void clear_events (bool with_selection_signal = true);
361
362         bool canvas_group_event(GdkEvent* ev);
363         bool note_canvas_event(GdkEvent* ev);
364
365         void midi_channel_mode_changed ();
366         PBD::ScopedConnection _channel_mode_changed_connection;
367         void instrument_settings_changed ();
368         PBD::ScopedConnection _instrument_changed_connection;
369
370         void change_note_channel (NoteBase *, int8_t, bool relative=false);
371         void change_note_velocity(NoteBase* ev, int8_t vel, bool relative=false);
372         void change_note_note(NoteBase* ev, int8_t note, bool relative=false);
373         void change_note_time(NoteBase* ev, ARDOUR::MidiModel::TimeType, bool relative=false);
374         void change_note_length (NoteBase *, ARDOUR::MidiModel::TimeType);
375         void trim_note(NoteBase* ev, ARDOUR::MidiModel::TimeType start_delta,
376                        ARDOUR::MidiModel::TimeType end_delta);
377
378         void clear_selection_except (NoteBase* ev, bool signal = true);
379         void update_drag_selection (framepos_t start, framepos_t end, double y0, double y1, bool extend);
380         void update_vertical_drag_selection (double last_y, double y, bool extend);
381
382         void add_to_selection (NoteBase*);
383         void remove_from_selection (NoteBase*);
384
385         void show_verbose_cursor (std::string const &, double, double) const;
386         void show_verbose_cursor (boost::shared_ptr<NoteType>) const;
387
388         uint8_t  _current_range_min;
389         uint8_t  _current_range_max;
390         
391         typedef std::list<NoteBase*>                          Events;
392         typedef std::vector< boost::shared_ptr<PatchChange> > PatchChanges;
393         typedef std::vector< boost::shared_ptr<SysEx> >       SysExes;
394
395         ARDOUR::BeatsFramesConverter _region_relative_time_converter;
396         ARDOUR::BeatsFramesConverter _source_relative_time_converter;
397
398         boost::shared_ptr<ARDOUR::MidiModel> _model;
399         Events                               _events;
400         PatchChanges                         _patch_changes;
401         SysExes                              _sys_exes;
402         Note**                               _active_notes;
403         ArdourCanvas::Container*             _note_group;
404         ARDOUR::MidiModel::NoteDiffCommand*  _note_diff_command;
405         Note*                                _ghost_note;
406         double                               _last_ghost_x;
407         double                               _last_ghost_y;
408         ArdourCanvas::Rectangle*             _step_edit_cursor;
409         Evoral::MusicalTime                  _step_edit_cursor_width;
410         Evoral::MusicalTime                  _step_edit_cursor_position;
411         NoteBase*                            _channel_selection_scoped_note;
412
413         /** A group used to temporarily reparent _note_group to during start trims, so
414          *  that the notes don't move with the parent region view.
415          */
416         ArdourCanvas::Container*                 _temporary_note_group;
417
418         MouseState _mouse_state;
419         int _pressed_button;
420
421         /** Currently selected NoteBase objects */
422         Selection _selection;
423
424         bool _sort_needed;
425         void time_sort_events ();
426
427         MidiCutBuffer* selection_as_cut_buffer () const;
428
429         /** New notes (created in the current command) which should be selected
430          * when they appear after the command is applied. */
431         std::set< boost::shared_ptr<NoteType> > _marked_for_selection;
432
433         /** New notes (created in the current command) which should have visible velocity
434          * when they appear after the command is applied. */
435         std::set< boost::shared_ptr<NoteType> > _marked_for_velocity;
436
437         std::vector<NoteResizeData *> _resize_data;
438
439         /** connection used to connect to model's ContentChanged signal */
440         PBD::ScopedConnection content_connection;
441
442         NoteBase* find_canvas_note (boost::shared_ptr<NoteType>);
443         Events::iterator _optimization_iterator;
444
445         void update_note (Note *, bool update_ghost_regions = true);
446         void update_hit (Hit *);
447         void create_ghost_note (double, double);
448         void update_ghost_note (double, double);
449
450         MidiListEditor* _list_editor;
451         bool _no_sound_notes;
452
453         PBD::ScopedConnection note_delete_connection;
454         void maybe_remove_deleted_note_from_selection (NoteBase*);
455
456         void snap_changed ();
457         PBD::ScopedConnection snap_changed_connection;
458
459         bool motion (GdkEventMotion*);
460         bool scroll (GdkEventScroll*);
461         bool key_press (GdkEventKey*);
462         bool key_release (GdkEventKey*);
463         bool button_press (GdkEventButton*);
464         bool button_release (GdkEventButton*);
465         bool enter_notify (GdkEventCrossing*);
466         bool leave_notify (GdkEventCrossing*);
467
468         void drop_down_keys ();
469         void maybe_select_by_position (GdkEventButton* ev, double x, double y);
470         void get_events (Events& e, Evoral::Sequence<Evoral::MusicalTime>::NoteOperator op, uint8_t val, int chan_mask = 0);
471
472         void display_patch_changes_on_channel (uint8_t, bool);
473
474         void connect_to_diskstream ();
475         void data_recorded (boost::weak_ptr<ARDOUR::MidiSource>);
476
477         /** Get grid type as beats, or default to 1 if not snapped to beats. */
478         Evoral::MusicalTime get_grid_beats(framepos_t pos) const;
479
480         void remove_ghost_note ();
481         void mouse_mode_changed ();
482         double _last_event_x;
483         double _last_event_y;
484
485         framepos_t snap_frame_to_grid_underneath (framepos_t p, framecnt_t &) const;
486         
487         PBD::ScopedConnection _mouse_mode_connection;
488
489         Gdk::Cursor* pre_enter_cursor;
490         Gdk::Cursor* pre_press_cursor;
491         Gdk::Cursor* pre_note_enter_cursor;
492
493         NotePlayer* _note_player;
494
495         ARDOUR::ChannelMode get_channel_mode() const;
496         uint16_t get_selected_channels () const;
497 };
498
499
500 #endif /* __gtk_ardour_midi_region_view_h__ */