Move panic button to MIDI toolbar (reduce required horizontal space).
[ardour.git] / gtk2_ardour / generic_pluginui.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 <gtkmm2ext/click_box.h>
30 #include <gtkmm2ext/fastmeter.h>
31 #include <gtkmm2ext/barcontroller.h>
32 #include <gtkmm2ext/utils.h>
33 #include <gtkmm2ext/doi.h>
34 #include <gtkmm2ext/slider_controller.h>
35
36 #include <midi++/manager.h>
37
38 #include <ardour/plugin.h>
39 #include <ardour/plugin_insert.h>
40 #include <ardour/ladspa_plugin.h>
41 #ifdef HAVE_LV2
42 #include <ardour/lv2_plugin.h>
43 #endif
44
45 #include <lrdf.h>
46
47 #include "ardour_ui.h"
48 #include "prompter.h"
49 #include "plugin_ui.h"
50 #include "utils.h"
51 #include "gui_thread.h"
52 #include "automation_controller.h"
53
54 #include "i18n.h"
55
56 using namespace std;
57 using namespace ARDOUR;
58 using namespace PBD;
59 using namespace Gtkmm2ext;
60 using namespace Gtk;
61 using namespace sigc;
62
63 GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrollable)
64         : PlugUIBase (pi),
65           button_table (initial_button_rows, initial_button_cols),
66           output_table (initial_output_rows, initial_output_cols),
67           hAdjustment(0.0, 0.0, 0.0),
68           vAdjustment(0.0, 0.0, 0.0),
69           scroller_view(hAdjustment, vAdjustment),
70           automation_menu (0),
71           is_scrollable(scrollable)
72 {
73         set_name ("PluginEditor");
74         set_border_width (10);
75         set_homogeneous (false);
76
77         settings_box.set_homogeneous (false);
78
79         HBox* constraint_hbox = manage (new HBox);
80         HBox* smaller_hbox = manage (new HBox);
81         Label* combo_label = manage (new Label (_("<span size=\"large\">Presets</span>")));
82         combo_label->set_use_markup (true);
83
84         Label* latency_label = manage (new Label (_("<span size=\"large\">Latency</span>")));
85         latency_label->set_use_markup (true);
86
87         smaller_hbox->pack_start (*latency_label, false, false, 10);
88         smaller_hbox->pack_start (latency_gui, false, false, 10);
89         smaller_hbox->pack_start (preset_combo, false, false);
90         smaller_hbox->pack_start (save_button, false, false);
91
92         constraint_hbox->set_spacing (5);
93         constraint_hbox->pack_start (*smaller_hbox, true, false);
94         constraint_hbox->pack_end (bypass_button, false, false);
95
96         settings_box.pack_end (*constraint_hbox, false, false);
97
98         pack_start (settings_box, false, false);
99
100         if ( is_scrollable ) {
101                 scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
102                 scroller.set_name ("PluginEditor");
103                 scroller_view.set_name("PluginEditor");
104                 scroller_view.add (hpacker);
105                 scroller.add (scroller_view);
106                 
107                 pack_start (scroller, true, true);
108
109         }
110         else {
111                 pack_start (hpacker, false, false);
112         }
113
114         pi->ActiveChanged.connect (bind(mem_fun(*this, &GenericPluginUI::processor_active_changed),
115                                 boost::weak_ptr<Processor>(pi)));
116         bypass_button.set_active (!pi->active());
117         
118         build ();
119 }
120
121 GenericPluginUI::~GenericPluginUI ()
122 {
123         if (output_controls.size() > 0) {
124                 screen_update_connection.disconnect();
125         }
126 }
127
128 void
129 GenericPluginUI::build ()
130
131 {
132         guint32 i = 0;
133         guint32 x = 0;
134         Frame* frame;
135         Frame* bt_frame;
136         VBox* box;
137         int output_row, output_col;
138         int button_row, button_col;
139         int output_rows, output_cols;
140         int button_rows, button_cols;
141
142         prefheight = 30;
143         hpacker.set_spacing (10);
144
145         output_rows = initial_output_rows;
146         output_cols = initial_output_cols;
147         button_rows = initial_button_rows;
148         button_cols = initial_button_cols;
149         output_row = 0;
150         button_row = 0;
151         output_col = 0;
152         button_col = 0;
153
154         button_table.set_homogeneous (false);
155         button_table.set_row_spacings (2);
156         button_table.set_col_spacings (2);
157         output_table.set_homogeneous (true);
158         output_table.set_row_spacings (2);
159         output_table.set_col_spacings (2);
160         button_table.set_border_width (5);
161         output_table.set_border_width (5);
162
163         hpacker.set_border_width (10);
164
165         bt_frame = manage (new Frame);
166         bt_frame->set_name ("BaseFrame");
167         bt_frame->add (button_table);
168         hpacker.pack_start(*bt_frame, true, true);
169
170         box = manage (new VBox);
171         box->set_border_width (5);
172         box->set_spacing (1);
173
174         frame = manage (new Frame);
175         frame->set_name ("BaseFrame");
176         frame->set_label (_("Controls"));
177         frame->add (*box);
178         hpacker.pack_start(*frame, true, true);
179
180         /* find all ports. build control elements for all appropriate control ports */
181
182         for (i = 0; i < plugin->parameter_count(); ++i) {
183
184                 if (plugin->parameter_is_control (i)) {
185                         
186                         /* Don't show latency control ports */
187
188                         if (plugin->describe_parameter (Evoral::Parameter(PluginAutomation, 0, i)) == X_("latency")) {
189                                 continue;
190                         }
191
192                         ControlUI* cui;
193         
194                         /* if we are scrollable, just use one long column */
195
196                         if (!is_scrollable) {
197                                 if (x++ > 7){
198                                         frame = manage (new Frame);
199                                         frame->set_name ("BaseFrame");
200                                         box = manage (new VBox);
201                                         
202                                         box->set_border_width (5);
203                                         box->set_spacing (1);
204
205                                         frame->add (*box);
206                                         hpacker.pack_start(*frame,true,true);
207
208                                         x = 1;
209                                 }
210                         }
211
212                         boost::shared_ptr<ARDOUR::AutomationControl> c
213                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
214                                         insert->data().control(Evoral::Parameter(PluginAutomation, 0, i)));
215
216                         if ((cui = build_control_ui (i, c)) == 0) {
217                                 error << string_compose(_("Plugin Editor: could not build control element for port %1"), i) << endmsg;
218                                 continue;
219                         }
220                                 
221                         if (cui->controller || cui->clickbox || cui->combo) {
222
223                                 box->pack_start (*cui, false, false);
224
225                         } else if (cui->button) {
226
227                                 if (button_row == button_rows) {
228                                         button_row = 0;
229                                         if (++button_col == button_cols) {
230                                                 button_cols += 2;
231                                                 button_table.resize (button_rows, button_cols);
232                                         }
233                                 }
234
235                                 button_table.attach (*cui, button_col, button_col + 1, button_row, button_row+1, 
236                                                      FILL|EXPAND, FILL);
237                                 button_row++;
238
239                         } else if (cui->display) {
240
241                                 output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1, 
242                                                      FILL|EXPAND, FILL);
243                                 
244                                 // TODO: The meters should be divided into multiple rows 
245                                 
246                                 if (++output_col == output_cols) {
247                                         output_cols ++;
248                                         output_table.resize (output_rows, output_cols);
249                                 }
250                                 
251                                 /* old code, which divides meters into
252                                  * columns first, rows later. New code divides into one row
253                                  
254                                 if (output_row == output_rows) {
255                                         output_row = 0;
256                                         if (++output_col == output_cols) {
257                                                 output_cols += 2;
258                                                 output_table.resize (output_rows, output_cols);
259                                         }
260                                 }
261                                 
262                                 output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1, 
263                                                      FILL|EXPAND, FILL);
264  
265                                 output_row++;
266                                 */
267                         }
268                                 
269                         /* HACK: ideally the preferred height would be queried from
270                            the complete hpacker, but I can't seem to get that
271                            information in time, so this is an estimation 
272                         */
273
274                         prefheight += 30;
275
276                 } 
277         }
278
279         if (box->children().empty()) {
280                 hpacker.remove (*frame);
281         }
282
283         if (button_table.children().empty()) {
284                 hpacker.remove (*bt_frame);
285         }
286
287         if (!output_table.children().empty()) {
288                 frame = manage (new Frame);
289                 frame->set_name ("BaseFrame");
290                 frame->add (output_table);
291                 hpacker.pack_end (*frame, true, true);
292         }
293
294         output_update ();
295
296         output_table.show_all ();
297         button_table.show_all ();
298 }
299
300 GenericPluginUI::ControlUI::ControlUI ()
301         : automate_button (X_("")) // force creation of a label 
302 {
303         automate_button.set_name ("PluginAutomateButton");
304         ARDOUR_UI::instance()->tooltips().set_tip (automate_button, _("Automation control"));
305
306         /* XXX translators: use a string here that will be at least as long
307            as the longest automation label (see ::automation_state_changed()
308            below). be sure to include a descender.
309         */
310
311         set_size_request_to_display_given_text (*automate_button.get_child(), _("Mgnual"), 5, 5);
312
313         ignore_change = 0;
314         display = 0;
315         button = 0;
316         clickbox = 0;
317         meterinfo = 0;
318 }
319
320 GenericPluginUI::ControlUI::~ControlUI() 
321 {
322         if (meterinfo) {
323                 delete meterinfo->meter;
324                 delete meterinfo;
325         }
326 }
327
328 void
329 GenericPluginUI::automation_state_changed (ControlUI* cui)
330 {
331         /* update button label */
332
333         // don't lock to avoid deadlock because we're triggered by
334         // AutomationControl::Changed() while the automation lock is taken
335         switch (insert->get_parameter_automation_state (cui->parameter(), false)
336                         & (Off|Play|Touch|Write)) {
337         case Off:
338                 cui->automate_button.set_label (_("Manual"));
339                 break;
340         case Play:
341                 cui->automate_button.set_label (_("Play"));
342                 break;
343         case Write:
344                 cui->automate_button.set_label (_("Write"));
345                 break;
346         case Touch:
347                 cui->automate_button.set_label (_("Touch"));
348                 break;
349         default:
350                 cui->automate_button.set_label (_("???"));
351                 break;
352         }
353 }
354
355
356 static void integer_printer (char buf[32], Adjustment &adj, void *arg)
357 {
358         snprintf (buf, 32, "%.0f", adj.get_value());
359 }
360
361 void
362 GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param)
363 {
364         plugin->print_parameter (param, buf, len);
365 }
366
367 GenericPluginUI::ControlUI*
368 GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<AutomationControl> mcontrol)
369 {
370         ControlUI* control_ui = NULL;
371         if (!mcontrol)
372                 return control_ui;
373
374         Plugin::ParameterDescriptor desc;
375
376         plugin->get_parameter_descriptor (port_index, desc);
377
378         control_ui = manage (new ControlUI ());
379         control_ui->combo = 0;
380         control_ui->combo_map = 0;
381         control_ui->control = mcontrol;
382         control_ui->update_pending = false;
383         control_ui->label.set_text (desc.label);
384         control_ui->label.set_alignment (0.0, 0.5);
385         control_ui->label.set_name ("PluginParameterLabel");
386
387         control_ui->set_spacing (5);
388
389         Gtk::Requisition req (control_ui->automate_button.size_request());
390
391         if (plugin->parameter_is_input (port_index)) {
392
393                 boost::shared_ptr<LadspaPlugin> lp;
394 #ifdef HAVE_LV2
395                 boost::shared_ptr<LV2Plugin> lv2p;
396 #endif
397                 if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
398                         
399                         // FIXME: not all plugins have a numeric unique ID
400                         uint32_t id = atol (lp->unique_id().c_str());
401                         lrdf_defaults* defaults = lrdf_get_scale_values(id, port_index);
402                         
403                         if (defaults && defaults->count > 0)    {
404                                 
405                                 control_ui->combo = new Gtk::ComboBoxText;
406                                 //control_ui->combo->set_value_in_list(true, false);
407                                 set_popdown_strings (*control_ui->combo, setup_scale_values(port_index, control_ui));
408                                 control_ui->combo->signal_changed().connect (bind (mem_fun(*this, &GenericPluginUI::control_combo_changed), control_ui));
409                                 mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
410                                 control_ui->pack_start(control_ui->label, true, true);
411                                 control_ui->pack_start(*control_ui->combo, false, true);
412                                 
413                                 update_control_display(control_ui);
414                                 
415                                 lrdf_free_setting_values(defaults);
416                                 return control_ui;
417                         }
418
419 #ifdef HAVE_LV2
420                 } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
421
422                         SLV2Port port = lv2p->slv2_port(port_index);
423                         SLV2ScalePoints points = slv2_port_get_scale_points(lv2p->slv2_plugin(), port);
424
425                         if (points) {
426                                 control_ui->combo = new Gtk::ComboBoxText;
427                                 //control_ui->combo->set_value_in_list(true, false);
428                                 set_popdown_strings (*control_ui->combo, setup_scale_values(port_index, control_ui));
429                                 control_ui->combo->signal_changed().connect (bind (mem_fun(*this, &GenericPluginUI::control_combo_changed), control_ui));
430                                 mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
431                                 control_ui->pack_start(control_ui->label, true, true);
432                                 control_ui->pack_start(*control_ui->combo, false, true);
433                                 
434                                 update_control_display(control_ui);
435                                 
436                                 slv2_scale_points_free(points);
437                                 return control_ui;
438                         }
439 #endif
440                 }
441                         
442                 if (desc.toggled) {
443
444                         /* Build a button */
445                 
446                         control_ui->button = manage (new ToggleButton ());
447                         control_ui->button->set_name ("PluginEditorButton");
448                         control_ui->button->set_size_request (20, 20);
449
450                         control_ui->pack_start (control_ui->label, true, true);
451                         control_ui->pack_start (*control_ui->button, false, true);
452                         control_ui->pack_start (control_ui->automate_button, false, false);
453
454                         control_ui->button->signal_clicked().connect (bind (mem_fun(*this, &GenericPluginUI::control_port_toggled), control_ui));
455                 
456                         if(plugin->get_parameter (port_index) == 1){
457                                 control_ui->button->set_active(true);
458                         }
459
460                         return control_ui;
461                 }
462
463                 /* create the controller */
464
465                 control_ui->controller = AutomationController::create(insert, mcontrol->parameter(), mcontrol);
466                 /* XXX this code is not right yet, because it doesn't handle
467                    the absence of bounds in any sensible fashion.
468                 */
469
470 #if 0
471                 control_ui->controller->adjustment()->set_lower (desc.lower);
472                 control_ui->controller->adjustment()->set_upper (desc.upper);
473
474                 control_ui->logarithmic = desc.logarithmic;
475                 if (control_ui->logarithmic) {
476                         if (control_ui->controller->adjustment()->get_lower() == 0.0) {
477                                 control_ui->controller->adjustment()->set_lower (control_ui->controller->adjustment()->get_upper()/10000);
478                         }
479                         control_ui->controller->adjustment()->set_upper (log(control_ui->controller->adjustment()->get_upper()));
480                         control_ui->controller->adjustment()->set_lower (log(control_ui->controller->adjustment()->get_lower()));
481                 }
482                 
483         
484                 float delta = desc.upper - desc.lower;
485
486                 control_ui->controller->adjustment()->set_page_size (delta/100.0);
487                 control_ui->controller->adjustment()->set_step_increment (desc.step);
488                 control_ui->controller->adjustment()->set_page_increment (desc.largestep);
489 #endif
490
491                 if (desc.integer_step) {
492                         control_ui->clickbox = new ClickBox (control_ui->controller->adjustment(), "PluginUIClickBox");
493                         Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->clickbox, "g9999999", 2, 2);
494                         control_ui->clickbox->set_print_func (integer_printer, 0);
495                 } else {
496                         //sigc::slot<void,char*,uint32_t> pslot = sigc::bind (mem_fun(*this, &GenericPluginUI::print_parameter), (uint32_t) port_index);
497
498                         control_ui->controller->set_size_request (200, req.height);
499                         control_ui->controller->set_name (X_("PluginSlider"));
500                         control_ui->controller->set_style (BarController::LeftToRight);
501                         control_ui->controller->set_use_parent (true);
502
503                         control_ui->controller->StartGesture.connect (bind (mem_fun(*this, &GenericPluginUI::start_touch), control_ui));
504                         control_ui->controller->StopGesture.connect (bind (mem_fun(*this, &GenericPluginUI::stop_touch), control_ui));
505                         
506                 }
507
508                 if (control_ui->logarithmic) {
509                         control_ui->controller->adjustment()->set_value(log(plugin->get_parameter(port_index)));
510                 } else{
511                         control_ui->controller->adjustment()->set_value(plugin->get_parameter(port_index));
512                 }
513
514                 /* XXX memory leak: SliderController not destroyed by ControlUI
515                    destructor, and manage() reports object hierarchy
516                    ambiguity.
517                 */
518
519                 control_ui->pack_start (control_ui->label, true, true);
520                 if (desc.integer_step) {
521                         control_ui->pack_start (*control_ui->clickbox, false, false);
522                 } else {
523                         control_ui->pack_start (*control_ui->controller, false, false);
524                 }
525
526                 control_ui->pack_start (control_ui->automate_button, false, false);
527                 control_ui->automate_button.signal_clicked().connect (bind (mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui, (uint32_t) port_index));
528
529                 automation_state_changed (control_ui);
530
531                 mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
532                 mcontrol->alist()->automation_state_changed.connect 
533                         (bind (mem_fun(*this, &GenericPluginUI::automation_state_changed), control_ui));
534
535         } else if (plugin->parameter_is_output (port_index)) {
536
537                 control_ui->display = manage (new EventBox);
538                 control_ui->display->set_name ("ParameterValueDisplay");
539
540                 control_ui->display_label = manage (new Label);
541
542                 control_ui->display_label->set_name ("ParameterValueDisplay");
543
544                 control_ui->display->add (*control_ui->display_label);
545                 Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->display, "-99,99", 2, 2);
546
547                 control_ui->display->show_all ();
548
549                 /* set up a meter */
550                 /* TODO: only make a meter if the port is Hinted for it */
551
552                 MeterInfo * info = new MeterInfo(port_index);
553                 control_ui->meterinfo = info;
554                 
555                 info->meter = new FastMeter (5, 5, FastMeter::Vertical);
556
557                 info->min_unbound = desc.min_unbound;
558                 info->max_unbound = desc.max_unbound;
559
560                 info->min = desc.lower;
561                 info->max = desc.upper;
562
563                 control_ui->vbox = manage (new VBox);
564                 control_ui->hbox = manage (new HBox);
565                 
566                 control_ui->label.set_angle(90);
567                 control_ui->hbox->pack_start (control_ui->label, false, false);
568                 control_ui->hbox->pack_start (*info->meter, false, false);
569
570                 control_ui->vbox->pack_start (*control_ui->hbox, false, false);
571                 
572                 control_ui->vbox->pack_start (*control_ui->display, false, false);
573
574                 control_ui->pack_start (*control_ui->vbox);
575
576                 control_ui->meterinfo->meter->show_all();
577                 control_ui->meterinfo->packed = true;
578                 
579                 output_controls.push_back (control_ui);
580         }
581         
582         mcontrol->Changed.connect (bind (mem_fun (*this, &GenericPluginUI::parameter_changed), control_ui));
583         
584         return control_ui;
585 }
586
587 void
588 GenericPluginUI::start_touch (GenericPluginUI::ControlUI* cui)
589 {
590         cui->control->start_touch ();
591 }
592
593 void
594 GenericPluginUI::stop_touch (GenericPluginUI::ControlUI* cui)
595 {
596         cui->control->stop_touch ();
597 }
598
599 void
600 GenericPluginUI::astate_clicked (ControlUI* cui, uint32_t port)
601 {
602         using namespace Menu_Helpers;
603
604         if (automation_menu == 0) {
605                 automation_menu = manage (new Menu);
606                 automation_menu->set_name ("ArdourContextMenu");
607         } 
608
609         MenuList& items (automation_menu->items());
610
611         items.clear ();
612         items.push_back (MenuElem (_("Manual"), 
613                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Off, cui)));
614         items.push_back (MenuElem (_("Play"),
615                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Play, cui)));
616         items.push_back (MenuElem (_("Write"),
617                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Write, cui)));
618         items.push_back (MenuElem (_("Touch"),
619                                    bind (mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Touch, cui)));
620
621         automation_menu->popup (1, gtk_get_current_event_time());
622 }
623
624 void
625 GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui)
626 {
627         insert->set_parameter_automation_state (cui->parameter(), state);
628 }
629
630 void
631 GenericPluginUI::parameter_changed (ControlUI* cui)
632 {
633         if (!cui->update_pending) {
634                 cui->update_pending = true;
635                 Gtkmm2ext::UI::instance()->call_slot (bind (mem_fun(*this, &GenericPluginUI::update_control_display), cui));
636         }
637 }
638
639 void
640 GenericPluginUI::update_control_display (ControlUI* cui)        
641 {
642         /* XXX how do we handle logarithmic stuff here ? */
643         
644         cui->update_pending = false;
645
646         float val = cui->control->get_value();
647
648         cui->ignore_change++;
649         if (cui->combo) {
650                 std::map<string,float>::iterator it;
651                 for (it = cui->combo_map->begin(); it != cui->combo_map->end(); ++it) {
652                         if (it->second == val) {
653                                 cui->combo->set_active_text(it->first);
654                                 break;
655                         }
656                 }
657         } else if (cui->button) {
658
659                 if (val > 0.5) {
660                         cui->button->set_active (true);
661                 } else {
662                         cui->button->set_active (false);
663                 }
664         }
665
666         if( cui->controller ) {
667             cui->controller->display_effective_value();
668         }
669
670
671         /*} else {
672                 if (cui->logarithmic) {
673                         val = log(val);
674                 }
675                 if (val != cui->adjustment->get_value()) {
676                         cui->adjustment->set_value (val);
677                 }
678         }*/
679         cui->ignore_change--;
680 }
681
682 void
683 GenericPluginUI::control_port_toggled (ControlUI* cui)
684 {
685         if (!cui->ignore_change) {
686                 insert->set_parameter (cui->parameter(), cui->button->get_active());
687         }
688 }
689
690 void
691 GenericPluginUI::control_combo_changed (ControlUI* cui)
692 {
693         if (!cui->ignore_change) {
694                 string value = cui->combo->get_active_text();
695                 std::map<string,float> mapping = *cui->combo_map;
696                 insert->set_parameter (cui->parameter(), mapping[value]);
697         }
698
699 }
700
701 void
702 GenericPluginUI::processor_active_changed (boost::weak_ptr<Processor> weak_processor)
703 {
704         ENSURE_GUI_THREAD(bind (mem_fun(*this, &GenericPluginUI::processor_active_changed), weak_processor));
705         
706         boost::shared_ptr<Processor> processor = weak_processor.lock();
707
708         bypass_button.set_active (!processor || !processor->active());
709 }
710
711 bool
712 GenericPluginUI::start_updating (GdkEventAny* ignored)
713 {
714         if (output_controls.size() > 0 ) {
715                 screen_update_connection.disconnect();
716                 screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect 
717                         (mem_fun(*this, &GenericPluginUI::output_update));
718         }
719         return false;
720 }
721
722 bool
723 GenericPluginUI::stop_updating (GdkEventAny* ignored)
724 {
725         if (output_controls.size() > 0 ) {
726                 screen_update_connection.disconnect();
727         }
728         return false;
729 }
730
731 void
732 GenericPluginUI::output_update ()
733 {
734         for (vector<ControlUI*>::iterator i = output_controls.begin(); i != output_controls.end(); ++i) {
735                 float val = plugin->get_parameter ((*i)->parameter().id());
736                 char buf[32];
737                 snprintf (buf, sizeof(buf), "%.2f", val);
738                 (*i)->display_label->set_text (buf);
739
740                 /* autoscaling for the meter */
741                 if ((*i)->meterinfo && (*i)->meterinfo->packed) {
742                         
743                         if (val < (*i)->meterinfo->min) {
744                                 if ((*i)->meterinfo->min_unbound)
745                                         (*i)->meterinfo->min = val;
746                                 else
747                                         val = (*i)->meterinfo->min;
748                         }
749
750                         if (val > (*i)->meterinfo->max) {
751                                 if ((*i)->meterinfo->max_unbound)
752                                         (*i)->meterinfo->max = val;
753                                 else
754                                         val = (*i)->meterinfo->max;
755                         }
756                         
757                         if ((*i)->meterinfo->max > (*i)->meterinfo->min ) {
758                                 float lval = (val - (*i)->meterinfo->min) / ((*i)->meterinfo->max - (*i)->meterinfo->min) ;
759                                 (*i)->meterinfo->meter->set (lval );
760                         }
761                 }
762         }
763 }
764
765 vector<string> 
766 GenericPluginUI::setup_scale_values(guint32 port_index, ControlUI* cui)
767 {
768         vector<string> enums;
769         boost::shared_ptr<LadspaPlugin> lp;
770 #ifdef HAVE_LV2
771         boost::shared_ptr<LV2Plugin> lv2p;
772 #endif
773
774         if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
775                 // all LADPSA plugins have a numeric unique ID
776                 uint32_t id = atol (lp->unique_id().c_str());
777
778                 cui->combo_map = new std::map<string, float>;
779                 lrdf_defaults* defaults = lrdf_get_scale_values(id, port_index);
780                 if (defaults)   {
781                         for (uint32_t i = 0; i < defaults->count; ++i) {
782                                 enums.push_back(defaults->items[i].label);
783                                 pair<string, float> newpair;
784                                 newpair.first = defaults->items[i].label;
785                                 newpair.second = defaults->items[i].value;
786                                 cui->combo_map->insert(newpair);
787                         }
788
789                         lrdf_free_setting_values(defaults);
790                 }
791
792 #ifdef HAVE_LV2
793         } else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
794
795                 SLV2Port port = lv2p->slv2_port(port_index);
796                 SLV2ScalePoints points = slv2_port_get_scale_points(lv2p->slv2_plugin(), port);
797                 cui->combo_map = new std::map<string, float>;
798         
799                 for (unsigned i=0; i < slv2_scale_points_size(points); ++i) {
800                         SLV2ScalePoint p = slv2_scale_points_get_at(points, i);
801                         SLV2Value label = slv2_scale_point_get_label(p);
802                         SLV2Value value = slv2_scale_point_get_value(p);
803                         if (label && (slv2_value_is_float(value) || slv2_value_is_int(value))) {
804                                 enums.push_back(slv2_value_as_string(label));
805                                 pair<string, float> newpair;
806                                 newpair.first = slv2_value_as_string(label);
807                                 newpair.second = slv2_value_as_float(value);
808                                 cui->combo_map->insert(newpair);
809                         }
810                 }
811
812                 slv2_scale_points_free(points);
813 #endif
814         }
815         
816
817         return enums;
818 }