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