afacd4a32836a3aca2569d352c138504bffb3bb4
[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
93         void fast_update ();
94         void set_embedded (bool);
95
96         ARDOUR::RouteGroup* route_group() const;
97         void set_route (boost::shared_ptr<ARDOUR::Route>);
98         void set_button_names ();
99
100         sigc::signal<void>      WidthChanged;
101
102         static sigc::signal<void,boost::shared_ptr<ARDOUR::Route> > SwitchIO;
103
104   protected:
105         friend class Mixer_UI;
106         void set_packed (bool yn);
107         bool packed () { return _packed; }
108
109         void set_selected(bool yn);
110         void set_stuff_from_route ();
111
112         bool on_leave_notify_event (GdkEventCrossing* ev);
113         bool on_enter_notify_event (GdkEventCrossing* ev);
114         bool on_key_press_event (GdkEventKey* ev);
115         bool on_key_release_event (GdkEventKey* ev);
116
117   private:
118         Mixer_UI& _mixer;
119
120         void init ();
121
122         bool  _embedded;
123         bool  _packed;
124         bool  _mixer_owned;
125         Width _width;
126         void*  _width_owner;
127
128         Gtk::Button         hide_button;
129         Gtk::Button         width_button;
130         Gtk::HBox           width_hide_box;
131         Gtk::VBox           whvbox;
132         Gtk::EventBox       top_event_box;
133         Gtk::EventBox*      spacer;
134         Gtk::Alignment      gain_meter_alignment;
135
136         void hide_clicked();
137         void width_clicked ();
138
139         Gtk::Frame          global_frame;
140         Gtk::VBox           global_vpacker;
141
142         ProcessorBox processor_box;
143         GainMeter   gpm;
144         PannerUI    panners;
145
146         Gtk::Table button_table;
147         Gtk::Table middle_button_table;
148         Gtk::Table bottom_button_table;
149
150         Gtk::Button                  gain_unit_button;
151         Gtk::Label                   gain_unit_label;
152         Gtk::Button                  meter_point_button;
153         Gtk::Label                   meter_point_label;
154
155         void meter_changed (void *);
156
157         Gtk::Button diskstream_button;
158         Gtk::Label  diskstream_label;
159
160         Gtk::Button input_button;
161         Gtk::Label  input_label;
162         Gtk::Button output_button;
163         Gtk::Label  output_label;
164
165         sigc::connection newplug_connection;
166
167         gint    mark_update_safe ();
168         guint32 mode_switch_in_progress;
169
170         Gtk::Button   name_button;
171
172         ArdourDialog*  comment_window;
173         Gtk::TextView* comment_area;
174         Gtk::Button    comment_button;
175
176         void comment_editor_done_editing();
177         void setup_comment_editor ();
178         void comment_button_clicked ();
179
180         Gtk::Button   group_button;
181         Gtk::Label    group_label;
182         RouteGroupMenu *group_menu;
183
184         gint input_press (GdkEventButton *);
185         gint output_press (GdkEventButton *);
186
187         Gtk::Menu  input_menu;
188         void maybe_add_bundle_to_input_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
189
190         Gtk::Menu output_menu;
191         void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
192
193         void bundle_input_toggled (boost::shared_ptr<ARDOUR::Bundle>);
194         void bundle_output_toggled (boost::shared_ptr<ARDOUR::Bundle>);
195
196         void edit_input_configuration ();
197         void edit_output_configuration ();
198
199         void diskstream_changed ();
200
201         Gtk::Menu *send_action_menu;
202         Gtk::MenuItem* rename_menu_item;
203         void build_send_action_menu ();
204
205         void new_send ();
206         void show_send_controls ();
207
208         void input_changed (ARDOUR::IOChange, void *);
209         void output_changed (ARDOUR::IOChange, void *);
210
211         sigc::connection panstate_connection;
212         sigc::connection panstyle_connection;
213         void connect_to_pan ();
214
215         void update_diskstream_display ();
216         void update_input_display ();
217         void update_output_display ();
218
219         void set_automated_controls_sensitivity (bool yn);
220
221         Gtk::Menu* route_ops_menu;
222         void build_route_ops_menu ();
223         gint name_button_button_press (GdkEventButton*);
224         void list_route_operations ();
225
226         gint comment_key_release_handler (GdkEventKey*);
227         void comment_changed (void *src);
228         void comment_edited ();
229         bool ignore_comment_edit;
230
231         void set_route_group (ARDOUR::RouteGroup *);
232         bool select_route_group (GdkEventButton *);
233         void route_group_changed (void *);
234
235         IOSelectorWindow *input_selector;
236         IOSelectorWindow *output_selector;
237
238         Gtk::Style *passthru_style;
239
240         void route_gui_changed (std::string, void*);
241         void show_route_color ();
242         void show_passthru_color ();
243
244         void route_active_changed ();
245
246         void name_changed ();
247         void update_speed_display ();
248         void map_frozen ();
249         void hide_processor_editor (boost::weak_ptr<ARDOUR::Processor> processor);
250         void hide_redirect_editors ();
251
252         bool ignore_speed_adjustment;
253
254         void engine_running();
255         void engine_stopped();
256
257         void switch_io (boost::shared_ptr<ARDOUR::Route>);
258         boost::shared_ptr<ARDOUR::Delivery> _current_delivery;
259         void revert_to_default_display ();
260
261         static int scrollbar_height;
262
263         void update_io_button (boost::shared_ptr<ARDOUR::Route> route, Width width, bool input_button);
264 };
265
266 #endif /* __ardour_mixer_strip__ */