Merged with trunk R1612.
[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/insert.h>
47 #include <ardour/redirect.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 "redirect_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 Insert;
70         class Session;
71         class PortInsert;
72         class Connection;
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);
89         Width get_width() const { return _width; }
90
91         void fast_update ();
92         void set_embedded (bool);
93
94         ARDOUR::RouteGroup* mix_group() const;
95
96   protected:
97         friend class Mixer_UI;
98         void set_packed (bool yn);
99         bool packed () { return _packed; }
100
101         void set_selected(bool yn);
102         void set_stuff_from_route ();
103
104   private:
105         Mixer_UI& _mixer;
106
107         bool  _embedded;
108         bool  _packed;
109         Width _width;
110
111         Gtk::Button         hide_button;
112         Gtk::Button         width_button;
113         Gtk::HBox           width_hide_box;
114         Gtk::EventBox       top_event_box;
115
116         void hide_clicked();
117         void width_clicked ();
118
119         Gtk::Frame          global_frame;
120         Gtk::VBox           global_vpacker;
121
122         RedirectBox pre_redirect_box;
123         RedirectBox post_redirect_box;
124         GainMeter   gpm;
125         PannerUI    panners;
126         
127         Gtk::Table button_table;
128         Gtk::Table middle_button_table;
129         Gtk::Table bottom_button_table;
130
131         Gtk::Button                  gain_unit_button;
132         Gtk::Label                   gain_unit_label;
133         Gtk::Button                  meter_point_button;
134         Gtk::Label                   meter_point_label;
135
136         void meter_changed (void *);
137
138         Gtk::Button diskstream_button;
139         Gtk::Label  diskstream_label;
140
141         Gtk::Button input_button;
142         Gtk::Label  input_label;
143         Gtk::Button output_button;
144         Gtk::Label  output_label;
145
146         sigc::connection newplug_connection;
147     
148         gint    mark_update_safe ();
149         guint32 mode_switch_in_progress;
150         
151         Gtk::Button   name_button;
152
153         ArdourDialog*  comment_window;
154         Gtk::TextView* comment_area;
155         Gtk::Button    comment_button;
156
157         void comment_editor_done_editing();
158         void setup_comment_editor ();
159         void comment_button_clicked ();
160
161         Gtk::Button   group_button;
162         Gtk::Label    group_label;
163         Gtk::Menu    *group_menu;
164
165         gint input_press (GdkEventButton *);
166         gint output_press (GdkEventButton *);
167
168         Gtk::Menu  input_menu;
169         void add_connection_to_input_menu (ARDOUR::Connection *);
170
171         Gtk::Menu output_menu;
172         void add_connection_to_output_menu (ARDOUR::Connection *);
173         
174         void connection_input_chosen (ARDOUR::Connection *);
175         void connection_output_chosen (ARDOUR::Connection *);
176
177         void edit_input_configuration ();
178         void edit_output_configuration ();
179
180         void diskstream_changed ();
181
182         Gtk::Menu *send_action_menu;
183         void build_send_action_menu ();
184
185         void new_send ();
186         void show_send_controls ();
187
188         void input_changed (ARDOUR::IOChange, void *);
189         void output_changed (ARDOUR::IOChange, void *);
190
191         sigc::connection panstate_connection;
192         sigc::connection panstyle_connection;
193         void connect_to_pan ();
194
195         void update_diskstream_display ();
196         void update_input_display ();
197         void update_output_display ();
198
199         void set_automated_controls_sensitivity (bool yn);
200
201         Gtk::Menu* route_ops_menu;
202         void build_route_ops_menu ();
203         gint name_button_button_press (GdkEventButton*);
204         void list_route_operations ();
205
206         gint comment_key_release_handler (GdkEventKey*);
207         void comment_changed (void *src);
208         void comment_edited ();
209         bool ignore_comment_edit;
210
211         void set_mix_group (ARDOUR::RouteGroup *);
212         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
213         bool select_mix_group (GdkEventButton *);
214         void mix_group_changed (void *);
215
216
217         IOSelectorWindow *input_selector;
218         IOSelectorWindow *output_selector;
219
220         Gtk::Style *passthru_style;
221
222         void route_gui_changed (string, void*);
223         void show_route_color ();
224         void show_passthru_color ();
225
226         void route_active_changed ();
227
228         /* speed control (for tracks only) */
229
230         Gtk::Adjustment    speed_adjustment;
231         Gtkmm2ext::ClickBox speed_spinner;
232         Gtk::Label         speed_label;
233         Gtk::Frame         speed_frame;
234
235         void speed_adjustment_changed ();
236         void speed_changed ();
237         void name_changed (void *src);
238         void update_speed_display ();
239         void map_frozen ();
240         void hide_redirect_editor (boost::shared_ptr<ARDOUR::Redirect> redirect);
241
242         bool ignore_speed_adjustment;
243
244         void engine_running();
245         void engine_stopped();
246
247         static int scrollbar_height;
248 };
249
250 #endif /* __ardour_mixer_strip__ */