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