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