correctly forward configure events to plugin windows, and cleanup FST code
[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         
105         Gtk::Table button_table;
106         Gtk::Table output_table;
107
108         Gtk::ScrolledWindow scroller;
109         Gtk::Adjustment hAdjustment;
110         Gtk::Adjustment vAdjustment;
111         Gtk::Viewport scroller_view;
112         Gtk::Menu* automation_menu;
113
114         gint prefheight;
115         bool is_scrollable;
116
117         struct MeterInfo {
118                 Gtkmm2ext::FastMeter *meter;
119
120                 float           min;
121                 float           max;
122                 bool            min_unbound;
123                 bool            max_unbound;
124                 bool packed;
125                 
126                 MeterInfo(int i) { 
127                         meter = 0;
128                         packed = false;
129                         min = 1.0e10;
130                         max = -1.0e10;
131                         min_unbound = false;
132                         max_unbound = false;
133                 }
134         };
135         
136         static const int32_t initial_button_rows = 6;
137         static const int32_t initial_button_cols = 1;
138         static const int32_t initial_output_rows = 1;
139         static const int32_t initial_output_cols = 4;
140
141         struct ControlUI : public Gtk::HBox {
142
143             uint32_t      port_index;
144             
145             /* input */
146             
147             Gtk::Adjustment*          adjustment;
148             Gtk::ComboBoxText*        combo;
149             std::map<string, float>*  combo_map;
150             Gtk::ToggleButton*        button;
151             Gtkmm2ext::BarController*  control;
152             Gtkmm2ext::ClickBox*       clickbox;
153             Gtk::Label         label;
154             bool               logarithmic;
155             bool               update_pending;
156             char               ignore_change;
157             Gtk::Button        automate_button;
158             
159             /* output */
160
161             Gtk::EventBox *display;
162             Gtk::Label*    display_label;
163
164                 Gtk::HBox  *    hbox;
165                 Gtk::VBox  *    vbox;
166             MeterInfo  *    meterinfo;
167
168             ControlUI ();
169             ~ControlUI(); 
170         };
171         
172         std::vector<ControlUI*>   output_controls;
173         sigc::connection screen_update_connection;
174         void output_update();
175         
176         void build (ARDOUR::AudioEngine &);
177         ControlUI* build_control_ui (ARDOUR::AudioEngine &, guint32 port_index, MIDI::Controllable *);
178         std::vector<string> setup_scale_values(guint32 port_index, ControlUI* cui);
179         void control_adjustment_changed (ControlUI* cui);
180         void parameter_changed (uint32_t, float, ControlUI* cui);
181         void update_control_display (ControlUI* cui);
182         void control_port_toggled (ControlUI* cui);
183         void control_combo_changed (ControlUI* cui);
184
185         void redirect_active_changed (ARDOUR::Redirect*, void*);
186
187         void astate_clicked (ControlUI*, uint32_t parameter);
188         void automation_state_changed (ControlUI*);
189         void set_automation_state (ARDOUR::AutoState state, ControlUI* cui);
190         void start_touch (ControlUI*);
191         void stop_touch (ControlUI*);
192
193         void print_parameter (char *buf, uint32_t len, uint32_t param);
194 };
195
196 class PluginUIWindow : public ArdourDialog
197 {
198   public:
199         PluginUIWindow (ARDOUR::AudioEngine &, ARDOUR::PluginInsert& insert, bool scrollable=false);
200         ~PluginUIWindow ();
201
202         PlugUIBase& pluginui() { return *_pluginui; }
203
204         void resize_preferred();
205         
206   private:
207         PlugUIBase* _pluginui;
208         void plugin_going_away (ARDOUR::Redirect*);
209 };
210
211
212 #ifdef VST_SUPPORT
213 class VSTPluginUI : public PlugUIBase, public Gtk::VBox
214 {
215   public:
216         VSTPluginUI (ARDOUR::PluginInsert&, ARDOUR::VSTPlugin&);
217         ~VSTPluginUI ();
218
219         gint get_preferred_height ();
220         bool start_updating(GdkEventAny*) {return false;}
221         bool stop_updating(GdkEventAny*) {return false;}
222
223         int package (Gtk::Window&);
224
225   private:
226         ARDOUR::VSTPlugin&  vst;
227         Gtk::Socket socket;
228         Gtk::HBox   preset_box;
229         Gtk::VBox   vpacker;
230         
231         bool configure_handler (GdkEventConfigure*, Gtk::Socket*);
232         void save_plugin_setting ();
233 };
234 #endif
235
236 #endif /* __ardour_plugin_ui_h__ */