send control now has working metering, and switches back and forth between busses...
[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 class MotionController;
57
58
59 namespace Gtkmm2ext {
60         class SliderController;
61 }
62
63 namespace ARDOUR {
64         class Route;
65         class Send;
66         class Processor;
67         class Session;
68         class PortInsert;
69         class Bundle;
70         class Plugin;
71 }
72 namespace Gtk {
73         class Window;
74         class Style;
75 }
76
77 class Mixer_UI;
78 class IOSelectorWindow;
79
80 class MixerStrip : public RouteUI, public Gtk::EventBox
81 {
82   public:
83         MixerStrip (Mixer_UI&, ARDOUR::Session&, boost::shared_ptr<ARDOUR::Route>, bool in_mixer = true);
84         MixerStrip (Mixer_UI&, ARDOUR::Session&, bool in_mixer = true);
85         ~MixerStrip ();
86
87         void set_width (Width, void* owner);
88         Width get_width() const { return _width; }
89         void* width_owner() const { return _width_owner; }
90
91         GainMeter& gain_meter() { return gpm; }
92         PannerUI&  panner_ui()  { return panners; }
93
94         void fast_update ();
95         void set_embedded (bool);
96         
97         ARDOUR::RouteGroup* mix_group() const;
98         void set_route (boost::shared_ptr<ARDOUR::Route>);
99
100 #ifdef GTKOSX
101         sigc::signal<void>      WidthChanged;
102 #endif
103
104         static sigc::signal<void,boost::shared_ptr<ARDOUR::Route> > SwitchIO;
105
106   protected:
107         friend class Mixer_UI;
108         void set_packed (bool yn);
109         bool packed () { return _packed; }
110
111         void set_selected(bool yn);
112         void set_stuff_from_route ();
113
114   private:
115         Mixer_UI& _mixer;
116
117         void init ();
118
119         bool  _embedded;
120         bool  _packed;
121         bool  _mixer_owned;
122         Width _width;
123         void*  _width_owner;
124
125         Gtk::Button         hide_button;
126         Gtk::Button         width_button;
127         Gtk::HBox           width_hide_box;
128         Gtk::VBox           whvbox;
129         Gtk::EventBox       top_event_box;
130         Gtk::EventBox*      spacer;
131         Gtk::Alignment      gain_meter_alignment;
132
133         void hide_clicked();
134         void width_clicked ();
135
136         Gtk::Frame          global_frame;
137         Gtk::VBox           global_vpacker;
138
139         ProcessorBox pre_processor_box;
140         ProcessorBox post_processor_box;
141         GainMeter   gpm;
142         PannerUI    panners;
143         
144         Gtk::Table button_table;
145         Gtk::Table middle_button_table;
146         Gtk::Table bottom_button_table;
147
148         Gtk::Button                  gain_unit_button;
149         Gtk::Label                   gain_unit_label;
150         Gtk::Button                  meter_point_button;
151         Gtk::Label                   meter_point_label;
152
153         void meter_changed (void *);
154
155         Gtk::Button diskstream_button;
156         Gtk::Label  diskstream_label;
157
158         Gtk::Button input_button;
159         Gtk::Label  input_label;
160         Gtk::Button output_button;
161         Gtk::Label  output_label;
162
163         sigc::connection newplug_connection;
164     
165         gint    mark_update_safe ();
166         guint32 mode_switch_in_progress;
167         
168         Gtk::Button   name_button;
169
170         ArdourDialog*  comment_window;
171         Gtk::TextView* comment_area;
172         Gtk::Button    comment_button;
173
174         void comment_editor_done_editing();
175         void setup_comment_editor ();
176         void comment_button_clicked ();
177
178         Gtk::Button   group_button;
179         Gtk::Label    group_label;
180         Gtk::Menu    *group_menu;
181
182         gint input_press (GdkEventButton *);
183         gint output_press (GdkEventButton *);
184
185         Gtk::Menu  input_menu;
186         void maybe_add_bundle_to_input_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
187
188         Gtk::Menu output_menu;
189         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
190         
191         void bundle_input_toggled (boost::shared_ptr<ARDOUR::Bundle>);
192         void bundle_output_toggled (boost::shared_ptr<ARDOUR::Bundle>);
193
194         void edit_input_configuration ();
195         void edit_output_configuration ();
196
197         void diskstream_changed ();
198
199         Gtk::Menu *send_action_menu;
200         Gtk::MenuItem* rename_menu_item;
201         void build_send_action_menu ();
202
203         void new_send ();
204         void show_send_controls ();
205
206         void input_changed (ARDOUR::IOChange, void *);
207         void output_changed (ARDOUR::IOChange, void *);
208
209         sigc::connection panstate_connection;
210         sigc::connection panstyle_connection;
211         void connect_to_pan ();
212
213         void update_diskstream_display ();
214         void update_input_display ();
215         void update_output_display ();
216
217         void set_automated_controls_sensitivity (bool yn);
218
219         Gtk::Menu* route_ops_menu;
220         void build_route_ops_menu ();
221         gint name_button_button_press (GdkEventButton*);
222         void list_route_operations ();
223
224         gint comment_key_release_handler (GdkEventKey*);
225         void comment_changed (void *src);
226         void comment_edited ();
227         bool ignore_comment_edit;
228
229         void set_mix_group (ARDOUR::RouteGroup *);
230         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
231         bool select_mix_group (GdkEventButton *);
232         void mix_group_changed (void *);
233
234         IOSelectorWindow *input_selector;
235         IOSelectorWindow *output_selector;
236
237         Gtk::Style *passthru_style;
238
239         void route_gui_changed (std::string, void*);
240         void show_route_color ();
241         void show_passthru_color ();
242
243         void route_active_changed ();
244
245         /* speed control (for tracks only) */
246
247         Gtk::Adjustment    speed_adjustment;
248         Gtkmm2ext::ClickBox speed_spinner;
249         Gtk::Label         speed_label;
250         Gtk::Frame         speed_frame;
251
252         void speed_adjustment_changed ();
253         void speed_changed ();
254         void name_changed ();
255         void update_speed_display ();
256         void map_frozen ();
257         void hide_processor_editor (boost::weak_ptr<ARDOUR::Processor> processor);
258         void hide_redirect_editors ();
259
260         bool ignore_speed_adjustment;
261
262         void engine_running();
263         void engine_stopped();
264
265         void switch_io (boost::shared_ptr<ARDOUR::Route>);
266         boost::shared_ptr<ARDOUR::Send> _current_send;
267         void revert_to_default_display ();
268
269         static int scrollbar_height;
270 };
271
272 #endif /* __ardour_mixer_strip__ */