Per-region MIDI CC "automation".
[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/plugin_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, nframes64_t sr, nframes64_t period, bool scrollable)
65         : ArdourDialog ("plugin ui")
66 {
67         if (insert->plugin()->has_editor()) {
68
69 #ifdef VST_SUPPORT
70
71                 boost::shared_ptr<VSTPlugin> vp;
72
73                 if ((vp = boost::dynamic_pointer_cast<VSTPlugin> (insert->plugin())) != 0) {
74                         
75                         
76                         VSTPluginUI* vpu = new VSTPluginUI (insert, vp, session.frame_rate(), session.engine().frames_per_cycle());
77                         
78                         _pluginui = vpu;
79                         get_vbox()->add (*vpu);
80                         vpu->package (*this);
81                         
82                 } else {
83 #endif
84                         error << _("unknown type of editor-supplying plugin (note: no VST support in this version of ardour)")
85                               << endmsg;
86                         throw failed_constructor ();
87 #ifdef VST_SUPPORT
88                 }
89 #endif
90
91         } else {
92
93                 LadspaPluginUI*  pu  = new LadspaPluginUI (insert, sr, period, scrollable);
94                 
95                 _pluginui = pu;
96                 get_vbox()->add (*pu);
97                 
98                 set_wmclass (X_("ardour_plugin_editor"), "Ardour");
99
100                 signal_map_event().connect (mem_fun (*pu, &LadspaPluginUI::start_updating));
101                 signal_unmap_event().connect (mem_fun (*pu, &LadspaPluginUI::stop_updating));
102         }
103
104         set_position (Gtk::WIN_POS_MOUSE);
105         set_name ("PluginEditor");
106         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
107
108         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window*> (this)));
109         insert->GoingAway.connect (mem_fun(*this, &PluginUIWindow::plugin_going_away));
110
111         if (scrollable) {
112                 gint h = _pluginui->get_preferred_height ();
113                 if (h > 600) h = 600;
114                 set_default_size (450, h); 
115         }
116
117 }
118
119 PluginUIWindow::~PluginUIWindow ()
120 {
121 }
122
123 bool
124 PluginUIWindow::on_key_press_event (GdkEventKey* event)
125 {
126         if (!key_press_focus_accelerator_handler (*this, event)) {
127                 return PublicEditor::instance().on_key_press_event(event);
128         } else {
129                 return true;
130         }
131 }
132
133 bool
134 PluginUIWindow::on_key_release_event (GdkEventKey* event)
135 {
136         return true;
137 }
138
139 void
140 PluginUIWindow::plugin_going_away ()
141 {
142         ENSURE_GUI_THREAD(mem_fun(*this, &PluginUIWindow::plugin_going_away));
143         
144         _pluginui->stop_updating(0);
145         delete_when_idle (this);
146 }
147
148 PlugUIBase::PlugUIBase (boost::shared_ptr<PluginInsert> pi, nframes64_t sr, nframes64_t period)
149         : insert (pi),
150           plugin (insert->plugin()),
151           save_button(_("Add")),
152           bypass_button (_("Bypass")),
153           latency_gui (*pi, sr, period)
154 {
155         //combo.set_use_arrows_always(true);
156         set_popdown_strings (combo, plugin->get_presets());
157         combo.set_size_request (100, -1);
158         combo.set_active_text ("");
159         combo.signal_changed().connect(mem_fun(*this, &PlugUIBase::setting_selected));
160
161         save_button.set_name ("PluginSaveButton");
162         save_button.signal_clicked().connect(mem_fun(*this, &PlugUIBase::save_plugin_setting));
163
164         bypass_button.set_name ("PluginBypassButton");
165         bypass_button.signal_toggled().connect (mem_fun(*this, &PlugUIBase::bypass_toggled));
166 }
167
168 void
169 PlugUIBase::setting_selected()
170 {
171         if (combo.get_active_text().length() > 0) {
172                 if (!plugin->load_preset(combo.get_active_text())) {
173                         warning << string_compose(_("Plugin preset %1 not found"), combo.get_active_text()) << endmsg;
174                 }
175         }
176
177 }
178
179 void
180 PlugUIBase::save_plugin_setting ()
181 {
182         ArdourPrompter prompter (true);
183         prompter.set_prompt(_("Name of New Preset:"));
184         prompter.add_button (Gtk::Stock::ADD, Gtk::RESPONSE_ACCEPT);
185         prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
186
187         prompter.show_all();
188
189         switch (prompter.run ()) {
190         case Gtk::RESPONSE_ACCEPT:
191
192                 string name;
193
194                 prompter.get_result(name);
195
196                 if (name.length()) {
197                         if(plugin->save_preset(name)){
198                                 set_popdown_strings (combo, plugin->get_presets());
199                                 combo.set_active_text (name);
200                         }
201                 }
202                 break;
203         }
204 }
205
206 void
207 PlugUIBase::bypass_toggled ()
208 {
209         bool x;
210
211         if ((x = bypass_button.get_active()) == insert->active()) {
212                 insert->set_active (!x);
213         }
214 }