Fix crash when showing UI for plugins with output control ports.
[ardour.git] / gtk2_ardour / plugin_ui.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
20 #ifndef __ardour_plugin_ui_h__
21 #define __ardour_plugin_ui_h__
22
23 #ifdef WAF_BUILD
24 #include "gtk2ardour-config.h"
25 #endif
26
27 #include <vector>
28 #include <map>
29 #include <list>
30
31 #include <sigc++/signal.h>
32
33 #include <gtkmm/button.h>
34 #include <gtkmm/box.h>
35 #include <gtkmm/table.h>
36 #include <gtkmm/eventbox.h>
37 #include <gtkmm/viewport.h>
38 #include <gtkmm/scrolledwindow.h>
39 #include <gtkmm/label.h>
40 #include <gtkmm/menu.h>
41 #include <gtkmm/image.h>
42 #include <gtkmm/adjustment.h>
43 #include <gtkmm/togglebutton.h>
44 #include <gtkmm/socket.h>
45 #include <gtkmm/comboboxtext.h>
46 #include <gtkmm/socket.h>
47
48 #include "ardour/types.h"
49 #include "ardour/plugin.h"
50 #include "ardour/variant.h"
51
52 #include "automation_controller.h"
53 #include "ardour_button.h"
54 #include "ardour_window.h"
55
56 namespace ARDOUR {
57         class PluginInsert;
58         class Plugin;
59         class WindowsVSTPlugin;
60         class LXVSTPlugin;
61         class IOProcessor;
62         class AUPlugin;
63         class Processor;
64 }
65
66 namespace PBD {
67         class Controllable;
68 }
69
70 namespace Gtkmm2ext {
71         class HSliderController;
72         class BarController;
73         class ClickBox;
74         class FastMeter;
75         class PixmapButton;
76 }
77
78 class LatencyGUI;
79 class ArdourWindow;
80 class PluginEqGui;
81
82 class PlugUIBase : public virtual sigc::trackable, public PBD::ScopedConnectionList
83 {
84   public:
85         PlugUIBase (boost::shared_ptr<ARDOUR::PluginInsert>);
86         virtual ~PlugUIBase();
87
88         virtual gint get_preferred_height () = 0;
89         virtual gint get_preferred_width () = 0;
90         virtual bool resizable () { return true; }
91         virtual bool start_updating(GdkEventAny*) = 0;
92         virtual bool stop_updating(GdkEventAny*) = 0;
93
94         virtual void activate () {}
95         virtual void deactivate () {}
96
97         void update_preset_list ();
98         void update_preset ();
99
100         void latency_button_clicked ();
101
102         virtual bool on_window_show(const std::string& /*title*/) { return true; }
103         virtual void on_window_hide() {}
104
105         virtual void forward_key_event (GdkEventKey*) {}
106         virtual bool non_gtk_gui() const { return false; }
107
108         sigc::signal<void,bool> KeyboardFocused;
109
110   protected:
111         boost::shared_ptr<ARDOUR::PluginInsert> insert;
112         boost::shared_ptr<ARDOUR::Plugin> plugin;
113
114         /* UI elements that can subclasses can add to their widgets */
115
116         /** a ComboBoxText which lists presets and manages their selection */
117         Gtk::ComboBoxText _preset_combo;
118         /** a label which has a * in if the current settings are different from the preset being shown */
119         Gtk::Label _preset_modified;
120         /** a button to add a preset */
121         Gtk::Button add_button;
122         /** a button to save the current settings as a new user preset */
123         Gtk::Button save_button;
124         /** a button to delete the current preset (if it is a user one) */
125         Gtk::Button delete_button;
126         /** a button to bypass the plugin */
127         ArdourButton bypass_button;
128         /** a button to acquire keyboard focus */
129         Gtk::EventBox focus_button;
130         /** an expander containing the plugin description */
131         Gtk::Expander description_expander;
132         /** an expander containing the plugin analysis graph */
133         Gtk::Expander plugin_analysis_expander;
134         /** a label indicating the plugin latency */
135         Gtk::Label latency_label;
136         /** a button which, when clicked, opens the latency GUI */
137         Gtk::Button latency_button;
138         
139         void set_latency_label ();
140
141         LatencyGUI* latency_gui;
142         ArdourWindow* latency_dialog;
143
144         PluginEqGui* eqgui;
145         Gtk::Requisition pre_eq_size;
146
147         Gtk::Image* focus_out_image;
148         Gtk::Image* focus_in_image;
149         int _no_load_preset;
150
151         virtual void preset_selected ();
152         void add_plugin_setting ();
153         void save_plugin_setting ();
154         void delete_plugin_setting ();
155         bool focus_toggled(GdkEventButton*);
156         bool bypass_button_release(GdkEventButton*);
157         void toggle_description ();
158         void toggle_plugin_analysis ();
159         void processor_active_changed (boost::weak_ptr<ARDOUR::Processor> p);
160         void plugin_going_away ();
161         virtual void parameter_changed (uint32_t, float);
162         void preset_added_or_removed ();
163         void update_preset_modified ();
164
165         PBD::ScopedConnection death_connection;
166         PBD::ScopedConnection active_connection;
167         PBD::ScopedConnection preset_added_connection;
168         PBD::ScopedConnection preset_removed_connection;
169         PBD::ScopedConnectionList control_connections;
170 };
171
172 class GenericPluginUI : public PlugUIBase, public Gtk::VBox
173 {
174   public:
175         GenericPluginUI (boost::shared_ptr<ARDOUR::PluginInsert> plug, bool scrollable=false);
176         ~GenericPluginUI ();
177
178         gint get_preferred_height () { return prefheight; }
179         gint get_preferred_width () { return -1; }
180
181         bool start_updating(GdkEventAny*);
182         bool stop_updating(GdkEventAny*);
183
184   private:
185         Gtk::VBox main_contents;
186
187         Gtk::HBox settings_box;
188         Gtk::HBox hpacker;
189
190         Gtk::Table button_table;
191         Gtk::Table output_table;
192
193         Gtk::ScrolledWindow scroller;
194         Gtk::Adjustment hAdjustment;
195         Gtk::Adjustment vAdjustment;
196         Gtk::Viewport scroller_view;
197         Gtk::Menu* automation_menu;
198
199         gint prefheight;
200         bool is_scrollable;
201
202         struct MeterInfo {
203                 Gtkmm2ext::FastMeter *meter;
204
205                 float           min;
206                 float           max;
207                 bool            min_unbound;
208                 bool            max_unbound;
209                 bool packed;
210
211                 MeterInfo () {
212                         meter = 0;
213                         packed = false;
214                         min = 1.0e10;
215                         max = -1.0e10;
216                         min_unbound = false;
217                         max_unbound = false;
218                 }
219         };
220
221         static const int32_t initial_button_rows = 12;
222         static const int32_t initial_button_cols = 1;
223         static const int32_t initial_output_rows = 1;
224         static const int32_t initial_output_cols = 4;
225
226         /* FIXME: Unify with AutomationController */
227         struct ControlUI : public Gtk::HBox {
228
229                 const Evoral::Parameter parameter() const { return param; }
230
231                 Evoral::Parameter                            param;
232                 boost::shared_ptr<ARDOUR::AutomationControl> control;
233
234                 /* input */
235
236                 Gtk::ComboBoxText*                      combo;
237                 boost::shared_ptr<ARDOUR::ScalePoints>  scale_points;
238                 Gtk::ToggleButton*                      button;
239                 boost::shared_ptr<AutomationController> controller;
240                 Gtkmm2ext::ClickBox*                    clickbox;
241                 Gtk::Label                              label;
242                 bool                                    update_pending;
243                 char                                    ignore_change;
244                 Gtk::Button                             automate_button;
245                 Gtk::FileChooserButton*                 file_button;
246
247                 /* output */
248
249                 Gtk::EventBox* display;
250                 Gtk::Label*    display_label;
251
252                 Gtk::HBox*     hbox;
253                 Gtk::VBox*     vbox;
254                 MeterInfo*     meterinfo;
255
256                 ControlUI (const Evoral::Parameter& param);
257                 ~ControlUI ();
258         };
259
260         std::vector<ControlUI*>   input_controls;
261         std::vector<ControlUI*>   output_controls;
262         sigc::connection screen_update_connection;
263         void output_update();
264
265         void build ();
266         ControlUI* build_control_ui (const Evoral::Parameter&                     param,
267                                      const ARDOUR::ParameterDescriptor&           desc,
268                                      boost::shared_ptr<ARDOUR::AutomationControl> mcontrol,
269                                      float                                        value,
270                                      bool                                         is_input);
271
272         void ui_parameter_changed (ControlUI* cui);
273         void toggle_parameter_changed (ControlUI* cui);
274         void update_control_display (ControlUI* cui);
275         void control_port_toggled (ControlUI* cui);
276         void control_combo_changed (ControlUI* cui);
277
278         void astate_clicked (ControlUI*);
279         void automation_state_changed (ControlUI*);
280         void set_automation_state (ARDOUR::AutoState state, ControlUI* cui);
281         void start_touch (ControlUI*);
282         void stop_touch (ControlUI*);
283
284         /* XXX: remove */
285         void print_parameter (char *buf, uint32_t len, uint32_t param);
286         bool integer_printer (char* buf, Gtk::Adjustment &, ControlUI *);
287         bool midinote_printer(char* buf, Gtk::Adjustment &, ControlUI *);
288
289         void set_property (const ARDOUR::ParameterDescriptor& desc,
290                            Gtk::FileChooserButton*            widget);
291         void property_changed (uint32_t key, const ARDOUR::Variant& value);
292
293         typedef std::map<uint32_t, Gtk::FileChooserButton*> PropertyControls;
294         PropertyControls _property_controls;
295 };
296
297 class PluginUIWindow : public ArdourWindow
298 {
299   public:
300         PluginUIWindow (boost::shared_ptr<ARDOUR::PluginInsert> insert,
301                         bool scrollable=false,
302                         bool editor=true);
303         ~PluginUIWindow ();
304
305         PlugUIBase& pluginui() { return *_pluginui; }
306
307         void resize_preferred();
308         void set_parent (Gtk::Window*);
309         void set_title(const std::string& title);
310
311
312         bool on_key_press_event (GdkEventKey*);
313         bool on_key_release_event (GdkEventKey*);
314         void on_show ();
315         void on_hide ();
316
317   private:
318         std::string _title;
319         PlugUIBase* _pluginui;
320         PBD::ScopedConnection death_connection;
321         Gtk::Window* parent;
322         Gtk::VBox vbox;
323         bool was_visible;
324         bool _keyboard_focused;
325 #ifdef AUDIOUNIT_SUPPORT
326         int pre_deactivate_x;
327         int pre_deactivate_y;
328 #endif
329
330         void keyboard_focused (bool yn);
331
332         void app_activated (bool);
333         void plugin_going_away ();
334
335         bool create_windows_vst_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
336         bool create_lxvst_editor(boost::shared_ptr<ARDOUR::PluginInsert>);
337         bool create_audiounit_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
338         bool create_lv2_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
339 };
340
341 #ifdef AUDIOUNIT_SUPPORT
342 /* this function has to be in a .mm file */
343 extern PlugUIBase* create_au_gui (boost::shared_ptr<ARDOUR::PluginInsert>, Gtk::VBox**);
344 #endif
345
346 #endif /* __ardour_plugin_ui_h__ */