Light mono button up when it is active, and make it bindable. Fixes #3665.
[ardour.git] / gtk2_ardour / mixer_strip.h
1 /*
2     Copyright (C) 2000-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 #ifndef __ardour_mixer_strip__
20 #define __ardour_mixer_strip__
21
22 #include <vector>
23
24 #include <cmath>
25
26 #include <gtkmm/eventbox.h>
27 #include <gtkmm/button.h>
28 #include <gtkmm/box.h>
29 #include <gtkmm/frame.h>
30 #include <gtkmm/button.h>
31 #include <gtkmm/label.h>
32 #include <gtkmm/togglebutton.h>
33 #include <gtkmm/menu.h>
34 #include <gtkmm/textview.h>
35 #include <gtkmm/adjustment.h>
36
37 #include "gtkmm2ext/auto_spin.h"
38 #include "gtkmm2ext/click_box.h"
39 #include "gtkmm2ext/slider_controller.h"
40 #include "gtkmm2ext/bindable_button.h"
41
42 #include "pbd/stateful.h"
43
44 #include "ardour/types.h"
45 #include "ardour/ardour.h"
46 #include "ardour/processor.h"
47
48 #include "pbd/fastlog.h"
49
50 #include "route_ui.h"
51 #include "gain_meter.h"
52 #include "panner_ui.h"
53 #include "enums.h"
54 #include "processor_box.h"
55 #include "ardour_dialog.h"
56
57 namespace Gtkmm2ext {
58         class SliderController;
59 }
60
61 namespace ARDOUR {
62         class Route;
63         class Send;
64         class Processor;
65         class Session;
66         class PortInsert;
67         class Bundle;
68         class Plugin;
69 }
70 namespace Gtk {
71         class Window;
72         class Style;
73 }
74
75 class Mixer_UI;
76 class IOSelectorWindow;
77 class MotionController;
78 class RouteGroupMenu;
79
80 class MixerStrip : public RouteUI, public Gtk::EventBox
81 {
82   public:
83         MixerStrip (Mixer_UI&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, bool in_mixer = true);
84         MixerStrip (Mixer_UI&, ARDOUR::Session*, bool in_mixer = true);
85         ~MixerStrip ();
86
87         void set_width_enum (Width, void* owner);
88         Width get_width_enum () const { return _width; }
89         void* width_owner () const { return _width_owner; }
90
91         GainMeter&      gain_meter()      { return gpm; }
92         PannerUI&       panner_ui()       { return panners; }
93         PluginSelector* plugin_selector();
94
95         void fast_update ();
96         void set_embedded (bool);
97
98         ARDOUR::RouteGroup* route_group() const;
99         void set_route (boost::shared_ptr<ARDOUR::Route>);
100         void set_button_names ();
101         void show_send (boost::shared_ptr<ARDOUR::Send>);
102         void revert_to_default_display ();
103
104         /** @return the delivery that is being edited using our fader; it will be the
105          *  last send passed to ::show_send, or our route's main out delivery.
106          */
107         boost::shared_ptr<ARDOUR::Delivery> current_delivery () const {
108                 return _current_delivery;
109         }
110
111         bool mixer_owned () const {
112                 return _mixer_owned;
113         }
114
115         sigc::signal<void> WidthChanged;
116
117         /** The delivery that we are handling the level for with our fader has changed */
118         PBD::Signal1<void, boost::weak_ptr<ARDOUR::Delivery> > DeliveryChanged;
119
120         static sigc::signal<void,boost::shared_ptr<ARDOUR::Route> > SwitchIO;
121         static PBD::Signal1<void,MixerStrip*> CatchDeletion;
122
123   protected:
124         friend class Mixer_UI;
125         void set_packed (bool yn);
126         bool packed () { return _packed; }
127
128         void set_selected(bool yn);
129         void set_stuff_from_route ();
130
131         bool on_leave_notify_event (GdkEventCrossing* ev);
132         bool on_enter_notify_event (GdkEventCrossing* ev);
133         bool on_key_press_event (GdkEventKey* ev);
134         bool on_key_release_event (GdkEventKey* ev);
135
136   private:
137         Mixer_UI& _mixer;
138
139         void init ();
140
141         bool  _embedded;
142         bool  _packed;
143         bool  _mixer_owned;
144         Width _width;
145         void*  _width_owner;
146
147         Gtk::Button         hide_button;
148         Gtk::Button         width_button;
149         Gtk::HBox           width_hide_box;
150         Gtk::VBox           whvbox;
151         Gtk::EventBox       top_event_box;
152         Gtk::EventBox*      spacer;
153         Gtk::Alignment      gain_meter_alignment;
154
155         void hide_clicked();
156         void width_clicked ();
157
158         Gtk::Frame          global_frame;
159         Gtk::VBox           global_vpacker;
160
161         ProcessorBox processor_box;
162         GainMeter   gpm;
163         PannerUI    panners;
164         BindableToggleButton _mono_button;
165
166         Gtk::Table button_table;
167         Gtk::Table solo_led_table;
168         Gtk::HBox  solo_led_box;
169         Gtk::Table middle_button_table;
170         Gtk::Table bottom_button_table;
171
172         Gtk::Button                  gain_unit_button;
173         Gtk::Label                   gain_unit_label;
174         Gtk::Button                  meter_point_button;
175         Gtk::Label                   meter_point_label;
176
177         void meter_changed ();
178
179         Gtk::Button diskstream_button;
180         Gtk::Label  diskstream_label;
181
182         Gtk::Button input_button;
183         Gtk::Label  input_label;
184         Gtk::Button output_button;
185         Gtk::Label  output_label;
186
187         std::string longest_label;
188
189         gint    mark_update_safe ();
190         guint32 mode_switch_in_progress;
191
192         Gtk::Button   name_button;
193
194         ArdourDialog*  comment_window;
195         Gtk::TextView* comment_area;
196         Gtk::Button    comment_button;
197
198         void comment_editor_done_editing();
199         void setup_comment_editor ();
200         void comment_button_clicked ();
201         void mono_button_clicked ();
202
203         Gtk::Button   group_button;
204         Gtk::Label    group_label;
205         RouteGroupMenu *group_menu;
206
207         gint input_press (GdkEventButton *);
208         gint output_press (GdkEventButton *);
209
210         Gtk::Menu input_menu;
211         std::list<boost::shared_ptr<ARDOUR::Bundle> > input_menu_bundles;
212         void maybe_add_bundle_to_input_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
213
214         Gtk::Menu output_menu;
215         std::list<boost::shared_ptr<ARDOUR::Bundle> > output_menu_bundles;
216         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
217
218         void bundle_input_toggled (boost::shared_ptr<ARDOUR::Bundle>);
219         void bundle_output_toggled (boost::shared_ptr<ARDOUR::Bundle>);
220
221         void edit_input_configuration ();
222         void edit_output_configuration ();
223
224         void diskstream_changed ();
225
226         Gtk::Menu *send_action_menu;
227         Gtk::MenuItem* rename_menu_item;
228         void build_send_action_menu ();
229
230         void new_send ();
231         void show_send_controls ();
232
233         PBD::ScopedConnection panstate_connection;
234         PBD::ScopedConnection panstyle_connection;
235         void connect_to_pan ();
236
237         void update_diskstream_display ();
238         void update_input_display ();
239         void update_output_display ();
240
241         void set_automated_controls_sensitivity (bool yn);
242
243         Gtk::Menu* route_ops_menu;
244         void build_route_ops_menu ();
245         gboolean name_button_button_press (GdkEventButton*);
246         void list_route_operations ();
247
248         gint comment_key_release_handler (GdkEventKey*);
249         void comment_changed (void *src);
250         void comment_edited ();
251         bool ignore_comment_edit;
252
253         void set_route_group (ARDOUR::RouteGroup *);
254         bool select_route_group (GdkEventButton *);
255         void route_group_changed ();
256
257         IOSelectorWindow *input_selector;
258         IOSelectorWindow *output_selector;
259
260         Gtk::Style *passthru_style;
261
262         void route_gui_changed (std::string, void*);
263         void show_route_color ();
264         void show_passthru_color ();
265
266         void route_active_changed ();
267
268         void name_changed ();
269         void update_speed_display ();
270         void map_frozen ();
271         void hide_processor_editor (boost::weak_ptr<ARDOUR::Processor> processor);
272         void hide_redirect_editors ();
273
274         bool ignore_speed_adjustment;
275
276         void engine_running();
277         void engine_stopped();
278
279         void switch_io (boost::shared_ptr<ARDOUR::Route>);
280         
281         void set_current_delivery (boost::shared_ptr<ARDOUR::Delivery>);
282         boost::shared_ptr<ARDOUR::Delivery> _current_delivery;
283         
284         void drop_send ();
285         PBD::ScopedConnection send_gone_connection;
286
287         void reset_strip_style ();
288
289         static int scrollbar_height;
290
291         void update_io_button (boost::shared_ptr<ARDOUR::Route> route, Width width, bool input_button);
292         void port_connected_or_disconnected (ARDOUR::Port *, ARDOUR::Port *);
293 };
294
295 #endif /* __ardour_mixer_strip__ */