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