RouteUI connects to Route's PropertyChange signal; derived types implement route_prop...
[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/bindable_button.h"
40 #include "gtkmm2ext/stateful_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 "axis_view.h"
51 #include "ardour_knob.h"
52 #include "route_ui.h"
53 #include "gain_meter.h"
54 #include "panner_ui.h"
55 #include "enums.h"
56 #include "processor_box.h"
57 #include "visibility_group.h"
58
59 namespace ARDOUR {
60         class Route;
61         class Send;
62         class Processor;
63         class Session;
64         class PortInsert;
65         class Bundle;
66         class Plugin;
67 }
68 namespace Gtk {
69         class Window;
70         class Style;
71 }
72
73 class Mixer_UI;
74 class MotionController;
75 class RouteGroupMenu;
76 class ArdourWindow;
77
78 class MixerStrip : public AxisView, public RouteUI, public Gtk::EventBox
79 {
80   public:
81         MixerStrip (Mixer_UI&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, bool in_mixer = true);
82         MixerStrip (Mixer_UI&, ARDOUR::Session*, bool in_mixer = true);
83         ~MixerStrip ();
84
85         std::string name()  const;
86         Gdk::Color color () const;
87         bool marked_for_display () const;
88         bool set_marked_for_display (bool);
89
90         void set_width_enum (Width, void* owner);
91         Width get_width_enum () const { return _width; }
92         void* width_owner () const { return _width_owner; }
93
94         GainMeter&      gain_meter()      { return gpm; }
95         PannerUI&       panner_ui()       { return panners; }
96         PluginSelector* plugin_selector();
97
98         void fast_update ();
99         void set_embedded (bool);
100
101         void set_route (boost::shared_ptr<ARDOUR::Route>);
102         void set_button_names ();
103         void show_send (boost::shared_ptr<ARDOUR::Send>);
104         void revert_to_default_display ();
105
106         /** @return the delivery that is being edited using our fader; it will be the
107          *  last send passed to ::show_send, or our route's main out delivery.
108          */
109         boost::shared_ptr<ARDOUR::Delivery> current_delivery () const {
110                 return _current_delivery;
111         }
112
113         bool mixer_owned () const {
114                 return _mixer_owned;
115         }
116
117         void hide_things ();
118
119         sigc::signal<void> WidthChanged;
120
121         /** The delivery that we are handling the level for with our fader has changed */
122         PBD::Signal1<void, boost::weak_ptr<ARDOUR::Delivery> > DeliveryChanged;
123
124         static PBD::Signal1<void,MixerStrip*> CatchDeletion;
125
126         std::string state_id() const;
127
128         void parameter_changed (std::string);
129         void route_active_changed ();
130
131         void copy_processors ();
132         void cut_processors ();
133         void paste_processors ();
134         void select_all_processors ();
135         void deselect_all_processors ();
136         bool delete_processors ();  //note: returns false if nothing was deleted
137         void toggle_processors ();
138         void ab_plugins ();
139
140         void vca_assign (boost::shared_ptr<ARDOUR::VCA>);
141         void vca_unassign (boost::shared_ptr<ARDOUR::VCA>);
142
143         void set_selected(bool yn);
144         bool is_selected() {return _selected;}
145
146         static MixerStrip* entered_mixer_strip() { return _entered_mixer_strip; }
147
148   protected:
149         friend class Mixer_UI;
150         void set_packed (bool yn);
151         bool packed () { return _packed; }
152
153         void set_stuff_from_route ();
154
155   private:
156         Mixer_UI& _mixer;
157
158         void init ();
159
160         bool  _embedded;
161         bool  _packed;
162         bool  _mixer_owned;
163         Width _width;
164         void*  _width_owner;
165
166         ArdourButton         hide_button;
167         ArdourButton         width_button;
168         ArdourButton         number_label;
169         Gtk::HBox           width_hide_box;
170         Gtk::EventBox*      spacer;
171
172         void hide_clicked();
173         bool width_button_pressed (GdkEventButton *);
174
175         Gtk::Frame          global_frame;
176         Gtk::VBox           global_vpacker;
177
178         ProcessorBox processor_box;
179         GainMeter    gpm;
180         PannerUI     panners;
181
182         Glib::RefPtr<Gtk::SizeGroup> button_size_group;
183
184         Gtk::Table rec_mon_table;
185         Gtk::Table solo_iso_table;
186         Gtk::Table mute_solo_table;
187         Gtk::Table bottom_button_table;
188
189         ArdourButton                 meter_point_button;
190
191         void meter_changed ();
192         void monitor_changed ();
193
194         ArdourButton input_button;
195         ArdourButton output_button;
196
197         ArdourButton* monitor_section_button;
198
199         void input_button_resized (Gtk::Allocation&);
200         void output_button_resized (Gtk::Allocation&);
201
202         ArdourButton* midi_input_enable_button;
203         Gtk::HBox   input_button_box;
204
205         std::string longest_label;
206
207         void midi_input_status_changed ();
208         bool input_active_button_press (GdkEventButton*);
209         bool input_active_button_release (GdkEventButton*);
210
211         void help_count_plugins (boost::weak_ptr<ARDOUR::Processor>);
212         uint32_t _plugin_insert_cnt;
213
214         gint    mark_update_safe ();
215         guint32 mode_switch_in_progress;
216
217         ArdourButton   name_button;
218
219         ArdourButton   _comment_button;
220
221         ArdourKnob     trim_control;
222
223         void setup_comment_button ();
224
225         ArdourButton   group_button;
226         RouteGroupMenu *group_menu;
227
228         gint input_press (GdkEventButton *);
229         gint input_release (GdkEventButton *);
230
231         gint output_press (GdkEventButton *);
232         gint output_release (GdkEventButton *);
233
234         Gtk::Menu input_menu;
235         std::list<boost::shared_ptr<ARDOUR::Bundle> > input_menu_bundles;
236         void maybe_add_bundle_to_input_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
237
238         Gtk::Menu output_menu;
239         std::list<boost::shared_ptr<ARDOUR::Bundle> > output_menu_bundles;
240         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
241
242         void bundle_input_chosen (boost::shared_ptr<ARDOUR::Bundle>);
243         void bundle_output_chosen (boost::shared_ptr<ARDOUR::Bundle>);
244
245         void diskstream_changed ();
246         void io_changed_proxy ();
247
248         Gtk::Menu *send_action_menu;
249         Gtk::MenuItem* rename_menu_item;
250         void build_send_action_menu ();
251
252         PBD::ScopedConnection panstate_connection;
253         PBD::ScopedConnection panstyle_connection;
254         void connect_to_pan ();
255         void update_panner_choices ();
256
257         void update_diskstream_display ();
258         void update_input_display ();
259         void update_output_display ();
260
261         void set_automated_controls_sensitivity (bool yn);
262
263         Gtk::Menu* route_ops_menu;
264         void build_route_ops_menu ();
265         gboolean name_button_button_press (GdkEventButton*);
266         gboolean name_button_button_release (GdkEventButton*);
267         gboolean number_button_button_press (GdkEventButton*);
268         void list_route_operations ();
269
270         bool select_route_group (GdkEventButton *);
271         void route_group_changed ();
272
273         Gtk::Style *passthru_style;
274
275         void route_color_changed ();
276         void show_passthru_color ();
277
278         void route_property_changed (const PBD::PropertyChange&);
279         void name_button_resized (Gtk::Allocation&);
280         void name_changed ();
281         void update_speed_display ();
282         void map_frozen ();
283         void hide_processor_editor (boost::weak_ptr<ARDOUR::Processor> processor);
284         void hide_redirect_editors ();
285
286         bool ignore_speed_adjustment;
287
288         static MixerStrip* _entered_mixer_strip;
289
290         void engine_running();
291         void engine_stopped();
292
293         virtual void bus_send_display_changed (boost::shared_ptr<ARDOUR::Route>);
294
295         void set_current_delivery (boost::shared_ptr<ARDOUR::Delivery>);
296
297         void drop_send ();
298         PBD::ScopedConnection send_gone_connection;
299
300         void reset_strip_style ();
301
302         void update_io_button (boost::shared_ptr<ARDOUR::Route> route, Width width, bool input_button);
303         void port_connected_or_disconnected (boost::weak_ptr<ARDOUR::Port>, boost::weak_ptr<ARDOUR::Port>);
304
305         bool mixer_strip_enter_event ( GdkEventCrossing * );
306         bool mixer_strip_leave_event ( GdkEventCrossing * );
307
308         /** A VisibilityGroup to manage the visibility of some of our controls.
309          *  We fill it with the controls that are being managed, using the same names
310          *  as those used with _mixer_strip_visibility in RCOptionEditor.  Then
311          *  this VisibilityGroup is configured by changes to the RC variable
312          *  mixer-element-visibility, which happen when the user makes changes in
313          *  the RC option editor.
314          */
315         VisibilityGroup _visibility;
316         boost::optional<bool> override_solo_visibility () const;
317
318         PBD::ScopedConnectionList _config_connection;
319
320         void add_input_port (ARDOUR::DataType);
321         void add_output_port (ARDOUR::DataType);
322
323         bool _suspend_menu_callbacks;
324         bool level_meter_button_press (GdkEventButton *);
325         void popup_level_meter_menu (GdkEventButton *);
326         void add_level_meter_item_point (Gtk::Menu_Helpers::MenuList &, Gtk::RadioMenuItem::Group &, std::string const &, ARDOUR::MeterPoint);
327         void add_level_meter_item_type (Gtk::Menu_Helpers::MenuList &, Gtk::RadioMenuItem::Group &, std::string const &, ARDOUR::MeterType);
328         void set_meter_point (ARDOUR::MeterPoint);
329         void set_meter_type (ARDOUR::MeterType);
330         PBD::ScopedConnection _level_meter_connection;
331
332         std::string meter_point_string (ARDOUR::MeterPoint);
333
334         void vca_menu_toggle (Gtk::CheckMenuItem*, uint32_t n);
335         bool vca_button_release (GdkEventButton* ev);
336
337         void update_track_number_visibility ();
338 };
339
340 #endif /* __ardour_mixer_strip__ */