Consistent Automation evaluation:
[ardour.git] / gtk2_ardour / route_ui.h
1 /*
2     Copyright (C) 2002 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_ui__
21 #define __ardour_route_ui__
22
23 #include <list>
24
25 #include "pbd/xml++.h"
26 #include "pbd/signals.h"
27
28 #include <gtkmm/textview.h>
29 #include <gtkmm/colorselection.h>
30
31 #include "gtkmm2ext/widget_state.h"
32
33 #include "ardour/ardour.h"
34 #include "ardour/mute_master.h"
35 #include "ardour/session.h"
36 #include "ardour/session_event.h"
37 #include "ardour/session_handle.h"
38 #include "ardour/route.h"
39 #include "ardour/route_group.h"
40 #include "ardour/track.h"
41
42 #include "axis_view.h"
43 #include "selectable.h"
44 #include "stripable_colorpicker.h"
45 #include "window_manager.h"
46
47 namespace ARDOUR {
48         class AudioTrack;
49         class MidiTrack;
50 }
51
52 namespace Gtk {
53         class Menu;
54         class CheckMenuItem;
55         class Widget;
56 }
57
58 class ArdourButton;
59 class ArdourWindow;
60 class IOSelectorWindow;
61 class ControlSlaveUI;
62
63 class RoutePinWindowProxy : public WM::ProxyBase
64 {
65 public:
66         RoutePinWindowProxy (std::string const &, boost::shared_ptr<ARDOUR::Route>);
67         ~RoutePinWindowProxy();
68
69         Gtk::Window* get (bool create = false);
70         ARDOUR::SessionHandlePtr* session_handle();
71
72 private:
73         boost::weak_ptr<ARDOUR::Route> _route;
74
75         void route_going_away ();
76         PBD::ScopedConnection going_away_connection;
77 };
78
79 class RouteUI : public virtual Selectable, public virtual ARDOUR::SessionHandlePtr, public virtual PBD::ScopedConnectionList, public virtual sigc::trackable
80 {
81 public:
82         RouteUI (ARDOUR::Session*);
83
84         virtual ~RouteUI();
85
86         boost::shared_ptr<ARDOUR::Stripable> stripable() const;
87
88         virtual void set_route (boost::shared_ptr<ARDOUR::Route>);
89         virtual void set_button_names () = 0;
90
91         bool is_track() const;
92         bool is_audio_track() const;
93         bool is_midi_track() const;
94         bool has_audio_outputs () const;
95
96         boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
97         ARDOUR::RouteGroup* route_group() const;
98
99         boost::shared_ptr<ARDOUR::Track>      track() const;
100         boost::shared_ptr<ARDOUR::AudioTrack> audio_track() const;
101         boost::shared_ptr<ARDOUR::MidiTrack>  midi_track() const;
102
103         // protected: XXX sigh this should be here
104
105         boost::shared_ptr<ARDOUR::Route> _route;
106
107         virtual void set_color (uint32_t c);
108         Gdk::Color route_color () const;
109         void choose_color ();
110
111         bool ignore_toggle;
112         bool wait_for_release;
113         bool multiple_mute_change;
114         bool multiple_solo_change;
115
116         Gtk::HBox _invert_button_box;
117         ArdourButton* mute_button;
118         ArdourButton* solo_button;
119         ArdourButton* rec_enable_button; /* audio tracks */
120         ArdourButton* show_sends_button; /* busses */
121         ArdourButton* monitor_input_button;
122         ArdourButton* monitor_disk_button;
123
124         Glib::RefPtr<Gdk::Pixbuf> solo_safe_pixbuf;
125
126         ArdourButton* solo_safe_led;
127         ArdourButton* solo_isolated_led;
128
129
130         Gtk::Label monitor_input_button_label;
131         Gtk::Label monitor_disk_button_label;
132
133         void send_blink (bool);
134         sigc::connection send_blink_connection;
135
136         sigc::connection rec_blink_connection;
137
138         Gtk::Menu* mute_menu;
139         Gtk::Menu* solo_menu;
140         Gtk::Menu* sends_menu;
141
142         boost::shared_ptr<ARDOUR::Delivery> _current_delivery;
143
144         bool mute_press(GdkEventButton*);
145         bool mute_release(GdkEventButton*);
146         bool solo_press(GdkEventButton*);
147         bool solo_release(GdkEventButton*);
148         bool rec_enable_press(GdkEventButton*);
149         bool rec_enable_release(GdkEventButton*);
150         bool show_sends_press(GdkEventButton*);
151         bool show_sends_release(GdkEventButton*);
152
153         bool monitor_release(GdkEventButton*, ARDOUR::MonitorChoice);
154         bool monitor_input_press(GdkEventButton*);
155         bool monitor_input_release(GdkEventButton*);
156         bool monitor_disk_press(GdkEventButton*);
157         bool monitor_disk_release(GdkEventButton*);
158         void update_monitoring_display ();
159
160         void edit_input_configuration ();
161         void edit_output_configuration ();
162
163         void build_sends_menu ();
164         void set_sends_gain_from_track ();
165         void set_sends_gain_to_zero ();
166         void set_sends_gain_to_unity ();
167         void create_sends (ARDOUR::Placement, bool);
168         void create_selected_sends (ARDOUR::Placement, bool);
169
170         void solo_changed(bool, void*);
171         void solo_changed_so_update_mute ();
172         void listen_changed(void*);
173         virtual void processors_changed (ARDOUR::RouteProcessorChange) {}
174         void route_rec_enable_changed();
175         void session_rec_enable_changed();
176
177         void build_solo_menu ();
178
179         void solo_isolated_toggle (void*, Gtk::CheckMenuItem*);
180         void toggle_solo_isolated (Gtk::CheckMenuItem*);
181
182         bool solo_isolate_button_release (GdkEventButton*);
183         bool solo_safe_button_release (GdkEventButton*);
184
185         void solo_safe_toggle (void*, Gtk::CheckMenuItem*);
186         void toggle_solo_safe (Gtk::CheckMenuItem*);
187
188         Gtk::CheckMenuItem* pre_fader_mute_check;
189         Gtk::CheckMenuItem* post_fader_mute_check;
190         Gtk::CheckMenuItem* listen_mute_check;
191         Gtk::CheckMenuItem* main_mute_check;
192         Gtk::CheckMenuItem* solo_safe_check;
193         Gtk::CheckMenuItem* solo_isolated_check;
194
195         void toggle_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
196         void muting_change ();
197         void build_mute_menu(void);
198         void init_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
199
200         int  set_color_from_route ();
201
202         void route_rename();
203
204         void manage_pins ();
205         void maybe_add_route_print_mgr ();
206         void fan_out (bool to_busses = true, bool group = true);
207
208         virtual void route_property_changed (const PBD::PropertyChange&) = 0;
209         void route_removed ();
210
211         virtual void route_active_changed () {}
212         void set_route_active (bool, bool);
213         void duplicate_selected_routes ();
214
215         Gtk::Menu* record_menu;
216         void build_record_menu ();
217
218         Gtk::CheckMenuItem *step_edit_item;
219         void toggle_step_edit ();
220         virtual void step_edit_changed (bool);
221
222         Gtk::CheckMenuItem *rec_safe_item;
223         void toggle_rec_safe ();
224
225         virtual void polarity_changed ();
226
227         Gtk::CheckMenuItem *denormal_menu_item;
228         void toggle_denormal_protection();
229         virtual void denormal_protection_changed ();
230
231         void disconnect_input ();
232         void disconnect_output ();
233
234         virtual void blink_rec_display (bool onoff);
235         void update_mute_display ();
236
237         void update_solo_display ();
238
239         virtual void map_frozen ();
240
241         void adjust_latency ();
242         bool process_save_template_prompter (ArdourPrompter& prompter, const std::string& dir);
243         void save_as_template ();
244
245         static Gtkmm2ext::ActiveState solo_active_state (boost::shared_ptr<ARDOUR::Stripable>);
246         static Gtkmm2ext::ActiveState solo_isolate_active_state (boost::shared_ptr<ARDOUR::Stripable>);
247         static Gtkmm2ext::ActiveState solo_safe_active_state (boost::shared_ptr<ARDOUR::Stripable>);
248         static Gtkmm2ext::ActiveState mute_active_state (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Stripable>);
249
250         /** Emitted when a bus has been set or unset from `display sends to this bus' mode
251          *  by a click on the `Sends' button.  The parameter is the route that the sends are
252          *  to, or 0 if no route is now in this mode.
253          */
254         static PBD::Signal1<void, boost::shared_ptr<ARDOUR::Route> > BusSendDisplayChanged;
255
256         void comment_editor_done_editing ();
257         void setup_comment_editor ();
258         void open_comment_editor ();
259         void toggle_comment_editor ();
260
261         gint comment_key_release_handler (GdkEventKey*);
262         void comment_changed ();
263         void comment_edited ();
264         bool ignore_comment_edit;
265
266 protected:
267
268         ArdourWindow*  comment_window;
269         Gtk::TextView* comment_area;
270         IOSelectorWindow *input_selector;
271         IOSelectorWindow *output_selector;
272
273         PBD::ScopedConnectionList route_connections;
274         bool self_destruct;
275
276         void init ();
277         void reset ();
278
279         void self_delete ();
280         virtual void start_step_editing () {}
281         virtual void stop_step_editing() {}
282
283         void set_invert_sensitive (bool);
284         bool verify_new_route_name (const std::string& name);
285
286         void route_gui_changed (PBD::PropertyChange const&);
287         virtual void route_color_changed () {}
288
289         void check_rec_enable_sensitivity ();
290
291         virtual void bus_send_display_changed (boost::shared_ptr<ARDOUR::Route>);
292
293         static std::string program_port_prefix;
294
295         bool mark_hidden (bool yn);
296
297 private:
298         void parameter_changed (std::string const&);
299         void relabel_solo_button ();
300         void track_mode_changed ();
301
302         std::string route_state_id () const;
303
304 protected:
305         struct SoloMuteRelease {
306                 SoloMuteRelease (bool was_active)
307                         : active (was_active)
308                         , exclusive (false)
309                 {}
310
311                 boost::shared_ptr<ARDOUR::RouteList> routes;
312                 boost::shared_ptr<ARDOUR::RouteList> routes_on;
313                 boost::shared_ptr<ARDOUR::RouteList> routes_off;
314                 boost::shared_ptr<ARDOUR::Route> route;
315                 bool active;
316                 bool exclusive;
317         };
318
319         SoloMuteRelease* _solo_release;
320         SoloMuteRelease* _mute_release;
321
322         ControlSlaveUI* csu;
323
324 private:
325         void setup_invert_buttons ();
326         void set_invert_button_state ();
327         void invert_menu_toggled (uint32_t);
328         bool invert_press (GdkEventButton *);
329         bool invert_release (GdkEventButton *, uint32_t i);
330
331         int _i_am_the_modifier;
332         std::vector<ArdourButton*> _invert_buttons;
333         Gtk::Menu* _invert_menu;
334
335         StripableColorDialog _color_picker;
336
337         static void set_showing_sends_to (boost::shared_ptr<ARDOUR::Route>);
338         static boost::weak_ptr<ARDOUR::Route> _showing_sends_to;
339
340         static uint32_t _max_invert_buttons;
341 };
342
343 #endif /* __ardour_route_ui__ */