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