add number-label at top of mixer-strip
[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 IOSelectorWindow;
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 delete_processors ();
130         void toggle_processors ();
131         void ab_plugins ();
132
133   protected:
134         friend class Mixer_UI;
135         void set_packed (bool yn);
136         bool packed () { return _packed; }
137
138         void set_selected(bool yn);
139         void set_stuff_from_route ();
140
141   private:
142         Mixer_UI& _mixer;
143
144         void init ();
145
146         bool  _embedded;
147         bool  _packed;
148         bool  _mixer_owned;
149         Width _width;
150         void*  _width_owner;
151
152         ArdourButton         hide_button;
153         ArdourButton         width_button;
154         ArdourButton         number_label;
155         Gtk::HBox           width_hide_box;
156         Gtk::VBox           whvbox;
157         Gtk::EventBox       top_event_box;
158         Gtk::EventBox*      spacer;
159
160         void hide_clicked();
161         bool width_button_pressed (GdkEventButton *);
162
163         Gtk::Frame          global_frame;
164         Gtk::VBox           global_vpacker;
165
166         ProcessorBox processor_box;
167         GainMeter    gpm;
168         PannerUI     panners;
169
170         Glib::RefPtr<Gtk::SizeGroup> button_size_group;
171
172         Gtk::Table button_table;
173         Gtk::Table rec_solo_table;
174         Gtk::Table top_button_table;
175         Gtk::Table middle_button_table;
176         Gtk::Table bottom_button_table;
177
178         ArdourButton                 meter_point_button;
179
180         void meter_changed ();
181
182         ArdourButton input_button;
183         ArdourButton output_button;
184
185         ArdourButton* midi_input_enable_button;
186         Gtk::HBox   input_button_box;
187
188         std::string longest_label;
189
190         void midi_input_status_changed ();
191         bool input_active_button_press (GdkEventButton*);
192         bool input_active_button_release (GdkEventButton*);
193
194         gint    mark_update_safe ();
195         guint32 mode_switch_in_progress;
196
197         ArdourButton   name_button;
198
199         ArdourWindow*  comment_window;
200         Gtk::TextView* comment_area;
201         ArdourButton   _comment_button;
202
203         void comment_editor_done_editing ();
204         void setup_comment_editor ();
205         void open_comment_editor ();
206         void toggle_comment_editor ();
207         void setup_comment_button ();
208
209         ArdourButton   group_button;
210         RouteGroupMenu *group_menu;
211
212         gint input_press (GdkEventButton *);
213         gint output_press (GdkEventButton *);
214
215         Gtk::Menu input_menu;
216         std::list<boost::shared_ptr<ARDOUR::Bundle> > input_menu_bundles;
217         void maybe_add_bundle_to_input_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
218
219         Gtk::Menu output_menu;
220         std::list<boost::shared_ptr<ARDOUR::Bundle> > output_menu_bundles;
221         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
222
223         void bundle_input_chosen (boost::shared_ptr<ARDOUR::Bundle>);
224         void bundle_output_chosen (boost::shared_ptr<ARDOUR::Bundle>);
225
226         void edit_input_configuration ();
227         void edit_output_configuration ();
228
229         void diskstream_changed ();
230         void io_changed_proxy ();
231
232         Gtk::Menu *send_action_menu;
233         Gtk::MenuItem* rename_menu_item;
234         void build_send_action_menu ();
235
236         void new_send ();
237         void show_send_controls ();
238
239         PBD::ScopedConnection panstate_connection;
240         PBD::ScopedConnection panstyle_connection;
241         void connect_to_pan ();
242         void update_panner_choices ();
243
244         void update_diskstream_display ();
245         void update_input_display ();
246         void update_output_display ();
247
248         void set_automated_controls_sensitivity (bool yn);
249
250         Gtk::Menu* route_ops_menu;
251         void build_route_ops_menu ();
252         gboolean name_button_button_press (GdkEventButton*);
253         void list_route_operations ();
254
255         gint comment_key_release_handler (GdkEventKey*);
256         void comment_changed (void *src);
257         void comment_edited ();
258         bool ignore_comment_edit;
259
260         bool select_route_group (GdkEventButton *);
261         void route_group_changed ();
262
263         IOSelectorWindow *input_selector;
264         IOSelectorWindow *output_selector;
265
266         Gtk::Style *passthru_style;
267
268         void route_color_changed ();
269         void show_passthru_color ();
270
271         void property_changed (const PBD::PropertyChange&);
272         void name_button_resized (Gtk::Allocation&);
273         void name_changed ();
274         void update_speed_display ();
275         void map_frozen ();
276         void hide_processor_editor (boost::weak_ptr<ARDOUR::Processor> processor);
277         void hide_redirect_editors ();
278
279         bool ignore_speed_adjustment;
280
281         void engine_running();
282         void engine_stopped();
283
284         virtual void bus_send_display_changed (boost::shared_ptr<ARDOUR::Route>);
285
286         void set_current_delivery (boost::shared_ptr<ARDOUR::Delivery>);
287         boost::shared_ptr<ARDOUR::Delivery> _current_delivery;
288
289         void drop_send ();
290         PBD::ScopedConnection send_gone_connection;
291
292         void reset_strip_style ();
293
294         static int scrollbar_height;
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         /** A VisibilityGroup to manage the visibility of some of our controls.
300          *  We fill it with the controls that are being managed, using the same names
301          *  as those used with _mixer_strip_visibility in RCOptionEditor.  Then
302          *  this VisibilityGroup is configured by changes to the RC variable
303          *  mixer-strip-visibility, which happen when the user makes changes in
304          *  the RC option editor.
305          */
306         VisibilityGroup _visibility;
307         boost::optional<bool> override_solo_visibility () const;
308
309         PBD::ScopedConnectionList _config_connection;
310
311         void add_input_port (ARDOUR::DataType);
312         void add_output_port (ARDOUR::DataType);
313
314         bool _suspend_menu_callbacks;
315         bool level_meter_button_press (GdkEventButton *);
316         void popup_level_meter_menu (GdkEventButton *);
317         void add_level_meter_item_point (Gtk::Menu_Helpers::MenuList &, Gtk::RadioMenuItem::Group &, std::string const &, ARDOUR::MeterPoint);
318         void add_level_meter_item_type (Gtk::Menu_Helpers::MenuList &, Gtk::RadioMenuItem::Group &, std::string const &, ARDOUR::MeterType);
319         void set_meter_point (ARDOUR::MeterPoint);
320         void set_meter_type (ARDOUR::MeterType);
321         PBD::ScopedConnection _level_meter_connection;
322
323         std::string meter_point_string (ARDOUR::MeterPoint);
324 };
325
326 #endif /* __ardour_mixer_strip__ */