Merging from trunk
[ardour.git] / gtk2_ardour / mixer_strip.h
1 /*
2     Copyright (C) 2000 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     $Id$
19 */
20
21 #ifndef __ardour_mixer_strip__
22 #define __ardour_mixer_strip__
23
24 #include <vector>
25
26 #include <cmath>
27
28 #include <gtkmm/eventbox.h>
29 #include <gtkmm/button.h>
30 #include <gtkmm/box.h>
31 #include <gtkmm/frame.h>
32 #include <gtkmm/button.h>
33 #include <gtkmm/label.h>
34 #include <gtkmm/togglebutton.h>
35 #include <gtkmm/menu.h>
36 #include <gtkmm/textview.h>
37 #include <gtkmm/adjustment.h>
38
39 #include <gtkmm2ext/auto_spin.h>
40 #include <gtkmm2ext/slider_controller.h>
41 #include <gtkmm2ext/click_box.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/stateful.h>
48 #include <ardour/redirect.h>
49
50 #include <pbd/fastlog.h>
51
52 #include "route_ui.h"
53 #include "io_selector.h"
54 #include "gain_meter.h"
55 #include "panner_ui.h"
56 #include "enums.h"
57 #include "redirect_box.h"
58 #include "ardour_dialog.h"
59
60 class MotionController;
61
62
63 namespace Gtkmm2ext {
64         class SliderController;
65 }
66
67 namespace ARDOUR {
68         class Route;
69         class Send;
70         class Insert;
71         class Session;
72         class PortInsert;
73         class Connection;
74         class Plugin;
75 }
76 namespace Gtk {
77         class Window;
78         class Style;
79 }
80
81 class Mixer_UI;
82
83 class MixerStrip : public RouteUI, public Gtk::EventBox
84 {
85   public:
86         MixerStrip (Mixer_UI&, ARDOUR::Session&, ARDOUR::Route &, bool in_mixer = true);
87         ~MixerStrip ();
88
89         void set_width (Width);
90         Width get_width() const { return _width; }
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
112         Gtk::Button         hide_button;
113         Gtk::Button         width_button;
114         Gtk::HBox           width_hide_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 setup_comment_editor ();
158         void comment_button_clicked ();
159
160         Gtk::Button   group_button;
161         Gtk::Label    group_label;
162         Gtk::Menu    *group_menu;
163
164         gint input_press (GdkEventButton *);
165         gint output_press (GdkEventButton *);
166
167         Gtk::Menu  input_menu;
168         void add_connection_to_input_menu (ARDOUR::Connection *);
169
170         Gtk::Menu output_menu;
171         void add_connection_to_output_menu (ARDOUR::Connection *);
172         
173         void stream_input_chosen (ARDOUR::AudioDiskstream*);
174         void select_stream_input ();
175         void connection_input_chosen (ARDOUR::Connection *);
176         void connection_output_chosen (ARDOUR::Connection *);
177
178         void edit_input_configuration ();
179         void edit_output_configuration ();
180
181         void diskstream_changed (void *src);
182
183         Gtk::Menu *send_action_menu;
184         void build_send_action_menu ();
185
186         void new_send ();
187         void show_send_controls ();
188
189         void input_changed (ARDOUR::IOChange, void *);
190         void output_changed (ARDOUR::IOChange, void *);
191
192         sigc::connection panstate_connection;
193         sigc::connection panstyle_connection;
194         void connect_to_pan ();
195
196         void update_diskstream_display ();
197         void update_input_display ();
198         void update_output_display ();
199
200         void set_automated_controls_sensitivity (bool yn);
201
202         Gtk::Menu* route_ops_menu;
203         void build_route_ops_menu ();
204         gint name_button_button_press (GdkEventButton*);
205         void list_route_operations ();
206
207         gint comment_key_release_handler (GdkEventKey*);
208         void comment_changed (void *src);
209         void comment_edited ();
210         bool ignore_comment_edit;
211
212         void set_mix_group (ARDOUR::RouteGroup *);
213         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
214         bool select_mix_group (GdkEventButton *);
215         void mix_group_changed (void *);
216
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 (void *src);
239         void update_speed_display ();
240         void map_frozen ();
241         void hide_redirect_editor (ARDOUR::Redirect* redirect);
242
243         bool ignore_speed_adjustment;
244
245         string solo_button_name () const { return "MixerSoloButton"; }
246         string safe_solo_button_name () const { return "MixerSafeSoloButton"; }
247
248         void engine_running();
249         void engine_stopped();
250
251 };
252
253 #endif /* __ardour_mixer_strip__ */