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