use track colour to set comment button background rather than use active button state...
[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
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         Gtk::Table middle_button_table;
128         Gtk::Table bottom_button_table;
129
130         Gtk::Button                  gain_unit_button;
131         Gtk::Label                   gain_unit_label;
132         Gtk::Button                  meter_point_button;
133         Gtk::Label                   meter_point_label;
134
135         void meter_changed (void *);
136
137         Gtk::Button diskstream_button;
138         Gtk::Label  diskstream_label;
139
140         Gtk::Button input_button;
141         Gtk::Label  input_label;
142         Gtk::Button output_button;
143         Gtk::Label  output_label;
144
145         sigc::connection newplug_connection;
146     
147         gint    mark_update_safe ();
148         guint32 mode_switch_in_progress;
149         
150         Gtk::Button   name_button;
151
152         ArdourDialog*  comment_window;
153         Gtk::TextView* comment_area;
154         Gtk::Button    comment_button;
155
156         void comment_editor_done_editing();
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 connection_input_chosen (ARDOUR::Connection *);
174         void connection_output_chosen (ARDOUR::Connection *);
175
176         void edit_input_configuration ();
177         void edit_output_configuration ();
178
179         void diskstream_changed ();
180
181         Gtk::Menu *send_action_menu;
182         void build_send_action_menu ();
183
184         void new_send ();
185         void show_send_controls ();
186
187         void input_changed (ARDOUR::IOChange, void *);
188         void output_changed (ARDOUR::IOChange, void *);
189
190         sigc::connection panstate_connection;
191         sigc::connection panstyle_connection;
192         void connect_to_pan ();
193
194         void update_diskstream_display ();
195         void update_input_display ();
196         void update_output_display ();
197
198         void set_automated_controls_sensitivity (bool yn);
199
200         Gtk::Menu* route_ops_menu;
201         void build_route_ops_menu ();
202         gint name_button_button_press (GdkEventButton*);
203         void list_route_operations ();
204
205         gint comment_key_release_handler (GdkEventKey*);
206         void comment_changed (void *src);
207         void comment_edited ();
208         bool ignore_comment_edit;
209
210         void set_mix_group (ARDOUR::RouteGroup *);
211         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
212         bool select_mix_group (GdkEventButton *);
213         void mix_group_changed (void *);
214
215
216         IOSelectorWindow *input_selector;
217         IOSelectorWindow *output_selector;
218
219         Gtk::Style *passthru_style;
220
221         void route_gui_changed (string, void*);
222         void show_route_color ();
223         void show_passthru_color ();
224
225         void route_active_changed ();
226
227         /* speed control (for tracks only) */
228
229         Gtk::Adjustment    speed_adjustment;
230         Gtkmm2ext::ClickBox speed_spinner;
231         Gtk::Label         speed_label;
232         Gtk::Frame         speed_frame;
233
234         void speed_adjustment_changed ();
235         void speed_changed ();
236         void name_changed (void *src);
237         void update_speed_display ();
238         void map_frozen ();
239         void hide_redirect_editor (boost::shared_ptr<ARDOUR::Redirect> redirect);
240
241         bool ignore_speed_adjustment;
242
243         string solo_button_name () const { return "MixerSoloButton"; }
244         string safe_solo_button_name () const { return "MixerSafeSoloButton"; }
245
246         void engine_running();
247         void engine_stopped();
248
249 };
250
251 #endif /* __ardour_mixer_strip__ */