Remove beat entry from meter dialog (beats are not allowed in API), clean up some...
[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 #include <climits>
21 #include <cerrno>
22 #include <cmath>
23 #include <string>
24
25 #include <pbd/stl_delete.h>
26 #include <pbd/xml++.h>
27 #include <pbd/failed_constructor.h>
28
29 #include <gtkmm/widget.h>
30 #include <gtkmm2ext/click_box.h>
31 #include <gtkmm2ext/fastmeter.h>
32 #include <gtkmm2ext/barcontroller.h>
33 #include <gtkmm2ext/utils.h>
34 #include <gtkmm2ext/doi.h>
35 #include <gtkmm2ext/slider_controller.h>
36
37 #include <midi++/manager.h>
38
39 #include <ardour/plugin.h>
40 #include <ardour/insert.h>
41 #include <ardour/ladspa_plugin.h>
42 #ifdef VST_SUPPORT
43 #include <ardour/vst_plugin.h>
44 #endif
45
46 #include <lrdf.h>
47
48 #include "ardour_ui.h"
49 #include "prompter.h"
50 #include "plugin_ui.h"
51 #include "utils.h"
52 #include "gui_thread.h"
53 #include "public_editor.h"
54
55 #include "i18n.h"
56
57 using namespace std;
58 using namespace ARDOUR;
59 using namespace PBD;
60 using namespace Gtkmm2ext;
61 using namespace Gtk;
62 using namespace sigc;
63
64 PluginUIWindow::PluginUIWindow (boost::shared_ptr<PluginInsert> insert, bool scrollable)
65 {
66         bool have_gui = false;
67         non_gtk_gui = false;
68
69         if (insert->plugin()->has_editor()) {
70                 switch (insert->type()) {
71                 case ARDOUR::VST:
72                         have_gui = create_vst_editor (insert);
73                         break;
74
75                 case ARDOUR::AudioUnit:
76                         have_gui = create_audiounit_editor (insert);
77                         break;
78                         
79                 case ARDOUR::LADSPA:
80                         error << _("Eh? LADSPA plugins don't have editors!") << endmsg;
81                         break;
82
83                 default:
84 #ifndef VST_SUPPORT
85                         error << _("unknown type of editor-supplying plugin (note: no VST support in this version of ardour)")
86                               << endmsg;
87 #else
88                         error << _("unknown type of editor-supplying plugin")
89                               << endmsg;
90 #endif
91                         throw failed_constructor ();
92                 }
93
94         } 
95
96         if (!have_gui) {
97
98                 GenericPluginUI*  pu  = new GenericPluginUI (insert, scrollable);
99                 
100                 _pluginui = pu;
101                 add (*pu);
102                 
103                 set_wmclass (X_("ardour_plugin_editor"), "Ardour");
104
105                 signal_map_event().connect (mem_fun (*pu, &GenericPluginUI::start_updating));
106                 signal_unmap_event().connect (mem_fun (*pu, &GenericPluginUI::stop_updating));
107         }
108
109         // set_position (Gtk::WIN_POS_MOUSE);
110         set_name ("PluginEditor");
111         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
112
113         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window*> (this)), false);
114         insert->GoingAway.connect (mem_fun(*this, &PluginUIWindow::plugin_going_away));
115
116         gint h = _pluginui->get_preferred_height ();
117         gint w = _pluginui->get_preferred_width ();
118
119         if (scrollable) {
120                 if (h > 600) h = 600;
121                 if (w > 600) w = 600;
122
123                 if (w < 0) {
124                         w = 450;
125                 }
126         }
127
128         set_default_size (w, h); 
129 }
130
131 PluginUIWindow::~PluginUIWindow ()
132 {
133 }
134
135 void
136 PluginUIWindow::on_show ()
137 {
138         cerr << "PluginWindow shown\n";
139                 
140         Window::on_show ();
141 }
142
143 void
144 PluginUIWindow::on_hide ()
145 {
146         cerr << "PluginWindow hidden\n";
147         Window::on_hide ();
148 }
149
150 bool
151 PluginUIWindow::create_vst_editor(boost::shared_ptr<PluginInsert> insert)
152 {
153 #ifndef VST_SUPPORT
154         return false;
155 #else
156
157         boost::shared_ptr<VSTPlugin> vp;
158
159         if ((vp = boost::dynamic_pointer_cast<VSTPlugin> (insert->plugin())) == 0) {
160                 error << _("unknown type of editor-supplying plugin (note: no VST support in this version of ardour)")
161                               << endmsg;
162                 throw failed_constructor ();
163         } else {
164                 VSTPluginUI* vpu = new VSTPluginUI (insert, vp);
165         
166                 _pluginui = vpu;
167                 add (*vpu);
168                 vpu->package (*this);
169         }
170
171         non_gtk_gui = true;
172         return true;
173 #endif
174 }
175
176 bool
177 PluginUIWindow::create_audiounit_editor (boost::shared_ptr<PluginInsert> insert)
178 {
179 #if !defined(HAVE_AUDIOUNITS) || !defined(GTKOSX)
180         return false;
181 #else
182         VBox* box;
183         _pluginui = create_au_gui (insert, &box);
184         add (*box);
185         non_gtk_gui = true;
186
187         extern sigc::signal<void,bool> ApplicationActivationChanged;
188         ApplicationActivationChanged.connect (mem_fun (*this, &PluginUIWindow::app_activated));
189
190         return true;
191 #endif
192 }
193
194 void
195 PluginUIWindow::app_activated (bool yn)
196 {
197 #if defined (HAVE_AUDIOUNITS) && defined(GTKOSX)
198         cerr << "APP activated ? " << yn << endl;
199         if (_pluginui) {
200                 if (yn) {
201                         _pluginui->activate ();
202                         present ();
203                 } else {
204                         hide ();
205                         _pluginui->deactivate ();
206                 }
207         } 
208 #endif
209 }
210
211 bool
212 PluginUIWindow::on_key_press_event (GdkEventKey* event)
213 {
214         if (non_gtk_gui) {
215                 return false;
216         }
217
218         if (!key_press_focus_accelerator_handler (*this, event)) {
219                 return PublicEditor::instance().on_key_press_event(event);
220         } else {
221                 return true;
222         }
223 }
224
225 bool
226 PluginUIWindow::on_key_release_event (GdkEventKey* event)
227 {
228         return true;
229 }
230
231 void
232 PluginUIWindow::plugin_going_away ()
233 {
234         ENSURE_GUI_THREAD(mem_fun(*this, &PluginUIWindow::plugin_going_away));
235         
236         if (_pluginui) {
237                 _pluginui->stop_updating(0);
238         }
239         delete_when_idle (this);
240 }
241
242 PlugUIBase::PlugUIBase (boost::shared_ptr<PluginInsert> pi)
243         : insert (pi),
244           plugin (insert->plugin()),
245           save_button(_("Add")),
246           bypass_button (_("Bypass"))
247 {
248         //preset_combo.set_use_arrows_always(true);
249         set_popdown_strings (preset_combo, plugin->get_presets());
250         preset_combo.set_size_request (100, -1);
251         preset_combo.set_active_text ("");
252         preset_combo.signal_changed().connect(mem_fun(*this, &PlugUIBase::setting_selected));
253
254         save_button.set_name ("PluginSaveButton");
255         save_button.signal_clicked().connect(mem_fun(*this, &PlugUIBase::save_plugin_setting));
256
257         insert->active_changed.connect (mem_fun(*this, &PlugUIBase::redirect_active_changed));
258         bypass_button.set_active (!pi->active());
259
260         bypass_button.set_name ("PluginBypassButton");
261         bypass_button.signal_toggled().connect (mem_fun(*this, &PlugUIBase::bypass_toggled));
262 }
263
264 void
265 PlugUIBase::redirect_active_changed (Redirect* r, void* src)
266 {
267         ENSURE_GUI_THREAD(bind (mem_fun(*this, &PlugUIBase::redirect_active_changed), r, src));
268         bypass_button.set_active (!r->active());
269 }
270
271 void
272 PlugUIBase::setting_selected()
273 {
274         if (preset_combo.get_active_text().length() > 0) {
275                 if (!plugin->load_preset(preset_combo.get_active_text())) {
276                         warning << string_compose(_("Plugin preset %1 not found"), preset_combo.get_active_text()) << endmsg;
277                 }
278         }
279 }
280
281 void
282 PlugUIBase::save_plugin_setting ()
283 {
284         ArdourPrompter prompter (true);
285         prompter.set_prompt(_("Name of New Preset:"));
286         prompter.add_button (Gtk::Stock::ADD, Gtk::RESPONSE_ACCEPT);
287         prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
288
289         prompter.show_all();
290
291         switch (prompter.run ()) {
292         case Gtk::RESPONSE_ACCEPT:
293
294                 string name;
295
296                 prompter.get_result(name);
297
298                 if (name.length()) {
299                         if(plugin->save_preset(name)){
300                                 set_popdown_strings (preset_combo, plugin->get_presets());
301                                 preset_combo.set_active_text (name);
302                         }
303                 }
304                 break;
305         }
306 }
307
308 void
309 PlugUIBase::bypass_toggled ()
310 {
311         bool x;
312
313         if ((x = bypass_button.get_active()) == insert->active()) {
314                 insert->set_active (!x, this);
315                 if (insert->active()) {
316                         bypass_button.set_label (_("Bypass"));
317                 } else {
318                         bypass_button.set_label (_("Active"));
319                 }
320         }
321 }
322