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