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