Factor out sequencing related things into an independant new library: "evoral".
[ardour.git] / gtk2_ardour / midi_region_view.h
1 /*
2     Copyright (C) 2001-2007 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 <vector>
23
24 #include <libgnomecanvasmm.h>
25 #include <libgnomecanvasmm/polygon.h>
26 #include <ardour/midi_track.h>
27 #include <ardour/midi_region.h>
28 #include <ardour/midi_model.h>
29 #include <ardour/diskstream.h>
30 #include <ardour/types.h>
31
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 #include "canvas.h"
38 #include "canvas-note.h"
39 #include "canvas-note-event.h"
40 #include "canvas-program-change.h"
41
42 namespace ARDOUR {
43         class MidiRegion;
44         class MidiModel;
45 };
46
47 class MidiTimeAxisView;
48 class GhostRegion;
49 class AutomationTimeAxisView;
50 class AutomationRegionView;
51
52 class MidiRegionView : public RegionView
53 {
54   public:
55         MidiRegionView (ArdourCanvas::Group *,
56                         RouteTimeAxisView&,
57                         boost::shared_ptr<ARDOUR::MidiRegion>,
58                         double initial_samples_per_unit,
59                         Gdk::Color& basic_color);
60
61         ~MidiRegionView ();
62
63         virtual void init (Gdk::Color& basic_color, bool wfd);
64
65         inline const boost::shared_ptr<ARDOUR::MidiRegion> midi_region() const
66                 { return boost::dynamic_pointer_cast<ARDOUR::MidiRegion>(_region); }
67
68         inline MidiTimeAxisView* midi_view() const
69                 { return dynamic_cast<MidiTimeAxisView*>(&trackview); }
70
71         inline MidiStreamView* midi_stream_view() const
72                 { return midi_view()->midi_view(); }
73
74         void set_y_position_and_height (double, double);
75
76         void set_frame_color();
77
78         void redisplay_model();
79
80         GhostRegion* add_ghost (TimeAxisView&);
81
82         void add_note(const boost::shared_ptr<Evoral::Note> note);
83         void resolve_note(uint8_t note_num, double end_time);
84         
85         void add_pgm_change(boost::shared_ptr<Evoral::Event> event);
86
87         void begin_write();
88         void end_write();
89         void extend_active_notes();
90
91         void create_note_at(double x, double y, double duration);
92
93         void display_model(boost::shared_ptr<ARDOUR::MidiModel> model);
94
95         void start_delta_command(string name = "midi edit");
96         void command_add_note(const boost::shared_ptr<Evoral::Note> note, bool selected);
97         void command_remove_note(ArdourCanvas::CanvasNoteEvent* ev);
98
99         void apply_command();
100         void abort_command();
101
102         void   note_entered(ArdourCanvas::CanvasNoteEvent* ev);
103         void   unique_select(ArdourCanvas::CanvasNoteEvent* ev);
104         void   note_selected(ArdourCanvas::CanvasNoteEvent* ev, bool add);
105         void   note_deselected(ArdourCanvas::CanvasNoteEvent* ev, bool add);
106         void   delete_selection();
107         size_t selection_size() { return _selection.size(); }
108
109         void move_selection(double dx, double dy);
110         void note_dropped(ArdourCanvas::CanvasNoteEvent* ev, double dt, uint8_t dnote);
111
112         /**
113          * This function is needed to subtract the region start in pixels
114          * from world coordinates submitted by the mouse
115          */
116         double get_position_pixels(void);
117
118         /**
119          * This function is called by CanvasMidiNote when resizing starts,
120          * i.e. when the user presses mouse-2 on the note
121          * @param note_end which end of the note, NOTE_ON or NOTE_OFF
122          */
123         void  begin_resizing(ArdourCanvas::CanvasNote::NoteEnd note_end);
124
125         /**
126          * This function is called while the user moves the mouse when resizing notes
127          * @param note_end which end of the note, NOTE_ON or NOTE_OFF
128          * @param x the difference in mouse motion, ie the motion difference if relative=true
129          *           or the absolute mouse position (track-relative) if relative is false
130          * @param relative true if relative resizing is taking place, false if absolute resizing
131          */
132         void update_resizing(ArdourCanvas::CanvasNote::NoteEnd note_end, double x, bool relative);
133
134         /**
135          * This function is called while the user releases the mouse button when resizing notes
136          * @param note_end which end of the note, NOTE_ON or NOTE_OFF
137          * @param event_x the absolute mouse position (track-relative)
138          * @param relative true if relative resizing is taking place, false if absolute resizing
139          */
140         void commit_resizing(ArdourCanvas::CanvasNote::NoteEnd note_end, double event_x, bool relative);
141
142         /**
143          * This function is called while the user adjusts the velocity on a selection of notes
144          * @param velocity the relative or absolute velocity, depending on the value of relative
145          * @param relative true if the given velocity represents a delta to be applied to all notes, false
146          *        if the absolute value of the note shoud be set
147          */
148         void change_velocity(uint8_t velocity, bool relative=false);
149         
150         /**
151          * This function is called when the user adjusts the midi channel of a selection of notes
152          * @param channel - the channel number of the new channel, zero-based
153          */
154         void change_channel(uint8_t channel);
155
156         enum MouseState { None, Pressed, SelectTouchDragging, SelectRectDragging, AddDragging, EraseTouchDragging };
157         MouseState mouse_state() const { return _mouse_state; }
158
159         struct NoteResizeData {
160                 ArdourCanvas::CanvasNote  *canvas_note;
161                 ArdourCanvas::SimpleRect  *resize_rect;
162                 double                     current_x;
163         };
164         
165         /**
166          * This function provides the snap function for region position relative coordinates
167          * for pixel units (double) instead of nframes64_t
168          * @param x a pixel coordinate relative to region start
169          * @return the snapped pixel coordinate relative to region start
170          */
171         double snap_to_pixel(double x);
172
173         /**
174          * This function provides the snap function for region position relative coordinates
175          * for pixel units (double) instead of nframes64_t
176          * @param x a pixel coordinate relative to region start
177          * @return the snapped nframes64_t coordinate relative to region start
178          */
179         nframes64_t snap_to_frame(double x);
180
181         /**
182          * This function provides the snap function for region position relative coordinates
183          * @param x a pixel coordinate relative to region start
184          * @return the snapped nframes64_t coordinate relative to region start
185          */
186         nframes64_t snap_to_frame(nframes64_t x);
187         
188   protected:
189
190     /**
191      * this constructor allows derived types
192      * to specify their visibility requirements
193      * to the TimeAxisViewItem parent class
194     */
195     MidiRegionView (ArdourCanvas::Group *,
196                         RouteTimeAxisView&,
197                         boost::shared_ptr<ARDOUR::MidiRegion>,
198                         double samples_per_unit,
199                         Gdk::Color& basic_color,
200                         TimeAxisViewItem::Visibility);
201
202     void region_resized (ARDOUR::Change);
203
204     void set_flags (XMLNode *);
205     void store_flags ();
206
207         void reset_width_dependent_items (double pixel_width);
208
209   private:
210
211         void clear_events();
212         void switch_source(boost::shared_ptr<ARDOUR::Source> src);
213
214         bool canvas_event(GdkEvent* ev);
215         bool note_canvas_event(GdkEvent* ev);
216         
217         void midi_channel_mode_changed(ARDOUR::ChannelMode mode, uint16_t mask);
218
219         void clear_selection_except(ArdourCanvas::CanvasNoteEvent* ev);
220         void clear_selection() { clear_selection_except(NULL); }
221         void update_drag_selection(double last_x, double x, double last_y, double y);
222
223         int8_t   _force_channel;
224         uint16_t _last_channel_selection;
225         double   _default_note_length;
226
227         boost::shared_ptr<ARDOUR::MidiModel>        _model;
228         std::vector<ArdourCanvas::CanvasNoteEvent*> _events;
229         std::vector< boost::shared_ptr<ArdourCanvas::CanvasProgramChange> > _pgm_changes;
230         ArdourCanvas::CanvasNote**                  _active_notes;
231         ArdourCanvas::Group*                        _note_group;
232         ARDOUR::MidiModel::DeltaCommand*            _delta_command;
233
234         MouseState _mouse_state;
235         int _pressed_button;
236
237         typedef std::set<ArdourCanvas::CanvasNoteEvent*> Selection;
238         /// Currently selected CanvasNoteEvents
239         Selection _selection;
240
241         /** New notes (created in the current command) which should be selected
242          * when they appear after the command is applied. */
243         std::set< boost::shared_ptr<Evoral::Note> > _marked_for_selection;
244
245         std::vector<NoteResizeData *> _resize_data;
246 };
247
248 #endif /* __gtk_ardour_midi_region_view_h__ */