id_t becomes a fully-fledged object, UUID's used for IDs, generic MIDI now owns bindi...
[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/click_box.h>
41 #include <gtkmm2ext/slider_controller.h>
42
43 #include <pbd/stateful.h>
44
45 #include <ardour/types.h>
46 #include <ardour/ardour.h>
47 #include <ardour/io.h>
48 #include <ardour/insert.h>
49 #include <ardour/redirect.h>
50
51 #include <pbd/fastlog.h>
52
53 #include "route_ui.h"
54 #include "io_selector.h"
55 #include "gain_meter.h"
56 #include "panner_ui.h"
57 #include "enums.h"
58 #include "redirect_box.h"
59 #include "ardour_dialog.h"
60
61 class MotionController;
62
63
64 namespace Gtkmm2ext {
65         class SliderController;
66 }
67
68 namespace ARDOUR {
69         class Route;
70         class Send;
71         class Insert;
72         class Session;
73         class PortInsert;
74         class Connection;
75         class Plugin;
76 }
77 namespace Gtk {
78         class Window;
79         class Style;
80 }
81
82 class Mixer_UI;
83
84 class MixerStrip : public RouteUI, public Gtk::EventBox
85 {
86   public:
87         MixerStrip (Mixer_UI&, ARDOUR::Session&, ARDOUR::Route &, bool in_mixer = true);
88         ~MixerStrip ();
89
90         void set_width (Width);
91         Width get_width() const { return _width; }
92
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         Gtk::Table middle_button_table;
130         Gtk::Table bottom_button_table;
131
132         Gtk::Button                  gain_unit_button;
133         Gtk::Label                   gain_unit_label;
134         Gtk::Button                  meter_point_button;
135         Gtk::Label                   meter_point_label;
136
137         void meter_changed (void *);
138
139         Gtk::Button diskstream_button;
140         Gtk::Label  diskstream_label;
141
142         Gtk::Button input_button;
143         Gtk::Label  input_label;
144         Gtk::Button output_button;
145         Gtk::Label  output_label;
146
147         sigc::connection newplug_connection;
148     
149         gint    mark_update_safe ();
150         guint32 mode_switch_in_progress;
151         
152         Gtk::Button   name_button;
153
154         ArdourDialog*  comment_window;
155         Gtk::TextView* comment_area;
156         Gtk::Button    comment_button;
157
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 stream_input_chosen (ARDOUR::AudioDiskstream*);
175         void select_stream_input ();
176         void connection_input_chosen (ARDOUR::Connection *);
177         void connection_output_chosen (ARDOUR::Connection *);
178
179         void edit_input_configuration ();
180         void edit_output_configuration ();
181
182         void diskstream_changed (void *src);
183
184         Gtk::Menu *send_action_menu;
185         void build_send_action_menu ();
186
187         void new_send ();
188         void show_send_controls ();
189
190         void input_changed (ARDOUR::IOChange, void *);
191         void output_changed (ARDOUR::IOChange, void *);
192
193         sigc::connection panstate_connection;
194         sigc::connection panstyle_connection;
195         void connect_to_pan ();
196
197         void update_diskstream_display ();
198         void update_input_display ();
199         void update_output_display ();
200
201         void set_automated_controls_sensitivity (bool yn);
202
203         Gtk::Menu* route_ops_menu;
204         void build_route_ops_menu ();
205         gint name_button_button_press (GdkEventButton*);
206         void list_route_operations ();
207
208         gint comment_key_release_handler (GdkEventKey*);
209         void comment_changed (void *src);
210         void comment_edited ();
211         bool ignore_comment_edit;
212
213         void set_mix_group (ARDOUR::RouteGroup *);
214         void add_mix_group_to_menu (ARDOUR::RouteGroup *, Gtk::RadioMenuItem::Group*);
215         bool select_mix_group (GdkEventButton *);
216         void mix_group_changed (void *);
217
218
219         IOSelectorWindow *input_selector;
220         IOSelectorWindow *output_selector;
221
222         Gtk::Style *passthru_style;
223
224         void route_gui_changed (string, void*);
225         void show_route_color ();
226         void show_passthru_color ();
227
228         void route_active_changed ();
229
230         /* speed control (for tracks only) */
231
232         Gtk::Adjustment    speed_adjustment;
233         Gtkmm2ext::ClickBox speed_spinner;
234         Gtk::Label         speed_label;
235         Gtk::Frame         speed_frame;
236
237         void speed_adjustment_changed ();
238         void speed_changed ();
239         void name_changed (void *src);
240         void update_speed_display ();
241         void map_frozen ();
242         void hide_redirect_editor (ARDOUR::Redirect* redirect);
243
244         bool ignore_speed_adjustment;
245
246         string solo_button_name () const { return "MixerSoloButton"; }
247         string safe_solo_button_name () const { return "MixerSafeSoloButton"; }
248
249         void engine_running();
250         void engine_stopped();
251
252 };
253
254 #endif /* __ardour_mixer_strip__ */