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