new mix group interface, not yet finished and still to propagate to edit_group
[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 update ();
93         void fast_update ();
94         void set_embedded (bool);
95
96         ARDOUR::RouteGroup* mix_group() const;
97
98   protected:
99         friend class Mixer_UI;
100         void set_packed (bool yn);
101         bool packed () { return _packed; }
102
103         void set_selected(bool yn);
104         void set_stuff_from_route ();
105
106   private:
107         Mixer_UI& _mixer;
108
109         bool  _embedded;
110         bool  _packed;
111         Width _width;
112
113         Gtk::Button         hide_button;
114         Gtk::Button         width_button;
115         Gtk::HBox           width_hide_box;
116
117         void hide_clicked();
118         void width_clicked ();
119
120         Gtk::Frame          global_frame;
121         Gtk::VBox           global_vpacker;
122
123         RedirectBox pre_redirect_box;
124         RedirectBox post_redirect_box;
125         GainMeter   gpm;
126         PannerUI    panners;
127         
128         Gtk::Table button_table;
129
130         Gtk::Button diskstream_button;
131         Gtk::Label  diskstream_label;
132
133         Gtk::Button input_button;
134         Gtk::Label  input_label;
135         Gtk::Button output_button;
136         Gtk::Label  output_label;
137
138         Gtk::Button gain_automation_style_button;
139         Gtk::ToggleButton gain_automation_state_button;
140
141         Gtk::Button pan_automation_style_button;
142         Gtk::ToggleButton pan_automation_state_button;
143
144         Gtk::Menu gain_astate_menu;
145         Gtk::Menu gain_astyle_menu;
146         Gtk::Menu pan_astate_menu;
147         Gtk::Menu pan_astyle_menu;
148
149         Gtk::ToggleButton polarity_button;
150
151         sigc::connection newplug_connection;
152     
153         gint    mark_update_safe ();
154         guint32 mode_switch_in_progress;
155         
156         Gtk::Button   name_button;
157
158         ArdourDialog*  comment_window;
159         Gtk::TextView* comment_area;
160         Gtk::Button    comment_button;
161
162         void setup_comment_editor ();
163         void comment_button_clicked ();
164
165         Gtk::Button   group_button;
166         Gtk::Label    group_label;
167         Gtk::Menu    *group_menu;
168
169         gint input_press (GdkEventButton *);
170         gint output_press (GdkEventButton *);
171
172         Gtk::Menu  input_menu;
173         void add_connection_to_input_menu (ARDOUR::Connection *);
174
175         Gtk::Menu output_menu;
176         void add_connection_to_output_menu (ARDOUR::Connection *);
177         
178         void stream_input_chosen (ARDOUR::DiskStream*);
179         void select_stream_input ();
180         void connection_input_chosen (ARDOUR::Connection *);
181         void connection_output_chosen (ARDOUR::Connection *);
182
183         void edit_input_configuration ();
184         void edit_output_configuration ();
185
186         void diskstream_changed (void *src);
187
188         Gtk::Menu *send_action_menu;
189         void build_send_action_menu ();
190
191         void new_send ();
192         void show_send_controls ();
193
194
195         gint gain_automation_style_button_event (GdkEventButton *);
196         gint gain_automation_state_button_event (GdkEventButton *);
197         gint pan_automation_style_button_event (GdkEventButton *);
198         gint pan_automation_state_button_event (GdkEventButton *);
199
200         void input_changed (ARDOUR::IOChange, void *);
201         void output_changed (ARDOUR::IOChange, void *);
202         void gain_automation_state_changed();
203         void pan_automation_state_changed();
204         void gain_automation_style_changed();
205         void pan_automation_style_changed();
206
207         sigc::connection panstate_connection;
208         sigc::connection panstyle_connection;
209         void connect_to_pan ();
210
211         std::string astate_string (ARDOUR::AutoState);
212         std::string short_astate_string (ARDOUR::AutoState);
213         std::string _astate_string (ARDOUR::AutoState, bool);
214
215         std::string astyle_string (ARDOUR::AutoStyle);
216         std::string short_astyle_string (ARDOUR::AutoStyle);
217         std::string _astyle_string (ARDOUR::AutoStyle, bool);
218
219         void update_diskstream_display ();
220         void update_input_display ();
221         void update_output_display ();
222
223         void set_automated_controls_sensitivity (bool yn);
224
225         Gtk::Menu* route_ops_menu;
226         void build_route_ops_menu ();
227         gint name_button_button_release (GdkEventButton*);
228         void list_route_operations ();
229
230         gint comment_key_release_handler (GdkEventKey*);
231         void comment_changed (void *src);
232         void comment_edited ();
233         bool ignore_comment_edit;
234
235         void set_mix_group (ARDOUR::RouteGroup *);
236         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
237         gint select_mix_group (GdkEventButton *);
238         void mix_group_changed (void *);
239
240         void polarity_toggled ();
241
242         IOSelectorWindow *input_selector;
243         IOSelectorWindow *output_selector;
244
245         Gtk::Style *passthru_style;
246
247         void route_gui_changed (string, void*);
248         void show_route_color ();
249         void show_passthru_color ();
250
251         void route_active_changed ();
252
253         /* speed control (for tracks only) */
254
255         Gtk::Adjustment    speed_adjustment;
256         Gtkmm2ext::ClickBox speed_spinner;
257         Gtk::Label         speed_label;
258         Gtk::Frame         speed_frame;
259
260         void speed_adjustment_changed ();
261         void speed_changed ();
262         void name_changed (void *src);
263         void update_speed_display ();
264         void map_frozen ();
265         void hide_redirect_editor (ARDOUR::Redirect* redirect);
266
267         sigc::connection gain_watching;
268         sigc::connection pan_watching;
269         bool ignore_speed_adjustment;
270
271         string solo_button_name () const { return "MixerSoloButton"; }
272         string safe_solo_button_name () const { return "MixerSafeSoloButton"; }
273
274 };
275
276 #endif /* __ardour_mixer_strip__ */