527c54876e2628abb4d77c737536ee2fc3f432be
[ardour.git] / gtk2_ardour / plugin_ui.cc
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 */
19
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <climits>
25 #include <cerrno>
26 #include <cmath>
27 #include <string>
28
29 #include "pbd/stl_delete.h"
30 #include "pbd/xml++.h"
31 #include "pbd/failed_constructor.h"
32
33 #include <gtkmm/widget.h>
34 #include <gtkmm/box.h>
35 #include <gtkmm2ext/click_box.h>
36 #include <gtkmm2ext/fastmeter.h>
37 #include <gtkmm2ext/barcontroller.h>
38 #include <gtkmm2ext/utils.h>
39 #include <gtkmm2ext/doi.h>
40 #include <gtkmm2ext/slider_controller.h>
41
42 #include "midi++/manager.h"
43
44 #include "ardour/plugin.h"
45 #include "ardour/plugin_insert.h"
46 #include "ardour/ladspa_plugin.h"
47 #ifdef VST_SUPPORT
48 #include "ardour/vst_plugin.h"
49 #endif
50 #ifdef HAVE_SLV2
51 #include "ardour/lv2_plugin.h"
52 #include "lv2_plugin_ui.h"
53 #endif
54
55 #include <lrdf.h>
56
57 #include "ardour_dialog.h"
58 #include "ardour_ui.h"
59 #include "prompter.h"
60 #include "plugin_ui.h"
61 #include "utils.h"
62 #include "gui_thread.h"
63 #include "public_editor.h"
64 #include "keyboard.h"
65 #include "latency_gui.h"
66 #include "plugin_eq_gui.h"
67
68 #include "i18n.h"
69
70 using namespace std;
71 using namespace ARDOUR;
72 using namespace PBD;
73 using namespace Gtkmm2ext;
74 using namespace Gtk;
75 using namespace sigc;
76
77 PluginUIWindow::PluginUIWindow (Gtk::Window* win, boost::shared_ptr<PluginInsert> insert, bool scrollable)
78         : parent (win)
79 {
80         bool have_gui = false;
81         non_gtk_gui = false;
82         was_visible = false;
83
84         Label* label = manage (new Label());
85         label->set_markup ("<b>THIS IS THE PLUGIN UI</b>");
86
87         if (insert->plugin()->has_editor()) {
88                 switch (insert->type()) {
89                 case ARDOUR::VST:
90                         have_gui = create_vst_editor (insert);
91                         break;
92
93                 case ARDOUR::AudioUnit:
94                         have_gui = create_audiounit_editor (insert);
95                         break;
96                         
97                 case ARDOUR::LADSPA:
98                         error << _("Eh? LADSPA plugins don't have editors!") << endmsg;
99                         break;
100
101                 case ARDOUR::LV2:
102                         have_gui = create_lv2_editor (insert);
103                         break;
104
105                 default:
106 #ifndef VST_SUPPORT
107                         error << _("unknown type of editor-supplying plugin (note: no VST support in this version of ardour)")
108                               << endmsg;
109 #else
110                         error << _("unknown type of editor-supplying plugin")
111                               << endmsg;
112 #endif
113                         throw failed_constructor ();
114                 }
115
116         } 
117
118         if (!have_gui) {
119
120                 GenericPluginUI*  pu  = new GenericPluginUI (insert, scrollable);
121                 
122                 _pluginui = pu;
123                 add( *pu );
124
125                 /*
126                 Gtk::HBox *hbox = new Gtk::HBox();
127                 hbox->pack_start( *pu);
128                 // TODO: this should be nicer
129                 hbox->pack_start( eqgui_bin );
130                 
131                 add (*manage(hbox));
132                 */
133
134                 set_wmclass (X_("ardour_plugin_editor"), "Ardour");
135
136                 signal_map_event().connect (mem_fun (*pu, &GenericPluginUI::start_updating));
137                 signal_unmap_event().connect (mem_fun (*pu, &GenericPluginUI::stop_updating));
138         }
139
140         // set_position (Gtk::WIN_POS_MOUSE);
141         set_name ("PluginEditor");
142         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
143
144         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window*> (this)), false);
145         death_connection = insert->GoingAway.connect (mem_fun(*this, &PluginUIWindow::plugin_going_away));
146         
147         gint h = _pluginui->get_preferred_height ();
148         gint w = _pluginui->get_preferred_width ();
149
150         if (scrollable) {
151                 if (h > 600) h = 600;
152                 if (w > 600) w = 600;
153
154                 if (w < 0) {
155                         w = 450;
156                 }
157         }
158
159         set_default_size (w, h); 
160 }
161
162 PluginUIWindow::~PluginUIWindow ()
163 {
164         delete _pluginui;
165 }
166
167 void
168 PluginUIWindow::set_parent (Gtk::Window* win)
169 {
170         parent = win;
171 }
172
173 void
174 PluginUIWindow::on_map ()
175 {
176         Window::on_map ();
177         set_keep_above (true);
178 }
179
180 bool
181 PluginUIWindow::on_enter_notify_event (GdkEventCrossing *ev)
182 {
183         Keyboard::the_keyboard().enter_window (ev, this);
184         return false;
185 }
186
187 bool
188 PluginUIWindow::on_leave_notify_event (GdkEventCrossing *ev)
189 {
190         Keyboard::the_keyboard().leave_window (ev, this);
191         return false;
192 }
193
194 bool
195 PluginUIWindow::on_focus_in_event (GdkEventFocus *ev)
196 {
197         Window::on_focus_in_event (ev);
198         //Keyboard::the_keyboard().magic_widget_grab_focus ();
199         return false;
200 }
201
202 bool
203 PluginUIWindow::on_focus_out_event (GdkEventFocus *ev)
204 {
205         Window::on_focus_out_event (ev);
206         //Keyboard::the_keyboard().magic_widget_drop_focus ();
207         return false;
208 }
209
210 void
211 PluginUIWindow::on_show ()
212 {
213         if (_pluginui) {
214                 _pluginui->update_presets ();
215         }
216
217         Window::on_show ();
218
219         if (parent) {
220                 // set_transient_for (*parent);
221         }
222 }
223
224 void
225 PluginUIWindow::on_hide ()
226 {
227         Window::on_hide ();
228 }
229
230 bool
231 PluginUIWindow::create_vst_editor(boost::shared_ptr<PluginInsert> insert)
232 {
233 #ifndef VST_SUPPORT
234         return false;
235 #else
236
237         boost::shared_ptr<VSTPlugin> vp;
238
239         if ((vp = boost::dynamic_pointer_cast<VSTPlugin> (insert->plugin())) == 0) {
240                 error << _("unknown type of editor-supplying plugin (note: no VST support in this version of ardour)")
241                               << endmsg;
242                 throw failed_constructor ();
243         } else {
244                 VSTPluginUI* vpu = new VSTPluginUI (insert, vp);
245         
246                 _pluginui = vpu;
247                 add (*vpu);
248                 vpu->package (*this);
249         }
250
251         non_gtk_gui = true;
252         return true;
253 #endif
254 }
255
256 bool
257 PluginUIWindow::create_audiounit_editor (boost::shared_ptr<PluginInsert> insert)
258 {
259 #if !defined(HAVE_AUDIOUNITS) || !defined(GTKOSX)
260         return false;
261 #else
262         VBox* box;
263         _pluginui = create_au_gui (insert, &box);
264         add (*box);
265         non_gtk_gui = true;
266
267         extern sigc::signal<void,bool> ApplicationActivationChanged;
268         ApplicationActivationChanged.connect (mem_fun (*this, &PluginUIWindow::app_activated));
269
270         return true;
271 #endif
272 }
273
274 void
275 PluginUIWindow::app_activated (bool yn)
276 {
277 #if defined (HAVE_AUDIOUNITS) && defined(GTKOSX)
278         cerr << "APP activated ? " << yn << endl;
279         if (_pluginui) {
280                 if (yn) {
281                         if (was_visible) {
282                                 _pluginui->activate ();
283                                 present ();
284                                 was_visible = true;
285                         }
286                 } else {
287                         was_visible = is_visible();
288                         hide ();
289                         _pluginui->deactivate ();
290                 }
291         } 
292 #endif
293 }
294
295 bool
296 PluginUIWindow::create_lv2_editor(boost::shared_ptr<PluginInsert> insert)
297 {
298 #ifndef HAVE_SLV2
299         return false;
300 #else
301
302         boost::shared_ptr<LV2Plugin> vp;
303         
304         if ((vp = boost::dynamic_pointer_cast<LV2Plugin> (insert->plugin())) == 0) {
305                 error << _("create_lv2_editor called on non-LV2 plugin") << endmsg;
306                 throw failed_constructor ();
307         } else {
308                 LV2PluginUI* lpu = new LV2PluginUI (insert, vp);
309                 _pluginui = lpu;
310                 add (*lpu);
311                 lpu->package (*this);
312         }
313
314         non_gtk_gui = false;
315         return true;
316 #endif
317 }
318
319 bool
320 PluginUIWindow::on_key_press_event (GdkEventKey* event)
321 {
322         if (!key_press_focus_accelerator_handler (*this, event)) {
323                 return PublicEditor::instance().on_key_press_event(event);
324         } else {
325                 return true;
326         }
327 }
328
329 bool
330 PluginUIWindow::on_key_release_event (GdkEventKey* event)
331 {
332         return true;
333 }
334
335 void
336 PluginUIWindow::plugin_going_away ()
337 {
338         ENSURE_GUI_THREAD(mem_fun(*this, &PluginUIWindow::plugin_going_away));
339         
340         if (_pluginui) {
341                 _pluginui->stop_updating(0);
342         }
343
344         death_connection.disconnect ();
345
346         delete_when_idle (this);
347 }
348
349 PlugUIBase::PlugUIBase (boost::shared_ptr<PluginInsert> pi)
350         : insert (pi),
351           plugin (insert->plugin()),
352           save_button(_("Add")),
353           bypass_button (_("Bypass")),
354           latency_gui (0),
355           plugin_analysis_expander (_("Plugin analysis"))
356 {
357         //preset_combo.set_use_arrows_always(true);
358         update_presets();
359         preset_combo.set_size_request (100, -1);
360         preset_combo.set_active_text ("");
361         preset_combo.signal_changed().connect(mem_fun(*this, &PlugUIBase::setting_selected));
362
363         save_button.set_name ("PluginSaveButton");
364         save_button.signal_clicked().connect(mem_fun(*this, &PlugUIBase::save_plugin_setting));
365
366         insert->ActiveChanged.connect (bind(
367                         mem_fun(*this, &PlugUIBase::processor_active_changed),
368                         boost::weak_ptr<Processor>(insert)));
369
370         bypass_button.set_active (!pi->active());
371
372         bypass_button.set_name ("PluginBypassButton");
373         bypass_button.signal_toggled().connect (mem_fun(*this, &PlugUIBase::bypass_toggled));
374         focus_button.add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK);
375
376         focus_button.signal_button_release_event().connect (mem_fun(*this, &PlugUIBase::focus_toggled));
377         focus_button.add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK);
378
379         /* these images are not managed, so that we can remove them at will */
380
381         focus_out_image = new Image (get_icon (X_("computer_keyboard")));
382         focus_in_image = new Image (get_icon (X_("computer_keyboard_active")));
383         
384         focus_button.add (*focus_out_image);
385
386         ARDOUR_UI::instance()->set_tip (&focus_button, _("Click to allow the plugin to receive keyboard events that Ardour would normally use as a shortcut"), "");
387         ARDOUR_UI::instance()->set_tip (&bypass_button, _("Click to enable/disable this plugin"), "");
388
389         plugin_analysis_expander.property_expanded().signal_changed().connect( mem_fun(*this, &PlugUIBase::toggle_plugin_analysis));
390         plugin_analysis_expander.set_expanded(false);
391
392         insert->GoingAway.connect (mem_fun (*this, &PlugUIBase::plugin_going_away));
393 }
394
395 PlugUIBase::~PlugUIBase()
396 {
397         delete latency_gui;
398 }
399
400 void
401 PlugUIBase::plugin_going_away ()
402 {
403         /* drop references to the plugin/insert */
404         insert.reset ();
405         plugin.reset ();
406 }
407
408 void
409 PlugUIBase::set_latency_label ()
410 {
411         char buf[64];
412         nframes_t l = insert->effective_latency ();
413         nframes_t sr = insert->session().frame_rate();
414
415         if (l < sr / 1000) {
416                 snprintf (buf, sizeof (buf), "latency (%d samples)", l);
417         } else {
418                 snprintf (buf, sizeof (buf), "latency (%.2f msecs)", (float) l / ((float) sr / 1000.0f));
419         }
420
421         latency_label.set_text (buf);
422 }
423
424 void
425 PlugUIBase::latency_button_clicked ()
426 {
427         if (!latency_gui) {
428                 latency_gui = new LatencyGUI (*(insert.get()), insert->session().frame_rate(), insert->session().get_block_size());
429                 latency_dialog = new ArdourDialog ("Edit Latency", false, false);
430                 latency_dialog->get_vbox()->pack_start (*latency_gui);
431                 latency_dialog->signal_hide().connect (mem_fun (*this, &PlugUIBase::set_latency_label));
432         }
433
434         latency_dialog->show_all ();
435 }
436
437 void
438 PlugUIBase::processor_active_changed (boost::weak_ptr<Processor> weak_p)
439 {
440         ENSURE_GUI_THREAD(bind (mem_fun(*this, &PlugUIBase::processor_active_changed), weak_p));
441         boost::shared_ptr<Processor> p (weak_p);
442         if (p) {
443                 bypass_button.set_active (!p->active());
444         }
445 }
446
447 void
448 PlugUIBase::setting_selected()
449 {
450         if (preset_combo.get_active_text().length() > 0) {
451                 const Plugin::PresetRecord* pr = plugin->preset_by_label(preset_combo.get_active_text());
452                 if (pr) {
453                         plugin->load_preset(pr->uri);
454                 } else {
455                         warning << string_compose(_("Plugin preset %1 not found"),
456                                         preset_combo.get_active_text()) << endmsg;
457                 }
458         }
459 }
460
461 void
462 PlugUIBase::save_plugin_setting ()
463 {
464         ArdourPrompter prompter (true);
465         prompter.set_prompt(_("Name of New Preset:"));
466         prompter.add_button (Gtk::Stock::ADD, Gtk::RESPONSE_ACCEPT);
467         prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
468         prompter.set_type_hint (Gdk::WINDOW_TYPE_HINT_UTILITY);
469
470         prompter.show_all();
471         prompter.present ();
472
473         switch (prompter.run ()) {
474         case Gtk::RESPONSE_ACCEPT:
475                 string name;
476                 prompter.get_result(name);
477                 if (name.length()) {
478                         if (plugin->save_preset(name)) {
479                                 update_presets();
480                                 preset_combo.set_active_text (name);
481                         }
482                 }
483                 break;
484         }
485 }
486
487 void
488 PlugUIBase::bypass_toggled ()
489 {
490         bool x;
491
492         if ((x = bypass_button.get_active()) == insert->active()) {
493                 if (x) {
494                         insert->deactivate ();
495                 } else {
496                         insert->activate ();
497                 }
498         }
499 }
500
501 bool
502 PlugUIBase::focus_toggled (GdkEventButton* ev)
503 {
504         if (Keyboard::the_keyboard().some_magic_widget_has_focus()) {
505                 Keyboard::the_keyboard().magic_widget_drop_focus();
506                 focus_button.remove ();
507                 focus_button.add (*focus_out_image);
508                 focus_out_image->show ();
509                 ARDOUR_UI::instance()->set_tip (&focus_button, _("Click to allow the plugin to receive keyboard events that Ardour would normally use as a shortcut"), "");
510         } else {
511                 Keyboard::the_keyboard().magic_widget_grab_focus();
512                 focus_button.remove ();
513                 focus_button.add (*focus_in_image);
514                 focus_in_image->show ();
515                 ARDOUR_UI::instance()->set_tip (&focus_button, _("Click to allow normal use of Ardour keyboard shortcuts"), "");
516         }
517
518         return true;
519 }
520
521 void
522 PlugUIBase::toggle_plugin_analysis()
523 {
524         if (plugin_analysis_expander.get_expanded() && 
525             !plugin_analysis_expander.get_child()) {
526                 // Create the GUI
527                 PluginEqGui *foo = new PluginEqGui(insert);
528                 plugin_analysis_expander.add( *foo );
529                 plugin_analysis_expander.show_all();
530         } 
531         
532         Gtk::Widget *gui;
533
534         if (!plugin_analysis_expander.get_expanded() && 
535             (gui = plugin_analysis_expander.get_child())) {
536                 // Hide & remove
537                 gui->hide();
538                 //plugin_analysis_expander.remove(*gui);
539                 plugin_analysis_expander.remove();
540
541                 delete gui;
542
543                 Gtk::Widget *toplevel = plugin_analysis_expander.get_toplevel();
544                 if (!toplevel) {
545                         std::cerr << "No toplevel widget?!?!" << std::endl;
546                         return;
547                 }
548
549                 Gtk::Container *cont = dynamic_cast<Gtk::Container *>(toplevel);
550                 if (!cont) {
551                         std::cerr << "Toplevel widget is not a container?!?" << std::endl;
552                         return;
553                 }
554
555                 Gtk::Allocation alloc(0, 0, 50, 50); // Just make it small
556                 toplevel->size_allocate(alloc);
557         }
558 }
559
560 void
561 PlugUIBase::update_presets ()
562 {
563         vector<string> preset_labels;
564         vector<ARDOUR::Plugin::PresetRecord> presets = plugin->get_presets();
565         for (vector<ARDOUR::Plugin::PresetRecord>::const_iterator i = presets.begin();
566                    i != presets.end(); ++i) {
567                 preset_labels.push_back(i->label);
568         }
569         set_popdown_strings (preset_combo, preset_labels);
570 }