Plugin output meters are now vertical. It still needs a rotateable text
[ardour.git] / gtk2_ardour / plugin_ui.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_plugin_ui_h__
22 #define __ardour_plugin_ui_h__
23
24 #include <vector>
25 #include <map>
26 #include <list>
27
28 #include <sigc++/signal.h>
29
30 #include <gtkmm/button.h>
31 #include <gtkmm/box.h>
32 #include <gtkmm/table.h>
33 #include <gtkmm/eventbox.h>
34 #include <gtkmm/viewport.h>
35 #include <gtkmm/scrolledwindow.h>
36 #include <gtkmm/label.h>
37 #include <gtkmm/menu.h>
38 #include <gtkmm/adjustment.h>
39 #include <gtkmm/togglebutton.h>
40 #include <gtkmm/socket.h>
41 #include <gtkmm/comboboxtext.h>
42 #include <gtkmm/socket.h>
43
44 #include <ardour_dialog.h>
45 #include <ardour/types.h>
46
47 namespace ARDOUR {
48         class AudioEngine;
49         class PluginInsert;
50         class Plugin;
51         class VSTPlugin;
52         class Redirect;
53 }
54
55 namespace MIDI {
56         class Controllable;
57 }
58
59 namespace Gtkmm2ext {
60         class HSliderController;
61         class BarController;
62         class ClickBox;
63         class FastMeter;
64         class PixmapButton;
65 }
66
67 class PlugUIBase : public virtual sigc::trackable
68 {
69   public:
70         PlugUIBase (ARDOUR::PluginInsert&);
71         virtual ~PlugUIBase() {}
72
73         virtual gint get_preferred_height () = 0;
74         virtual bool start_updating(GdkEventAny*) = 0;
75         virtual bool stop_updating(GdkEventAny*) = 0;
76
77   protected:
78         ARDOUR::PluginInsert& insert;
79         ARDOUR::Plugin& plugin;
80         Gtk::ComboBoxText combo;
81         Gtk::Button save_button;
82         Gtk::ToggleButton bypass_button;
83
84         void setting_selected();
85         void save_plugin_setting (void);
86         void bypass_toggled();
87 };
88
89 class PluginUI : public PlugUIBase, public Gtk::VBox 
90 {
91   public:
92         PluginUI (ARDOUR::AudioEngine &, ARDOUR::PluginInsert& plug, bool scrollable=false);
93         ~PluginUI ();
94         
95         gint get_preferred_height () { return prefheight; }
96
97         bool start_updating(GdkEventAny*);
98         bool stop_updating(GdkEventAny*);
99
100   private:
101         ARDOUR::AudioEngine &engine;
102         Gtk::HBox settings_box;
103         Gtk::HBox hpacker;
104         Gtk::VBox info_vbox;
105         Gtk::EventBox name_ebox;
106         
107         Gtk::Table button_table;
108         Gtk::Table output_table;
109
110         Gtk::ScrolledWindow scroller;
111         Gtk::Adjustment hAdjustment;
112         Gtk::Adjustment vAdjustment;
113         Gtk::Viewport scroller_view;
114         Gtk::Label nameinfo_label;
115         Gtk::Label paraminfo_label;
116         Gtk::Label makerinfo_label;
117         Gtk::Menu* automation_menu;
118
119         bool setting_name_status;
120
121         gint prefheight;
122         bool is_scrollable;
123
124         struct MeterInfo {
125                 Gtkmm2ext::FastMeter *meter;
126
127                 float           min;
128                 float           max;
129                 bool            min_unbound;
130                 bool            max_unbound;
131                 bool packed;
132                 
133                 MeterInfo(int i) { 
134                         meter = 0;
135                         packed = false;
136                         min = 1.0e10;
137                         max = -1.0e10;
138                         min_unbound = false;
139                         max_unbound = false;
140                 }
141         };
142         
143         static const int32_t initial_button_rows = 6;
144         static const int32_t initial_button_cols = 1;
145         static const int32_t initial_output_rows = 1;
146         static const int32_t initial_output_cols = 4;
147
148         struct ControlUI : public Gtk::HBox {
149
150             uint32_t      port_index;
151             
152             /* input */
153             
154             Gtk::Adjustment*          adjustment;
155             Gtk::ComboBoxText*        combo;
156             std::map<string, float>*  combo_map;
157             Gtk::ToggleButton*        button;
158             Gtkmm2ext::BarController*  control;
159             Gtkmm2ext::ClickBox*       clickbox;
160             Gtk::Label         label;
161             bool               logarithmic;
162             bool               update_pending;
163             char               ignore_change;
164             Gtk::Button        automate_button;
165             
166             /* output */
167
168             Gtk::EventBox *display;
169             Gtk::Label*    display_label;
170
171                 Gtk::HBox  *    hbox;
172                 Gtk::VBox  *    vbox;
173             MeterInfo  *    meterinfo;
174
175             ControlUI ();
176             ~ControlUI(); 
177         };
178         
179         std::vector<ControlUI*>   output_controls;
180         sigc::connection screen_update_connection;
181         void output_update();
182         
183         void build (ARDOUR::AudioEngine &);
184         ControlUI* build_control_ui (ARDOUR::AudioEngine &, guint32 port_index, MIDI::Controllable *);
185         std::vector<string> setup_scale_values(guint32 port_index, ControlUI* cui);
186         void control_adjustment_changed (ControlUI* cui);
187         void parameter_changed (uint32_t, float, ControlUI* cui);
188         void update_control_display (ControlUI* cui);
189         void control_port_toggled (ControlUI* cui);
190         void control_combo_changed (ControlUI* cui);
191
192         void redirect_active_changed (ARDOUR::Redirect*, void*);
193
194         void astate_clicked (ControlUI*, uint32_t parameter);
195         void automation_state_changed (ControlUI*);
196         void set_automation_state (ARDOUR::AutoState state, ControlUI* cui);
197         void start_touch (ControlUI*);
198         void stop_touch (ControlUI*);
199
200         void print_parameter (char *buf, uint32_t len, uint32_t param);
201 };
202
203 class PluginUIWindow : public ArdourDialog
204 {
205   public:
206         PluginUIWindow (ARDOUR::AudioEngine &, ARDOUR::PluginInsert& insert, bool scrollable=false);
207         ~PluginUIWindow ();
208
209         PlugUIBase& pluginui() { return *_pluginui; }
210
211         void resize_preferred();
212         
213   private:
214         PlugUIBase* _pluginui;
215         void plugin_going_away (ARDOUR::Redirect*);
216 };
217
218
219 #ifdef VST_SUPPORT
220 class VSTPluginUI : public PlugUIBase, public Gtk::VBox
221 {
222   public:
223         VSTPluginUI (ARDOUR::PluginInsert&, ARDOUR::VSTPlugin&);
224         ~VSTPluginUI ();
225
226         gint get_preferred_height ();
227         bool start_updating(GdkEventAny*) {}
228         bool stop_updating(GdkEventAny*) {}
229
230         int package (Gtk::Window&);
231
232   private:
233         ARDOUR::VSTPlugin&  vst;
234         Gtk::Socket socket;
235         Gtk::HBox   preset_box;
236         Gtk::VBox   vpacker;
237         
238         gboolean configure_handler (GdkEventConfigure*, GtkSocket*);
239         void save_plugin_setting ();
240 };
241 #endif
242
243 #endif /* __ardour_plugin_ui_h__ */