Color schema for feedback-btn alternative active color
[ardour.git] / gtk2_ardour / plugin_ui.h
1 /*
2  * Copyright (C) 2005-2006 Taybin Rutkin <taybin@taybin.com>
3  * Copyright (C) 2005-2015 Paul Davis <paul@linuxaudiosystems.com>
4  * Copyright (C) 2006-2009 Sampo Savolainen <v2@iki.fi>
5  * Copyright (C) 2007-2015 David Robillard <d@drobilla.net>
6  * Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
7  * Copyright (C) 2013-2019 Robin Gareus <robin@gareus.org>
8  * Copyright (C) 2016-2017 Julien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifndef __ardour_plugin_ui_h__
26 #define __ardour_plugin_ui_h__
27
28 #ifdef WAF_BUILD
29 #include "gtk2ardour-config.h"
30 #endif
31
32 #include <vector>
33 #include <map>
34 #include <list>
35
36 #include <sigc++/signal.h>
37
38 #include <gtkmm/adjustment.h>
39 #include <gtkmm/box.h>
40 #include <gtkmm/button.h>
41 #include <gtkmm/eventbox.h>
42 #include <gtkmm/expander.h>
43 #include <gtkmm/filechooserbutton.h>
44 #include <gtkmm/image.h>
45 #include <gtkmm/label.h>
46 #include <gtkmm/menu.h>
47 #include <gtkmm/scrolledwindow.h>
48 #include <gtkmm/socket.h>
49 #include <gtkmm/table.h>
50 #include <gtkmm/togglebutton.h>
51 #include <gtkmm/viewport.h>
52
53 #include "ardour/types.h"
54 #include "ardour/plugin.h"
55 #include "ardour/variant.h"
56
57 #include "widgets/ardour_button.h"
58 #include "widgets/ardour_dropdown.h"
59 #include "widgets/ardour_spinner.h"
60
61 #include "ardour_window.h"
62 #include "automation_controller.h"
63 #include "gtk_pianokeyboard.h"
64
65 namespace ARDOUR {
66         class PluginInsert;
67         class Plugin;
68         class WindowsVSTPlugin;
69         class LXVSTPlugin;
70         class IOProcessor;
71         class AUPlugin;
72         class Processor;
73 }
74
75 namespace PBD {
76         class Controllable;
77 }
78
79 namespace ArdourWidgets {
80         class FastMeter;
81 }
82
83 class LatencyGUI;
84 class ArdourWindow;
85 class PluginEqGui;
86 class PluginLoadStatsGui;
87 class PluginPresetsUI;
88 class VSTPluginUI;
89
90 class PlugUIBase : public virtual sigc::trackable, public PBD::ScopedConnectionList
91 {
92 public:
93         PlugUIBase (boost::shared_ptr<ARDOUR::PluginInsert>);
94         virtual ~PlugUIBase();
95
96         virtual gint get_preferred_height () = 0;
97         virtual gint get_preferred_width () = 0;
98         virtual bool resizable () { return true; }
99         virtual bool start_updating(GdkEventAny*) = 0;
100         virtual bool stop_updating(GdkEventAny*) = 0;
101
102         virtual void activate () {}
103         virtual void deactivate () {}
104
105         void update_preset_list ();
106         void update_preset ();
107
108         void latency_button_clicked ();
109
110         virtual bool on_window_show(const std::string& /*title*/) { return true; }
111         virtual void on_window_hide() {}
112
113         virtual void forward_key_event (GdkEventKey*) {}
114         virtual void grab_focus () {}
115         virtual bool non_gtk_gui() const { return false; }
116
117         sigc::signal<void,bool> KeyboardFocused;
118
119 protected:
120         boost::shared_ptr<ARDOUR::PluginInsert> insert;
121         boost::shared_ptr<ARDOUR::Plugin> plugin;
122
123         /* UI elements that can subclasses can add to their widgets */
124
125         /** a ComboBoxText which lists presets and manages their selection */
126         ArdourWidgets::ArdourDropdown _preset_combo;
127         /** a label which has a * in if the current settings are different from the preset being shown */
128         Gtk::Label _preset_modified;
129         /** a button to add a preset */
130         ArdourWidgets::ArdourButton add_button;
131         /** a button to save the current settings as a new user preset */
132         ArdourWidgets::ArdourButton save_button;
133         /** a button to delete the current preset (if it is a user one) */
134         ArdourWidgets::ArdourButton delete_button;
135         /** a button to delete the reset the plugin params */
136         ArdourWidgets::ArdourButton reset_button;
137         /** a button to bypass the plugin */
138         ArdourWidgets::ArdourButton bypass_button;
139         /** and self-explaining button :) */
140         ArdourWidgets::ArdourButton pin_management_button;
141         /** a button to acquire keyboard focus */
142         Gtk::EventBox focus_button;
143         /** an expander containing the plugin description */
144         Gtk::Expander description_expander;
145         /** an expander containing the plugin analysis graph */
146         Gtk::Expander plugin_analysis_expander;
147         /** an expander containing the plugin cpu profile */
148         Gtk::Expander cpuload_expander;
149         /** a button which, when clicked, opens the latency GUI */
150         ArdourWidgets::ArdourButton latency_button;
151         /** a button which sets all controls' automation setting to Manual */
152         ArdourWidgets::ArdourButton automation_manual_all_button;
153         /** a button which sets all controls' automation setting to Play */
154         ArdourWidgets::ArdourButton automation_play_all_button;
155         /** a button which sets all controls' automation setting to Write */
156         ArdourWidgets::ArdourButton automation_write_all_button;
157         /** a button which sets all controls' automation setting to Touch */
158         ArdourWidgets::ArdourButton automation_touch_all_button;
159         /** a button which sets all controls' automation setting to Latch */
160         ArdourWidgets::ArdourButton automation_latch_all_button;
161
162         void set_latency_label ();
163         LatencyGUI* latency_gui;
164         ArdourWindow* latency_dialog;
165
166         PluginEqGui* eqgui;
167         PluginLoadStatsGui* stats_gui;
168         PluginPresetsUI* preset_gui;
169
170         Gtk::Image* focus_out_image;
171         Gtk::Image* focus_in_image;
172         int _no_load_preset;
173
174         virtual void preset_selected (ARDOUR::Plugin::PresetRecord preset);
175         void add_plugin_setting ();
176         void save_plugin_setting ();
177         void delete_plugin_setting ();
178         void reset_plugin_parameters ();
179         void manage_pins ();
180         bool focus_toggled(GdkEventButton*);
181         bool bypass_button_release(GdkEventButton*);
182         void toggle_description ();
183         void toggle_plugin_analysis ();
184         void toggle_cpuload_display ();
185         void processor_active_changed (boost::weak_ptr<ARDOUR::Processor> p);
186         void plugin_going_away ();
187         void automation_state_changed ();
188         void preset_added_or_removed ();
189         void update_preset_modified ();
190
191         PBD::ScopedConnection death_connection;
192         PBD::ScopedConnection active_connection;
193         PBD::ScopedConnection preset_added_connection;
194         PBD::ScopedConnection preset_removed_connection;
195         PBD::ScopedConnectionList control_connections;
196 };
197
198 class GenericPluginUI : public PlugUIBase, public Gtk::VBox
199 {
200 public:
201         GenericPluginUI (boost::shared_ptr<ARDOUR::PluginInsert> plug, bool scrollable=false);
202         ~GenericPluginUI ();
203
204         gint get_preferred_height () { return prefheight; }
205         gint get_preferred_width () { return -1; }
206
207         bool start_updating(GdkEventAny*);
208         bool stop_updating(GdkEventAny*);
209
210 private:
211         Gtk::VBox main_contents;
212         Gtk::HBox settings_box;
213         Gtk::HBox hpacker;
214         Gtk::Menu* automation_menu;
215
216         gint prefheight;
217         bool is_scrollable;
218
219         struct MeterInfo {
220                 ArdourWidgets::FastMeter* meter;
221                 bool packed;
222
223                 MeterInfo () {
224                         meter = 0;
225                         packed = false;
226                 }
227         };
228
229         /* FIXME: Unify with AutomationController */
230         struct ControlUI : public Gtk::HBox {
231
232                 const Evoral::Parameter parameter() const { return param; }
233
234                 Evoral::Parameter                            param;
235                 boost::shared_ptr<ARDOUR::AutomationControl> control;
236
237                 /* input */
238
239                 boost::shared_ptr<ARDOUR::ScalePoints>  scale_points;
240                 boost::shared_ptr<AutomationController> controller;
241
242                 ArdourWidgets::ArdourButton             automate_button;
243                 Gtk::Label                              label;
244                 ArdourWidgets::ArdourDropdown*          combo;
245                 Gtk::FileChooserButton*                 file_button;
246                 ArdourWidgets::ArdourSpinner*           spin_box;
247
248                 bool                                    button;
249                 bool                                    update_pending;
250                 bool                                    ignore_change;
251
252
253                 /* output */
254
255                 Gtk::EventBox* display;
256                 Gtk::Label*    display_label;
257
258                 Gtk::HBox*     hbox;
259                 Gtk::VBox*     vbox;
260                 MeterInfo*     meterinfo;
261
262                 ControlUI (const Evoral::Parameter& param);
263                 ~ControlUI ();
264
265                 /* layout */
266                 Gtk::Table* knobtable;
267                 int x0, x1, y0, y1;
268
269                 bool short_autostate; // modify with set_short_autostate below
270         };
271
272         void set_short_autostate(ControlUI* cui, bool value);
273
274         std::vector<ControlUI*>   input_controls; // workaround for preset load
275         std::vector<ControlUI*>   input_controls_with_automation;
276         std::vector<ControlUI*>   output_controls;
277
278         sigc::connection screen_update_connection;
279
280         void output_update();
281
282         void build ();
283         void automatic_layout (const std::vector<ControlUI *>& control_uis);
284         void custom_layout (const std::vector<ControlUI *>& control_uis);
285
286         ControlUI* build_control_ui (const Evoral::Parameter&                     param,
287                                      const ARDOUR::ParameterDescriptor&           desc,
288                                      boost::shared_ptr<ARDOUR::AutomationControl> mcontrol,
289                                      float                                        value,
290                                      bool                                         is_input,
291                                      bool                                         use_knob = false);
292
293         void ui_parameter_changed (ControlUI* cui);
294         void update_control_display (ControlUI* cui);
295         void update_input_displays (); // workaround for preset load
296         void control_combo_changed (ControlUI* cui, float value);
297
298         bool astate_button_event (GdkEventButton* ev, ControlUI*);
299         void automation_state_changed (ControlUI*);
300         void set_automation_state (ARDOUR::AutoState state, ControlUI* cui);
301         void set_all_automation (ARDOUR::AutoState state);
302
303         void knob_size_request(Gtk::Requisition* req, ControlUI* cui);
304
305         typedef std::map<uint32_t, Gtk::FileChooserButton*> FilePathControls;
306         FilePathControls _filepath_controls;
307         void set_path_property (const ARDOUR::ParameterDescriptor& desc,
308                                 Gtk::FileChooserButton*            widget);
309         void path_property_changed (uint32_t key, const ARDOUR::Variant& value);
310
311         void scroller_size_request (Gtk::Requisition*);
312         Gtk::ScrolledWindow scroller;
313
314         Gtk::Expander   _plugin_pianokeyboard_expander;
315         PianoKeyboard*  _piano;
316         Gtk::Widget*    _pianomm;
317         Gtk::VBox       _pianobox;
318         Gtk::SpinButton _piano_velocity;
319         Gtk::SpinButton _piano_channel;
320
321         static void _note_on_event_handler (GtkWidget*, int, gpointer);
322         static void _note_off_event_handler (GtkWidget*, int, gpointer);
323         void note_on_event_handler (int);
324         void note_off_event_handler (int);
325
326         void toggle_pianokeyboard ();
327         void build_midi_table ();
328         void midi_refill_patches ();
329         void midi_bank_patch_change (uint8_t chn);
330         void midi_bank_patch_select (uint8_t chn, uint32_t bankpgm);
331         std::vector<ArdourWidgets::ArdourDropdown*> midi_pgmsel;
332         PBD::ScopedConnectionList midi_connections;
333         std::map<uint32_t, std::string> pgm_names;
334 };
335
336 class PluginUIWindow : public ArdourWindow
337 {
338 public:
339         PluginUIWindow (boost::shared_ptr<ARDOUR::PluginInsert> insert,
340                         bool scrollable=false,
341                         bool editor=true);
342         ~PluginUIWindow ();
343
344         PlugUIBase& pluginui() { return *_pluginui; }
345
346         void resize_preferred();
347         void set_parent (Gtk::Window*);
348         void set_title(const std::string& title);
349
350
351         bool on_key_press_event (GdkEventKey*);
352         bool on_key_release_event (GdkEventKey*);
353         void on_show ();
354         void on_hide ();
355
356 private:
357         std::string _title;
358         PlugUIBase* _pluginui;
359         PBD::ScopedConnection death_connection;
360         Gtk::Window* parent;
361         Gtk::VBox vbox;
362         bool was_visible;
363         bool _keyboard_focused;
364 #ifdef AUDIOUNIT_SUPPORT
365         int pre_deactivate_x;
366         int pre_deactivate_y;
367 #endif
368
369         void keyboard_focused (bool yn);
370
371         void app_activated (bool);
372         void plugin_going_away ();
373
374         bool create_windows_vst_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
375         bool create_lxvst_editor(boost::shared_ptr<ARDOUR::PluginInsert>);
376         bool create_mac_vst_editor(boost::shared_ptr<ARDOUR::PluginInsert>);
377         bool create_audiounit_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
378         bool create_lv2_editor (boost::shared_ptr<ARDOUR::PluginInsert>);
379 };
380
381 #ifdef MACVST_SUPPORT
382 /* this function has to be in a .mm file
383  * because MacVSTPluginUI has Cocoa members
384  */
385 extern VSTPluginUI* create_mac_vst_gui (boost::shared_ptr<ARDOUR::PluginInsert>);
386 #endif
387
388 #ifdef AUDIOUNIT_SUPPORT
389 /* this function has to be in a .mm file */
390 extern PlugUIBase* create_au_gui (boost::shared_ptr<ARDOUR::PluginInsert>, Gtk::VBox**);
391 #endif
392
393 #endif /* __ardour_plugin_ui_h__ */