* implemented three coloring modes for MIDI tracks (untested yet)
[ardour.git] / gtk2_ardour / route_time_axis.h
1 /*
2     Copyright (C) 2006 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
20 #ifndef __ardour_route_time_axis_h__
21 #define __ardour_route_time_axis_h__
22
23 #include <gtkmm/table.h>
24 #include <gtkmm/button.h>
25 #include <gtkmm/box.h>
26 #include <gtkmm/menu.h>
27 #include <gtkmm/menuitem.h>
28 #include <gtkmm/radiomenuitem.h>
29 #include <gtkmm/checkmenuitem.h>
30 #include <gtkmm/adjustment.h>
31
32 #include <gtkmm2ext/selector.h>
33 #include <gtkmm2ext/slider_controller.h>
34 #include <list>
35
36 #include <ardour/playlist.h>
37 #include <ardour/types.h>
38
39 #include "ardour_dialog.h"
40 #include "route_ui.h"
41 #include "enums.h"
42 #include "time_axis_view.h"
43 #include "canvas.h"
44 #include "gain_meter.h"
45
46
47 namespace ARDOUR {
48         class Session;
49         class Region;
50         class Diskstream;
51         class RouteGroup;
52         class IOProcessor;
53         class Processor;
54         class Location;
55         class Playlist;
56 }
57
58 class PublicEditor;
59 class RegionView;
60 class StreamView;
61 class Selection;
62 class RegionSelection;
63 class Selectable;
64 class AutomationTimeAxisView;
65 class AutomationLine;
66 class ProcessorAutomationLine;
67 class TimeSelection;
68
69 class RouteTimeAxisView : public RouteUI, public TimeAxisView
70 {
71 public:
72         RouteTimeAxisView (PublicEditor&, ARDOUR::Session&, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
73         virtual ~RouteTimeAxisView ();
74
75         void show_selection (TimeSelection&);
76
77         void set_samples_per_unit (double);
78         void set_height (uint32_t h);
79         void show_timestretch (nframes_t start, nframes_t end);
80         void hide_timestretch ();
81         void selection_click (GdkEventButton*);
82         void set_selected_points (PointSelection&);
83         void set_selected_regionviews (RegionSelection&);
84         void get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable *>&);
85         void get_inverted_selectables (Selection&, list<Selectable*>&);
86         bool show_automation(Evoral::Parameter param);
87         void set_layer_display (LayerDisplay d);
88                 
89         boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t pos, ARDOUR::RegionPoint, int32_t dir);
90         nframes64_t find_next_region_boundary (nframes64_t pos, int32_t dir);
91
92         /* Editing operations */
93         bool cut_copy_clear (Selection&, Editing::CutCopyOp);
94         bool paste (nframes_t, float times, Selection&, size_t nth);
95
96         TimeAxisView::Children get_child_list();
97
98         /* The editor calls these when mapping an operation across multiple tracks */
99         void use_new_playlist (bool prompt, vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
100         void use_copy_playlist (bool prompt, vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
101         void clear_playlist ();
102
103         /* group playlist name resolving */
104         std::string resolve_new_group_playlist_name(std::string &, vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
105
106         
107         void build_playlist_menu (Gtk::Menu *);
108
109         void add_underlay (StreamView*, bool update_xml = true);
110         void remove_underlay (StreamView*);
111         void build_underlay_menu(Gtk::Menu*);
112         
113         int set_state (const XMLNode&);
114         
115         /* This is a bit nasty to expose :/ */
116         struct RouteAutomationNode {
117                 Evoral::Parameter                         param;
118             Gtk::CheckMenuItem*                       menu_item;
119                 boost::shared_ptr<AutomationTimeAxisView> track;
120             
121                 RouteAutomationNode (Evoral::Parameter par, Gtk::CheckMenuItem* mi, boost::shared_ptr<AutomationTimeAxisView> tr)
122                     : param (par), menu_item (mi), track (tr) {}
123         };
124
125         virtual void create_automation_child (const Evoral::Parameter& param, bool show) = 0;
126         
127         /* make sure we get the right version of this */
128
129         XMLNode* get_automation_child_xml_node (Evoral::Parameter param) { return RouteUI::get_automation_child_xml_node (param); }
130         
131         typedef map<Evoral::Parameter, RouteAutomationNode*> AutomationTracks;
132         AutomationTracks automation_tracks() { return _automation_tracks; }
133
134         boost::shared_ptr<AutomationTimeAxisView> automation_child(Evoral::Parameter param);
135         
136         string              name() const;
137         StreamView*         view() const { return _view; }
138         ARDOUR::RouteGroup* edit_group() const;
139         boost::shared_ptr<ARDOUR::Playlist> playlist() const;
140
141         void fast_update ();
142         void hide_meter ();
143         void show_meter ();
144         void reset_meter ();
145         void clear_meter ();
146         void io_changed (ARDOUR::IOChange, void *);
147         void meter_changed (void *);
148         void effective_gain_display () { gm.effective_gain_display(); }
149
150         static void setup_slider_pix ();
151
152 protected:
153         friend class StreamView;
154
155         struct ProcessorAutomationNode {
156                 Evoral::Parameter                         what;
157             Gtk::CheckMenuItem*                       menu_item;
158                 boost::shared_ptr<AutomationTimeAxisView> view;
159             RouteTimeAxisView&                        parent;
160
161             ProcessorAutomationNode (Evoral::Parameter w, Gtk::CheckMenuItem* mitem, RouteTimeAxisView& p)
162                     : what (w), menu_item (mitem), parent (p) {}
163
164             ~ProcessorAutomationNode ();
165         };
166
167         struct ProcessorAutomationInfo {
168             boost::shared_ptr<ARDOUR::Processor> processor;
169             bool                                 valid;
170             Gtk::Menu*                           menu;
171             vector<ProcessorAutomationNode*>     lines;
172
173             ProcessorAutomationInfo (boost::shared_ptr<ARDOUR::Processor> i) 
174                     : processor (i), valid (true), menu (0) {}
175
176             ~ProcessorAutomationInfo ();
177         };
178         
179
180         void diskstream_changed ();
181         void update_diskstream_display ();
182         
183         gint edit_click  (GdkEventButton *);
184
185         void processors_changed ();
186         
187         void add_processor_to_subplugin_menu (boost::weak_ptr<ARDOUR::Processor>);
188         void remove_processor_automation_node (ProcessorAutomationNode* pan);
189
190         void processor_menu_item_toggled (RouteTimeAxisView::ProcessorAutomationInfo*,
191                                          RouteTimeAxisView::ProcessorAutomationNode*);
192         
193         void processor_automation_track_hidden (ProcessorAutomationNode*,
194                                                boost::shared_ptr<ARDOUR::Processor>);
195         
196         void automation_track_hidden (Evoral::Parameter param);
197
198         RouteAutomationNode* automation_track(Evoral::Parameter param);
199         RouteAutomationNode* automation_track(ARDOUR::AutomationType type);
200
201         ProcessorAutomationNode*
202         find_processor_automation_node (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
203         
204         boost::shared_ptr<AutomationLine>
205         find_processor_automation_curve (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
206
207         void add_processor_automation_curve (boost::shared_ptr<ARDOUR::Processor> r, Evoral::Parameter);
208         void add_existing_processor_automation_curves (boost::weak_ptr<ARDOUR::Processor>);
209
210         void add_automation_child(Evoral::Parameter param, boost::shared_ptr<AutomationTimeAxisView> track, bool show=true);
211         
212         void reset_processor_automation_curves ();
213
214         void take_name_changed (void *src);
215         void route_name_changed ();
216         void name_entry_changed ();
217
218         void update_rec_display ();
219
220         virtual void label_view ();
221         
222         void add_edit_group_menu_item (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
223         void set_edit_group_from_menu (ARDOUR::RouteGroup *);
224
225         void reset_samples_per_unit ();
226
227         void select_track_color();
228         
229         virtual void build_automation_action_menu ();
230         virtual void append_extra_display_menu_items () {}
231         void         build_display_menu ();
232         
233         void align_style_changed ();
234         void set_align_style (ARDOUR::AlignStyle);
235         
236         virtual void set_playlist (boost::shared_ptr<ARDOUR::Playlist>);
237         void         playlist_click ();
238         void         show_playlist_selector ();
239         void         playlist_changed ();
240         void         playlist_modified ();
241
242         void rename_current_playlist ();
243         
244         void         automation_click ();
245         void         toggle_automation_track (Evoral::Parameter param);
246         virtual void show_all_automation ();
247         virtual void show_existing_automation ();
248         virtual void hide_all_automation ();
249
250         void timestretch (nframes_t start, nframes_t end);
251
252         void visual_click ();
253         void hide_click ();
254
255         void speed_changed ();
256         
257         void map_frozen ();
258
259         void color_handler ();
260
261         void region_view_added (RegionView*);
262
263         StreamView*           _view;
264         ArdourCanvas::Canvas& parent_canvas;
265         bool                  no_redraw;
266   
267         Gtk::HBox   other_button_hbox;
268         Gtk::Table  button_table;
269         Gtk::Button processor_button;
270         Gtk::Button edit_group_button;
271         Gtk::Button playlist_button;
272         Gtk::Button size_button;
273         Gtk::Button automation_button;
274         Gtk::Button hide_button;
275         Gtk::Button visual_button;
276         
277         Gtk::Menu           subplugin_menu;
278         Gtk::Menu*          automation_action_menu;
279         Gtk::Menu           edit_group_menu;
280         Gtk::RadioMenuItem* align_existing_item;
281         Gtk::RadioMenuItem* align_capture_item;
282         Gtk::RadioMenuItem* normal_track_mode_item;
283         Gtk::RadioMenuItem* destructive_track_mode_item;
284         Gtk::Menu*          playlist_menu;
285         Gtk::Menu*          playlist_action_menu;
286         Gtk::MenuItem*      playlist_item;
287         Gtk::Menu*          mode_menu;
288         Gtk::Menu*          color_mode_menu;
289
290         virtual Gtk::Menu* build_mode_menu() { return 0; }
291         virtual Gtk::Menu* build_color_mode_menu() { return 0; }
292
293         void use_playlist (boost::weak_ptr<ARDOUR::Playlist>);
294
295         ArdourCanvas::SimpleRect* timestretch_rect;
296
297         void set_track_mode (ARDOUR::TrackMode);
298         void _set_track_mode (ARDOUR::Track* track, ARDOUR::TrackMode mode, Gtk::RadioMenuItem* reset_item);
299         void track_mode_changed ();
300
301         list<ProcessorAutomationInfo*> processor_automation;
302
303         typedef vector<boost::shared_ptr<AutomationLine> > ProcessorAutomationCurves;
304         ProcessorAutomationCurves processor_automation_curves;
305         
306         // Set from XML so context menu automation buttons can be correctly initialized
307         set<Evoral::Parameter> _show_automation;
308
309         AutomationTracks _automation_tracks;
310
311         sigc::connection modified_connection;
312
313         void post_construct ();
314         
315         GainMeterBase gm;
316
317         static Glib::RefPtr<Gdk::Pixbuf> slider;
318
319         XMLNode* underlay_xml_node;
320         bool set_underlay_state();
321
322         typedef list<StreamView*> UnderlayList;
323         UnderlayList _underlay_streams;
324         typedef list<RouteTimeAxisView*> UnderlayMirrorList;
325         UnderlayMirrorList _underlay_mirrors;
326 };
327
328 #endif /* __ardour_route_time_axis_h__ */
329