Don't report an error when the user cancels a time stretch operation.
[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 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 class RouteGroupMenu;
69
70 class RouteTimeAxisView : public RouteUI, public TimeAxisView
71 {
72 public:
73         RouteTimeAxisView (PublicEditor&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
74         virtual ~RouteTimeAxisView ();
75
76         void show_selection (TimeSelection&);
77         void set_button_names ();
78
79         void set_samples_per_unit (double);
80         void set_height (uint32_t h);
81         void show_timestretch (nframes_t start, nframes_t end);
82         void hide_timestretch ();
83         void selection_click (GdkEventButton*);
84         void set_selected_points (PointSelection&);
85         void set_selected_regionviews (RegionSelection&);
86         void get_selectables (nframes_t start, nframes_t end, double top, double bot, std::list<Selectable *>&);
87         void get_inverted_selectables (Selection&, std::list<Selectable*>&);
88         bool show_automation(Evoral::Parameter param);
89         void set_layer_display (LayerDisplay d);
90         LayerDisplay layer_display () const;
91
92         boost::shared_ptr<ARDOUR::Region> find_next_region (nframes_t pos, ARDOUR::RegionPoint, int32_t dir);
93         nframes64_t find_next_region_boundary (nframes64_t pos, int32_t dir);
94
95         /* Editing operations */
96         bool cut_copy_clear (Selection&, Editing::CutCopyOp);
97         bool paste (nframes_t, float times, Selection&, size_t nth);
98
99         TimeAxisView::Children get_child_list();
100
101         void toggle_automation_track (const Evoral::Parameter& param);
102
103         /* The editor calls these when mapping an operation across multiple tracks */
104         void use_new_playlist (bool prompt, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
105         void use_copy_playlist (bool prompt, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
106         void clear_playlist ();
107
108         /* group playlist name resolving */
109         std::string resolve_new_group_playlist_name(std::string &, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
110
111
112         void build_playlist_menu (Gtk::Menu *);
113
114         void add_underlay (StreamView*, bool update_xml = true);
115         void remove_underlay (StreamView*);
116         void build_underlay_menu(Gtk::Menu*);
117         
118         int set_state (const XMLNode&, int version);
119         
120         /* This is a bit nasty to expose :/ */
121         struct RouteAutomationNode {
122                 Evoral::Parameter                         param;
123                 Gtk::CheckMenuItem*                       menu_item;
124                 boost::shared_ptr<AutomationTimeAxisView> track;
125
126                 RouteAutomationNode (Evoral::Parameter par, Gtk::CheckMenuItem* mi, boost::shared_ptr<AutomationTimeAxisView> tr)
127                     : param (par), menu_item (mi), track (tr) {}
128         };
129
130         virtual void create_automation_child (const Evoral::Parameter& param, bool show) = 0;
131
132         /* make sure we get the right version of this */
133
134         XMLNode* get_automation_child_xml_node (Evoral::Parameter param) { return RouteUI::get_automation_child_xml_node (param); }
135
136         typedef std::map<Evoral::Parameter, RouteAutomationNode*> AutomationTracks;
137         AutomationTracks automation_tracks() { return _automation_tracks; }
138
139         boost::shared_ptr<AutomationTimeAxisView> automation_child(Evoral::Parameter param);
140
141         std::string         name() const;
142         StreamView*         view() const { return _view; }
143         ARDOUR::RouteGroup* route_group() const;
144         boost::shared_ptr<ARDOUR::Playlist> playlist() const;
145
146         void fast_update ();
147         void hide_meter ();
148         void show_meter ();
149         void reset_meter ();
150         void clear_meter ();
151         void io_changed (ARDOUR::IOChange, void *);
152         void meter_changed ();
153         void effective_gain_display () { gm.effective_gain_display(); }
154
155         static void setup_slider_pix ();
156
157 protected:
158         friend class StreamView;
159
160         struct ProcessorAutomationNode {
161                 Evoral::Parameter                         what;
162                 Gtk::CheckMenuItem*                       menu_item;
163                 boost::shared_ptr<AutomationTimeAxisView> view;
164                 RouteTimeAxisView&                        parent;
165
166             ProcessorAutomationNode (Evoral::Parameter w, Gtk::CheckMenuItem* mitem, RouteTimeAxisView& p)
167                     : what (w), menu_item (mitem), parent (p) {}
168
169             ~ProcessorAutomationNode ();
170         };
171
172         struct ProcessorAutomationInfo {
173             boost::shared_ptr<ARDOUR::Processor> processor;
174             bool                                 valid;
175             Gtk::Menu*                           menu;
176             std::vector<ProcessorAutomationNode*>     lines;
177
178             ProcessorAutomationInfo (boost::shared_ptr<ARDOUR::Processor> i)
179                     : processor (i), valid (true), menu (0) {}
180
181             ~ProcessorAutomationInfo ();
182         };
183
184
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_property_changed (const PBD::PropertyChange&);
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         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 route_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::MenuItem*      plugins_submenu_item;
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_color_mode_menu() { return 0; }
293
294         void use_playlist (Gtk::RadioMenuItem *item, boost::weak_ptr<ARDOUR::Playlist> wpl);
295
296         ArdourCanvas::SimpleRect* timestretch_rect;
297
298         void set_track_mode (ARDOUR::TrackMode);
299         void _set_track_mode (ARDOUR::Track* track, ARDOUR::TrackMode mode, Gtk::RadioMenuItem* reset_item, Gtk::RadioMenuItem* reset_item_2);
300         void track_mode_changed ();
301
302         std::list<ProcessorAutomationInfo*> processor_automation;
303
304         typedef std::vector<boost::shared_ptr<AutomationLine> > ProcessorAutomationCurves;
305         ProcessorAutomationCurves processor_automation_curves;
306
307         // Set from XML so context menu automation buttons can be correctly initialized
308         std::set<Evoral::Parameter> _show_automation;
309
310         AutomationTracks _automation_tracks;
311
312         void post_construct ();
313
314         GainMeterBase gm;
315
316         static Glib::RefPtr<Gdk::Pixbuf> slider;
317
318         XMLNode* underlay_xml_node;
319         bool set_underlay_state();
320
321         typedef std::list<StreamView*> UnderlayList;
322         UnderlayList _underlay_streams;
323         typedef std::list<RouteTimeAxisView*> UnderlayMirrorList;
324         UnderlayMirrorList _underlay_mirrors;
325
326         bool _ignore_track_mode_change; ///< true to ignore track mode change signals
327 };
328
329 #endif /* __ardour_route_time_axis_h__ */
330