switch to using boost::signals2 instead of sigc++, at least for libardour. not finish...
[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
50 #include "automation_controller.h"
51
52 namespace ARDOUR {
53         class PluginInsert;
54         class Plugin;
55         class VSTPlugin;
56         class IOProcessor;
57         class AUPlugin;
58 }
59
60 namespace PBD {
61         class Controllable;
62 }
63
64 namespace Gtkmm2ext {
65         class HSliderController;
66         class BarController;
67         class ClickBox;
68         class FastMeter;
69         class PixmapButton;
70 }
71
72 class LatencyGUI;
73 class ArdourDialog;
74
75 class PlugUIBase : public virtual sigc::trackable
76 {
77   public:
78         PlugUIBase (boost::shared_ptr<ARDOUR::PluginInsert>);
79         virtual ~PlugUIBase();
80
81         virtual gint get_preferred_height () = 0;
82         virtual gint get_preferred_width () = 0;
83         virtual bool start_updating(GdkEventAny*) = 0;
84         virtual bool stop_updating(GdkEventAny*) = 0;
85
86         virtual void activate () {}
87         virtual void deactivate () {}
88
89         virtual void update_presets ();
90
91         void latency_button_clicked ();
92
93         virtual bool on_window_show(const Glib::ustring& /*title*/) { return true; }
94         virtual void on_window_hide() {}
95
96   protected:
97         boost::shared_ptr<ARDOUR::PluginInsert> insert;
98         boost::shared_ptr<ARDOUR::Plugin> plugin;
99         Gtk::ComboBoxText preset_combo;
100         Gtk::Button save_button;
101         Gtk::ToggleButton bypass_button;
102         Gtk::EventBox focus_button;
103
104         Gtk::Label latency_label;
105         Gtk::Button latency_button;
106         void set_latency_label ();
107
108         LatencyGUI* latency_gui;
109         ArdourDialog* latency_dialog;
110
111         Gtk::Expander plugin_analysis_expander;
112
113         Gtk::Image* focus_out_image;
114         Gtk::Image* focus_in_image;
115         bool no_load_preset;
116
117         void setting_selected();
118         void save_plugin_setting (void);
119         bool focus_toggled(GdkEventButton*);
120         void bypass_toggled();
121         void toggle_plugin_analysis ();
122         void processor_active_changed (boost::weak_ptr<ARDOUR::Processor> p);
123         void plugin_going_away ();
124         boost::signals2::scoped_connection death_connection;
125 };
126
127 class GenericPluginUI : public PlugUIBase, public Gtk::VBox
128 {
129   public:
130         GenericPluginUI (boost::shared_ptr<ARDOUR::PluginInsert> plug, bool scrollable=false);
131         ~GenericPluginUI ();
132
133         gint get_preferred_height () { return prefheight; }
134         gint get_preferred_width () { return -1; }
135
136         bool start_updating(GdkEventAny*);
137         bool stop_updating(GdkEventAny*);
138
139   private:
140         Gtk::VBox main_contents;
141
142         Gtk::HBox settings_box;
143         Gtk::HBox hpacker;
144
145         Gtk::Table button_table;
146         Gtk::Table output_table;
147
148         Gtk::ScrolledWindow scroller;
149         Gtk::Adjustment hAdjustment;
150         Gtk::Adjustment vAdjustment;
151         Gtk::Viewport scroller_view;
152         Gtk::Menu* automation_menu;
153
154         gint prefheight;
155         bool is_scrollable;
156
157         struct MeterInfo {
158                 Gtkmm2ext::FastMeter *meter;
159
160                 float           min;
161                 float           max;
162                 bool            min_unbound;
163                 bool            max_unbound;
164                 bool packed;
165
166                 MeterInfo (int /*i*/) {
167                         meter = 0;
168                         packed = false;
169                         min = 1.0e10;
170                         max = -1.0e10;
171                         min_unbound = false;
172                         max_unbound = false;
173                 }
174         };
175
176         static const int32_t initial_button_rows = 6;
177         static const int32_t initial_button_cols = 1;
178         static const int32_t initial_output_rows = 1;
179         static const int32_t initial_output_cols = 4;
180
181         /* FIXME: Unify with AutomationController */
182         struct ControlUI : public Gtk::HBox {
183
184                 boost::shared_ptr<ARDOUR::AutomationControl> control;
185
186                 Evoral::Parameter parameter() { return control->parameter(); }
187
188             /* input */
189
190             Gtk::ComboBoxText*                      combo;
191             std::map<std::string, float>*           combo_map;
192             Gtk::ToggleButton*                      button;
193             boost::shared_ptr<AutomationController> controller;
194             Gtkmm2ext::ClickBox*                    clickbox;
195             Gtk::Label                              label;
196             bool                                    logarithmic;
197             bool                                    update_pending;
198             char                                    ignore_change;
199             Gtk::Button                             automate_button;
200
201             /* output */
202
203             Gtk::EventBox *display;
204             Gtk::Label*    display_label;
205
206                 Gtk::HBox  *    hbox;
207                 Gtk::VBox  *    vbox;
208             MeterInfo  *    meterinfo;
209
210             ControlUI ();
211             ~ControlUI();
212         };
213
214         std::vector<ControlUI*>   output_controls;
215         sigc::connection screen_update_connection;
216         void output_update();
217
218         void build ();
219         ControlUI* build_control_ui (guint32 port_index, boost::shared_ptr<ARDOUR::AutomationControl>);
220         std::vector<std::string> setup_scale_values(guint32 port_index, ControlUI* cui);
221         void parameter_changed (ControlUI* cui);
222         void toggle_parameter_changed (ControlUI* cui);
223         void update_control_display (ControlUI* cui);
224         void control_port_toggled (ControlUI* cui);
225         void control_combo_changed (ControlUI* cui);
226
227         void processor_active_changed (boost::weak_ptr<ARDOUR::Processor>);
228
229         void astate_clicked (ControlUI*, uint32_t parameter);
230         void automation_state_changed (ControlUI*);
231         void set_automation_state (ARDOUR::AutoState state, ControlUI* cui);
232         void start_touch (ControlUI*);
233         void stop_touch (ControlUI*);
234
235         void print_parameter (char *buf, uint32_t len, uint32_t param);
236 };
237
238 class PluginUIWindow : public Gtk::Window
239 {
240   public:
241         PluginUIWindow (Gtk::Window*, boost::shared_ptr<ARDOUR::PluginInsert> insert, bool scrollable=false);
242         ~PluginUIWindow ();
243
244         PlugUIBase& pluginui() { return *_pluginui; }
245
246         void resize_preferred();
247         void set_parent (Gtk::Window*);
248         void set_title(const Glib::ustring& title);
249
250
251         bool on_enter_notify_event (GdkEventCrossing*);
252         bool on_leave_notify_event (GdkEventCrossing*);
253         bool on_focus_in_event (GdkEventFocus*);
254         bool on_focus_out_event (GdkEventFocus*);
255         bool on_key_press_event (GdkEventKey*);
256         bool on_key_release_event (GdkEventKey*);
257         void on_show ();
258         void on_hide ();
259         void on_map ();
260
261   private:
262         Glib::ustring _title;
263         PlugUIBase* _pluginui;
264         boost::signals2::scoped_connection death_connection;
265         Gtk::Window* parent;
266         Gtk::VBox vbox;
267         bool non_gtk_gui;
268         bool was_visible;
269
270         void app_activated (bool);
271         void plugin_going_away ();
272
273         bool create_vst_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
274         bool create_audiounit_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
275         bool create_lv2_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
276 };
277
278 #ifdef VST_SUPPORT
279 class VSTPluginUI : public PlugUIBase, public Gtk::VBox
280 {
281   public:
282         VSTPluginUI (boost::shared_ptr<ARDOUR::PluginInsert>, boost::shared_ptr<ARDOUR::VSTPlugin>);
283         ~VSTPluginUI ();
284
285         gint get_preferred_height ();
286         gint get_preferred_width ();
287         bool start_updating(GdkEventAny*) {return false;}
288         bool stop_updating(GdkEventAny*) {return false;}
289
290         int package (Gtk::Window&);
291
292   private:
293         boost::shared_ptr<ARDOUR::VSTPlugin>  vst;
294         Gtk::Socket socket;
295         Gtk::HBox   preset_box;
296         Gtk::VBox   vpacker;
297
298         bool configure_handler (GdkEventConfigure*, Gtk::Socket*);
299         void save_plugin_setting ();
300 };
301 #endif // VST_SUPPORT
302
303 #ifdef HAVE_AUDIOUNITS
304 /* this function has to be in a .mm file */
305 extern PlugUIBase* create_au_gui (boost::shared_ptr<ARDOUR::PluginInsert>, Gtk::VBox**);
306 #endif
307
308 #endif /* __ardour_plugin_ui_h__ */