fix for erroneous use of a menu group; remove lots of cerr cruft; no playlist ops...
[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   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
115         void hide_clicked();
116         void width_clicked ();
117
118         Gtk::Frame          global_frame;
119         Gtk::VBox           global_vpacker;
120
121         RedirectBox pre_redirect_box;
122         RedirectBox post_redirect_box;
123         GainMeter   gpm;
124         PannerUI    panners;
125         
126         Gtk::Table button_table;
127
128         Gtk::Button diskstream_button;
129         Gtk::Label  diskstream_label;
130
131         Gtk::Button input_button;
132         Gtk::Label  input_label;
133         Gtk::Button output_button;
134         Gtk::Label  output_label;
135
136         Gtk::Button gain_automation_style_button;
137         Gtk::ToggleButton gain_automation_state_button;
138
139         Gtk::Button pan_automation_style_button;
140         Gtk::ToggleButton pan_automation_state_button;
141
142         Gtk::Menu gain_astate_menu;
143         Gtk::Menu gain_astyle_menu;
144         Gtk::Menu pan_astate_menu;
145         Gtk::Menu pan_astyle_menu;
146
147         Gtk::ToggleButton polarity_button;
148
149         sigc::connection newplug_connection;
150     
151         gint    mark_update_safe ();
152         guint32 mode_switch_in_progress;
153         
154         Gtk::Button   name_button;
155
156         ArdourDialog*  comment_window;
157         Gtk::TextView* comment_area;
158         Gtk::Button    comment_button;
159
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_connection_to_input_menu (ARDOUR::Connection *);
172
173         Gtk::Menu output_menu;
174         void add_connection_to_output_menu (ARDOUR::Connection *);
175         
176         void stream_input_chosen (ARDOUR::DiskStream*);
177         void select_stream_input ();
178         void connection_input_chosen (ARDOUR::Connection *);
179         void connection_output_chosen (ARDOUR::Connection *);
180
181         void edit_input_configuration ();
182         void edit_output_configuration ();
183
184         void diskstream_changed (void *src);
185
186         Gtk::Menu *send_action_menu;
187         void build_send_action_menu ();
188
189         void new_send ();
190         void show_send_controls ();
191
192
193         gint gain_automation_style_button_event (GdkEventButton *);
194         gint gain_automation_state_button_event (GdkEventButton *);
195         gint pan_automation_style_button_event (GdkEventButton *);
196         gint pan_automation_state_button_event (GdkEventButton *);
197
198         void input_changed (ARDOUR::IOChange, void *);
199         void output_changed (ARDOUR::IOChange, void *);
200         void gain_automation_state_changed();
201         void pan_automation_state_changed();
202         void gain_automation_style_changed();
203         void pan_automation_style_changed();
204
205         sigc::connection panstate_connection;
206         sigc::connection panstyle_connection;
207         void connect_to_pan ();
208
209         std::string astate_string (ARDOUR::AutoState);
210         std::string short_astate_string (ARDOUR::AutoState);
211         std::string _astate_string (ARDOUR::AutoState, bool);
212
213         std::string astyle_string (ARDOUR::AutoStyle);
214         std::string short_astyle_string (ARDOUR::AutoStyle);
215         std::string _astyle_string (ARDOUR::AutoStyle, bool);
216
217         void update_diskstream_display ();
218         void update_input_display ();
219         void update_output_display ();
220
221         void set_automated_controls_sensitivity (bool yn);
222
223         Gtk::Menu* route_ops_menu;
224         void build_route_ops_menu ();
225         gint name_button_button_release (GdkEventButton*);
226         void list_route_operations ();
227
228         gint comment_key_release_handler (GdkEventKey*);
229         void comment_changed (void *src);
230         void comment_edited ();
231         bool ignore_comment_edit;
232
233         void set_mix_group (ARDOUR::RouteGroup *);
234         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
235         gint select_mix_group (GdkEventButton *);
236         void mix_group_changed (void *);
237
238         void polarity_toggled ();
239
240         IOSelectorWindow *input_selector;
241         IOSelectorWindow *output_selector;
242
243         Gtk::Style *passthru_style;
244
245         void route_gui_changed (string, void*);
246         void show_route_color ();
247         void show_passthru_color ();
248
249         void route_active_changed ();
250
251         /* speed control (for tracks only) */
252
253         Gtk::Adjustment    speed_adjustment;
254         Gtkmm2ext::ClickBox speed_spinner;
255         Gtk::Label         speed_label;
256         Gtk::Frame         speed_frame;
257
258         void speed_adjustment_changed ();
259         void speed_changed ();
260         void name_changed (void *src);
261         void update_speed_display ();
262         void map_frozen ();
263         void hide_redirect_editor (ARDOUR::Redirect* redirect);
264
265         sigc::connection gain_watching;
266         sigc::connection pan_watching;
267         bool ignore_speed_adjustment;
268
269         string solo_button_name () const { return "MixerSoloButton"; }
270         string safe_solo_button_name () const { return "MixerSafeSoloButton"; }
271
272 };
273
274 #endif /* __ardour_mixer_strip__ */