Added Write All, Play All, etc. automation buttons to generic plugin UI
[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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <climits>
25 #include <cerrno>
26 #include <cmath>
27 #include <string>
28 #include <vector>
29
30 #include "pbd/stl_delete.h"
31 #include "pbd/xml++.h"
32 #include "pbd/failed_constructor.h"
33
34 #include <gtkmm2ext/click_box.h>
35 #include <gtkmm2ext/fastmeter.h>
36 #include <gtkmm2ext/barcontroller.h>
37 #include <gtkmm2ext/utils.h>
38 #include <gtkmm2ext/doi.h>
39 #include <gtkmm2ext/slider_controller.h>
40
41 #include "ardour/plugin.h"
42 #include "ardour/plugin_insert.h"
43 #include "ardour/session.h"
44 #include "ardour/value_as_string.h"
45
46 #include "ardour_ui.h"
47 #include "prompter.h"
48 #include "plugin_ui.h"
49 #include "gui_thread.h"
50 #include "automation_controller.h"
51
52 #include "i18n.h"
53
54 using namespace std;
55 using namespace ARDOUR;
56 using namespace PBD;
57 using namespace Gtkmm2ext;
58 using namespace Gtk;
59
60 GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrollable)
61         : PlugUIBase (pi)
62         , button_table (initial_button_rows, initial_button_cols)
63         , output_table (initial_output_rows, initial_output_cols)
64         , hAdjustment(0.0, 0.0, 0.0)
65         , vAdjustment(0.0, 0.0, 0.0)
66         , scroller_view(hAdjustment, vAdjustment)
67         , automation_menu (0)
68         , is_scrollable(scrollable)
69 {
70         set_name ("PluginEditor");
71         set_border_width (10);
72         //set_homogeneous (false);
73
74         pack_start (main_contents, true, true);
75         settings_box.set_homogeneous (false);
76
77         HBox* constraint_hbox = manage (new HBox);
78         HBox* smaller_hbox = manage (new HBox);
79         HBox* automation_hbox = manage (new HBox);
80         smaller_hbox->set_spacing (4);
81         automation_hbox->set_spacing (4);
82         Label* combo_label = manage (new Label (_("<span size=\"large\">Presets</span>")));
83         combo_label->set_use_markup (true);
84
85         latency_button.add (latency_label);
86         latency_button.signal_clicked().connect (sigc::mem_fun (*this, &PlugUIBase::latency_button_clicked));
87         set_latency_label ();
88
89         smaller_hbox->pack_start (latency_button, false, false, 10);
90         smaller_hbox->pack_start (_preset_combo, false, false);
91         smaller_hbox->pack_start (_preset_modified, false, false);
92         smaller_hbox->pack_start (add_button, false, false);
93         smaller_hbox->pack_start (save_button, false, false);
94         smaller_hbox->pack_start (delete_button, false, false);
95         smaller_hbox->pack_start (bypass_button, false, true);
96         
97         automation_manual_all_button.set_label(_("Manual All"));
98         automation_play_all_button.set_label(_("Play All"));
99         automation_write_all_button.set_label(_("Write All"));
100         automation_touch_all_button.set_label(_("Touch All"));
101         
102         Gtk::Alignment *al = Gtk::manage(new Gtk::Alignment());
103     al->set_size_request(6, 2);
104     automation_hbox->pack_start(*al, false, true);
105     
106         automation_hbox->pack_start (automation_manual_all_button, false, false);
107         automation_hbox->pack_start (automation_play_all_button, false, false);
108         automation_hbox->pack_start (automation_write_all_button, false, false);
109         automation_hbox->pack_start (automation_touch_all_button, false, false);
110
111         constraint_hbox->set_spacing (5);
112         constraint_hbox->set_homogeneous (false);
113
114         VBox* v1_box = manage (new VBox);
115         VBox* v2_box = manage (new VBox);
116         pack_end (plugin_analysis_expander, false, false);
117         if (!plugin->get_docs().empty()) {
118                 pack_end (description_expander, false, false);
119         }
120
121         v1_box->pack_start (*smaller_hbox, false, true);
122         v1_box->pack_start (*automation_hbox, false, true);
123         v2_box->pack_start (focus_button, false, true);
124
125         main_contents.pack_start (settings_box, false, false);
126
127         constraint_hbox->pack_end (*v2_box, false, false);
128         constraint_hbox->pack_end (*v1_box, false, false);
129
130         main_contents.pack_start (*constraint_hbox, false, false);
131
132         if (is_scrollable ) {
133                 scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
134                 scroller.set_name ("PluginEditor");
135                 scroller_view.set_name("PluginEditor");
136                 scroller_view.add (hpacker);
137                 scroller.add (scroller_view);
138
139                 main_contents.pack_start (scroller, true, true);
140
141         } else {
142                 main_contents.pack_start (hpacker, false, false);
143         }
144
145         pi->ActiveChanged.connect (active_connection, invalidator (*this), boost::bind (&GenericPluginUI::processor_active_changed, this, boost::weak_ptr<Processor>(pi)), gui_context());
146
147         bypass_button.set_active (!pi->active());
148
149         prefheight = 0;
150         build ();
151 }
152
153 GenericPluginUI::~GenericPluginUI ()
154 {
155         if (output_controls.size() > 0) {
156                 screen_update_connection.disconnect();
157         }
158 }
159
160 // Some functions for calculating the 'similarity' of two plugin
161 // control labels.
162
163 static int get_number(string label) {
164 static const char *digits = "0123456789";
165 int value = -1;
166
167         std::size_t first_digit_pos = label.find_first_of(digits);
168         if (first_digit_pos != string::npos) {
169                 // found some digits: there's a number in there somewhere
170                 stringstream s;
171                 s << label.substr(first_digit_pos);
172                 s >> value;
173         }
174         return value;
175 }
176
177 static int match_or_digit(char c1, char c2) {
178         return c1 == c2 || (isdigit(c1) && isdigit(c2));
179 }       
180
181 static std::size_t matching_chars_at_head(const string s1, const string s2) {
182 std::size_t length, n = 0;
183
184         length = min(s1.length(), s2.length());
185         while (n < length) {
186                 if (!match_or_digit(s1[n], s2[n]))
187                         break;
188                 n++;
189         } 
190         return n;
191 }
192
193 static std::size_t matching_chars_at_tail(const string s1, const string s2) {
194 std::size_t s1pos, s2pos, n = 0;
195
196         s1pos = s1.length();
197         s2pos = s2.length();
198         while (s1pos-- > 0 && s2pos-- > 0) {
199                 if (!match_or_digit(s1[s1pos], s2[s2pos])       )
200                         break;
201                 n++;
202         } 
203         return n;
204 }
205
206 static const guint32 min_controls_per_column = 17, max_controls_per_column = 24;
207 static const float default_similarity_threshold = 0.3;
208
209 void
210 GenericPluginUI::build ()
211 {
212         guint32 i = 0;
213         guint32 x = 0;
214         Frame* frame;
215         Frame* bt_frame;
216         VBox* box;
217         int output_row, output_col;
218         int button_row, button_col;
219         int output_rows, output_cols;
220         int button_rows, button_cols;
221
222         hpacker.set_spacing (10);
223
224         output_rows = initial_output_rows;
225         output_cols = initial_output_cols;
226         button_rows = initial_button_rows;
227         button_cols = initial_button_cols;
228         output_row = 0;
229         button_row = 0;
230         output_col = 0;
231         button_col = 0;
232
233         button_table.set_homogeneous (false);
234         button_table.set_row_spacings (2);
235         button_table.set_col_spacings (2);
236         output_table.set_homogeneous (true);
237         output_table.set_row_spacings (2);
238         output_table.set_col_spacings (2);
239         button_table.set_border_width (5);
240         output_table.set_border_width (5);
241
242         hpacker.set_border_width (10);
243
244         bt_frame = manage (new Frame);
245         bt_frame->set_name ("BaseFrame");
246         bt_frame->set_label (_("Switches"));
247         bt_frame->add (button_table);
248         hpacker.pack_start(*bt_frame, true, true);
249
250         box = manage (new VBox);
251         box->set_border_width (5);
252         box->set_spacing (1);
253
254         frame = manage (new Frame);
255         frame->set_name ("BaseFrame");
256         frame->set_label (_("Controls"));
257         frame->add (*box);
258         hpacker.pack_start(*frame, true, true);
259
260         std::vector<ControlUI *> control_uis;
261
262         // Build a ControlUI for each control port
263         for (i = 0; i < plugin->parameter_count(); ++i) {
264
265                 if (plugin->parameter_is_control (i)) {
266
267                         /* Don't show latency control ports */
268
269                         const Evoral::Parameter param(PluginAutomation, 0, i);
270                         if (plugin->describe_parameter (param) == X_("latency")) {
271                                 continue;
272                         }
273
274                         if (plugin->describe_parameter (param) == X_("hidden")) {
275                                 continue;
276                         }
277
278                         const float value = plugin->get_parameter(i);
279
280                         ControlUI* cui;
281
282                         boost::shared_ptr<ARDOUR::AutomationControl> c
283                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
284                                         insert->control(param));
285
286                         ParameterDescriptor desc;
287                         plugin->get_parameter_descriptor(i, desc);
288                         if ((cui = build_control_ui (param, desc, c, value, plugin->parameter_is_input(i))) == 0) {
289                                 error << string_compose(_("Plugin Editor: could not build control element for port %1"), i) << endmsg;
290                                 continue;
291                         }
292
293                         const std::string param_docs = plugin->get_parameter_docs(i);
294                         if (!param_docs.empty()) {
295                                 ARDOUR_UI::instance()->set_tip(cui, param_docs.c_str());
296                         }
297
298                         control_uis.push_back(cui);
299                 }
300         }
301
302         // Build a ControlUI for each property
303         const Plugin::PropertyDescriptors& descs = plugin->get_supported_properties();
304         for (Plugin::PropertyDescriptors::const_iterator d = descs.begin(); d != descs.end(); ++d) {
305                 const ParameterDescriptor& desc = d->second;
306                 const Evoral::Parameter    param(PluginPropertyAutomation, 0, desc.key);
307
308                 boost::shared_ptr<ARDOUR::AutomationControl> c
309                         = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
310                                 insert->control(param));
311
312                 if (!c) {
313                         error << string_compose(_("Plugin Editor: no control for property %1"), desc.key) << endmsg;
314                         continue;
315                 }
316
317                 ControlUI* cui = build_control_ui(param, desc, c, c->get_value(), true);
318                 if (!cui) {
319                         error << string_compose(_("Plugin Editor: could not build control element for property %1"),
320                                                 desc.key) << endmsg;
321                         continue;
322                 }
323
324                 control_uis.push_back(cui);
325         }
326         if (!descs.empty()) {
327                 plugin->announce_property_values();
328         }
329         
330         // Connect automation *_all buttons
331         automation_manual_all_button.signal_clicked().connect(boost::bind(&GenericPluginUI::automation_manual_all, this, control_uis));
332         automation_play_all_button.signal_clicked().connect(boost::bind(&GenericPluginUI::automation_play_all, this, control_uis));
333     automation_write_all_button.signal_clicked().connect(boost::bind(&GenericPluginUI::automation_write_all, this, control_uis));
334     automation_touch_all_button.signal_clicked().connect(boost::bind(&GenericPluginUI::automation_touch_all, this, control_uis));
335
336         // Add special controls to UI, and build list of normal controls to be layed out later
337         std::vector<ControlUI *> cui_controls_list;
338         for (i = 0; i < control_uis.size(); ++i) {
339                 ControlUI* cui = control_uis[i];
340
341                 if (cui->controller || cui->clickbox || cui->combo) {
342                         // Get all of the controls into a list, so that
343                         // we can lay them out a bit more nicely later.
344                         cui_controls_list.push_back(cui);
345                 } else if (cui->button || cui->file_button) {
346
347                         if (!is_scrollable && button_row == button_rows) {
348                                 button_row = 0;
349                                 if (++button_col == button_cols) {
350                                         button_cols += 2;
351                                         button_table.resize (button_rows, button_cols);
352                                 }
353                         }
354
355                         button_table.attach (*cui, button_col, button_col + 1, button_row, button_row+1,
356                                              FILL|EXPAND, FILL);
357                         button_row++;
358
359                 } else if (cui->display) {
360
361                         output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1,
362                                              FILL|EXPAND, FILL);
363
364                         // TODO: The meters should be divided into multiple rows
365
366                         if (++output_col == output_cols) {
367                                 output_cols ++;
368                                 output_table.resize (output_rows, output_cols);
369                         }
370                 }
371         }
372
373         // Iterate over the list of controls to find which adjacent controls
374         // are similar enough to be grouped together.
375         
376         string label, previous_label = "";
377         std::vector<int> numbers_in_labels(cui_controls_list.size());
378         
379         std::vector<float> similarity_scores(cui_controls_list.size());
380         float most_similar = 0.0, least_similar = 1.0;
381         
382         i = 0;
383         for (vector<ControlUI*>::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) {
384                 label = (*cuip)->label.get_text();
385                 numbers_in_labels[i] = get_number(label);
386
387                 if (i > 0) {
388                         // A hand-wavy calculation of how similar this control's
389                         // label is to the previous.
390                         similarity_scores[i] = 
391                                 (float) ( 
392                                         ( matching_chars_at_head(label, previous_label) + 
393                                           matching_chars_at_tail(label, previous_label) +
394                                           1 
395                                         ) 
396                                 ) / (label.length() + previous_label.length());
397                         if (numbers_in_labels[i] >= 0) {
398                                 similarity_scores[i] += (numbers_in_labels[i] == numbers_in_labels[i-1]);
399                         }
400                         least_similar = min(least_similar, similarity_scores[i]);
401                         most_similar  = max(most_similar, similarity_scores[i]);
402                 } else {
403                         similarity_scores[0] = 1.0;
404                 }
405
406                 // cerr << "label: " << label << " sim: " << fixed << setprecision(3) << similarity_scores[i] << " num: " << numbers_in_labels[i] << endl;
407                 previous_label = label;                                
408         }
409
410         
411         // cerr << "most similar: " << most_similar << ", least similar: " << least_similar << endl;
412         float similarity_threshold;
413         
414         if (most_similar > 1.0) {
415                 similarity_threshold = default_similarity_threshold;
416         } else {
417                 similarity_threshold = most_similar - (1 - default_similarity_threshold);
418         }
419         
420         // Now iterate over the list of controls to display them, placing an
421         // HSeparator between controls of less than a certain similarity, and 
422         // starting a new column when necessary.
423         
424         i = 0;
425         for (vector<ControlUI*>::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) {
426
427                 ControlUI* cui = *cuip;
428                 
429                 if (!is_scrollable) {
430                         x++;
431                 }
432                 
433                 if (x > max_controls_per_column || similarity_scores[i] <= similarity_threshold) {
434                         if (x > min_controls_per_column) {
435                                 frame = manage (new Frame);
436                                 frame->set_name ("BaseFrame");
437                                 frame->set_label (_("Controls"));
438                                 box = manage (new VBox);
439                                 box->set_border_width (5);
440                                 box->set_spacing (1);
441                                 frame->add (*box);
442                                 hpacker.pack_start(*frame, true, true);
443                                 x = 0;
444                         } else {
445                                 HSeparator *split = new HSeparator();
446                                 split->set_size_request(-1, 5);
447                                 box->pack_start(*split, false, false, 0);
448                         }
449
450                 }
451                 box->pack_start (*cui, false, false);
452         }
453
454         if (is_scrollable) {
455                 prefheight = 30 * i;
456         }
457
458         if (box->children().empty()) {
459                 hpacker.remove (*frame);
460         }
461
462         if (button_table.children().empty()) {
463                 hpacker.remove (*bt_frame);
464         }
465
466         if (!output_table.children().empty()) {
467                 frame = manage (new Frame);
468                 frame->set_name ("BaseFrame");
469                 frame->set_label(_("Meters"));
470                 frame->add (output_table);
471                 hpacker.pack_end (*frame, true, true);
472         }
473
474         output_update ();
475
476         output_table.show_all ();
477         button_table.show_all ();
478 }
479
480 GenericPluginUI::ControlUI::ControlUI (const Evoral::Parameter& p)
481         : param(p)
482         , automate_button (X_("")) // force creation of a label
483         , file_button(NULL)
484 {
485         automate_button.set_name ("PluginAutomateButton");
486         ARDOUR_UI::instance()->set_tip (automate_button, _("Automation control"));
487
488         /* XXX translators: use a string here that will be at least as long
489            as the longest automation label (see ::automation_state_changed()
490            below). be sure to include a descender.
491         */
492
493         set_size_request_to_display_given_text (automate_button, _("Mgnual"), 15, 10);
494
495         ignore_change = 0;
496         display = 0;
497         button = 0;
498         clickbox = 0;
499         meterinfo = 0;
500 }
501
502 GenericPluginUI::ControlUI::~ControlUI()
503 {
504         if (meterinfo) {
505                 delete meterinfo->meter;
506                 delete meterinfo;
507         }
508 }
509
510 void
511 GenericPluginUI::automation_state_changed (ControlUI* cui)
512 {
513         /* update button label */
514
515         // don't lock to avoid deadlock because we're triggered by
516         // AutomationControl::Changed() while the automation lock is taken
517         switch (insert->get_parameter_automation_state (cui->parameter()) & (ARDOUR::Off|Play|Touch|Write)) {
518         case ARDOUR::Off:
519                 cui->automate_button.set_label (S_("Automation|Manual"));
520                 break;
521         case Play:
522                 cui->automate_button.set_label (_("Play"));
523                 break;
524         case Write:
525                 cui->automate_button.set_label (_("Write"));
526                 break;
527         case Touch:
528                 cui->automate_button.set_label (_("Touch"));
529                 break;
530         default:
531                 cui->automate_button.set_label (_("???"));
532                 break;
533         }
534 }
535
536 bool
537 GenericPluginUI::integer_printer (char buf[32], Adjustment &adj, ControlUI* cui)
538 {
539         float const        v   = cui->control->interface_to_internal(adj.get_value ());
540         const std::string& str = ARDOUR::value_as_string(cui->control->desc(), Variant(v));
541         const size_t       len = str.copy(buf, 31);
542         buf[len] = '\0';
543         return true;
544 }
545
546 bool
547 GenericPluginUI::midinote_printer (char buf[32], Adjustment &adj, ControlUI* cui)
548 {
549         float const        v   = cui->control->interface_to_internal(adj.get_value ());
550         const std::string& str = ARDOUR::value_as_string(cui->control->desc(), Variant(v));
551         const size_t       len = str.copy(buf, 31);
552         buf[len] = '\0';
553         return true;
554 }
555
556 void
557 GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param)
558 {
559         plugin->print_parameter (param, buf, len);
560 }
561
562 /** Build a ControlUI for a parameter/property.
563  * Note that mcontrol may be NULL for outputs.
564  */
565 GenericPluginUI::ControlUI*
566 GenericPluginUI::build_control_ui (const Evoral::Parameter&             param,
567                                    const ParameterDescriptor&           desc,
568                                    boost::shared_ptr<AutomationControl> mcontrol,
569                                    float                                value,
570                                    bool                                 is_input)
571 {
572         ControlUI* control_ui = 0;
573
574         control_ui = manage (new ControlUI (param));
575         control_ui->combo = 0;
576         control_ui->control = mcontrol;
577         control_ui->update_pending = false;
578         control_ui->label.set_text (desc.label);
579         control_ui->label.set_alignment (0.0, 0.5);
580         control_ui->label.set_name ("PluginParameterLabel");
581
582         control_ui->set_spacing (5);
583
584         Gtk::Requisition req (control_ui->automate_button.size_request());
585
586         if (is_input) {
587
588                 /* See if there any named values for our input value */
589                 control_ui->scale_points = desc.scale_points;
590
591                 /* If this parameter is an integer, work out the number of distinct values
592                    it can take on (assuming that lower and upper values are allowed).
593                 */
594                 int const steps = desc.integer_step ? (desc.upper - desc.lower + 1) / desc.step : 0;
595
596                 if (control_ui->scale_points && ((steps && int (control_ui->scale_points->size()) == steps) || desc.enumeration)) {
597                         
598                         /* Either:
599                          *   a) There is a label for each possible value of this input, or
600                          *   b) This port is marked as being an enumeration.
601                          */
602
603                         std::vector<std::string> labels;
604                         for (
605                                 ARDOUR::ScalePoints::const_iterator i = control_ui->scale_points->begin();
606                                 i != control_ui->scale_points->end();
607                                 ++i) {
608                                 
609                                 labels.push_back(i->first);
610                         }
611
612                         control_ui->combo = new Gtk::ComboBoxText();
613                         set_popdown_strings(*control_ui->combo, labels);
614                         control_ui->combo->signal_changed().connect(
615                                 sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::control_combo_changed),
616                                             control_ui));
617                         mcontrol->Changed.connect(control_connections, invalidator(*this),
618                                                   boost::bind(&GenericPluginUI::ui_parameter_changed,
619                                                               this, control_ui),
620                                                   gui_context());
621                         control_ui->pack_start(control_ui->label, true, true);
622                         control_ui->pack_start(*control_ui->combo, false, true);
623
624                         update_control_display(control_ui);
625
626                         return control_ui;
627                 }
628
629                 if (desc.toggled) {
630
631                         /* Build a button */
632
633                         control_ui->button = manage (new ToggleButton ());
634                         control_ui->button->set_name ("PluginEditorButton");
635                         control_ui->button->set_size_request (20, 20);
636
637                         control_ui->pack_start (control_ui->label, true, true);
638                         control_ui->pack_start (*control_ui->button, false, true);
639                         control_ui->pack_start (control_ui->automate_button, false, false);
640
641                         control_ui->button->signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::control_port_toggled), control_ui));
642                         control_ui->automate_button.signal_clicked().connect (bind (mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui));
643
644                         mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::toggle_parameter_changed, this, control_ui), gui_context());
645                         mcontrol->alist()->automation_state_changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui), gui_context());
646
647                         if (value > 0.5){
648                                 control_ui->button->set_active(true);
649                         }
650
651                         automation_state_changed (control_ui);
652
653                         return control_ui;
654                 }
655
656                 if (desc.datatype == Variant::PATH) {
657
658                         /* Build a file selector button */
659
660                         // Create/add controller
661                         control_ui->file_button = manage(new Gtk::FileChooserButton(Gtk::FILE_CHOOSER_ACTION_OPEN));
662                         control_ui->file_button->set_title(desc.label);
663
664                         control_ui->pack_start (control_ui->label, true, true);
665                         control_ui->pack_start (*control_ui->file_button, true, true);
666
667                         // Connect signals (TODO: do this via the Control)
668                         control_ui->file_button->signal_file_set().connect(
669                                 sigc::bind(sigc::mem_fun(*this, &GenericPluginUI::set_property),
670                                            desc, control_ui->file_button));
671                         plugin->PropertyChanged.connect(*this, invalidator(*this),
672                                                         boost::bind(&GenericPluginUI::property_changed, this, _1, _2),
673                                                         gui_context());
674
675                         _property_controls.insert(std::make_pair(desc.key, control_ui->file_button));
676                         control_ui->file_button = control_ui->file_button;
677
678                         return control_ui;
679                 }
680
681                 /* create the controller */
682
683                 if (mcontrol) {
684                         control_ui->controller = AutomationController::create(insert, mcontrol->parameter(), desc, mcontrol);
685                 }
686
687                 /* XXX this code is not right yet, because it doesn't handle
688                    the absence of bounds in any sensible fashion.
689                 */
690
691                 Adjustment* adj = control_ui->controller->adjustment();
692
693                 if (desc.integer_step) {
694                         control_ui->clickbox = new ClickBox (adj, "PluginUIClickBox", desc.enumeration);
695                         Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->clickbox, "g9999999", 2, 2);
696                         if (desc.unit == ParameterDescriptor::MIDI_NOTE) {
697                                 control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::midinote_printer), control_ui));
698                         } else {
699                                 control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::integer_printer), control_ui));
700                         }
701                 } else {
702                         //sigc::slot<void,char*,uint32_t> pslot = sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::print_parameter), (uint32_t) port_index);
703
704                         control_ui->controller->set_size_request (200, req.height);
705                         control_ui->controller->set_name (X_("ProcessorControlSlider"));
706
707                         control_ui->controller->StartGesture.connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::start_touch), control_ui));
708                         control_ui->controller->StopGesture.connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::stop_touch), control_ui));
709
710                 }
711
712                 adj->set_value (mcontrol->internal_to_interface(value));
713
714                 /* XXX memory leak: SliderController not destroyed by ControlUI
715                    destructor, and manage() reports object hierarchy
716                    ambiguity.
717                 */
718
719                 control_ui->pack_start (control_ui->label, true, true);
720                 if (desc.integer_step) {
721                         control_ui->pack_start (*control_ui->clickbox, false, false);
722                 } else {
723                         control_ui->pack_start (*control_ui->controller, false, false);
724                 }
725
726                 control_ui->pack_start (control_ui->automate_button, false, false);
727                 control_ui->automate_button.signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui));
728
729                 automation_state_changed (control_ui);
730
731                 mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::ui_parameter_changed, this, control_ui), gui_context());
732                 mcontrol->alist()->automation_state_changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui), gui_context());
733
734                 input_controls.push_back (control_ui);
735
736         } else if (!is_input) {
737
738                 control_ui->display = manage (new EventBox);
739                 control_ui->display->set_name ("ParameterValueDisplay");
740
741                 control_ui->display_label = manage (new Label);
742
743                 control_ui->display_label->set_name ("ParameterValueDisplay");
744
745                 control_ui->display->add (*control_ui->display_label);
746                 Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->display, "-888.8g", 2, 6);
747
748                 control_ui->display->show_all ();
749
750                 /* set up a meter */
751                 /* TODO: only make a meter if the port is Hinted for it */
752
753                 MeterInfo * info = new MeterInfo();
754                 control_ui->meterinfo = info;
755
756                 info->meter = new FastMeter (
757                                 5, 5, FastMeter::Vertical, 0,
758                                 0x0000aaff,
759                                 0x008800ff, 0x008800ff,
760                                 0x00ff00ff, 0x00ff00ff,
761                                 0xcccc00ff, 0xcccc00ff,
762                                 0xffaa00ff, 0xffaa00ff,
763                                 0xff0000ff,
764                                 ARDOUR_UI::config()->get_MeterBackgroundBot(),
765                                 ARDOUR_UI::config()->get_MeterBackgroundTop()
766                                 );
767
768                 info->min_unbound = desc.min_unbound;
769                 info->max_unbound = desc.max_unbound;
770
771                 info->min = desc.lower;
772                 info->max = desc.upper;
773
774                 control_ui->vbox = manage (new VBox);
775                 control_ui->hbox = manage (new HBox);
776
777                 control_ui->hbox->set_spacing(1);
778                 control_ui->vbox->set_spacing(3);
779
780                 control_ui->label.set_angle(90);
781                 control_ui->hbox->pack_start (control_ui->label, false, false);
782                 control_ui->hbox->pack_start (*info->meter, false, false);
783
784                 control_ui->vbox->pack_start (*control_ui->hbox, false, false);
785
786                 control_ui->vbox->pack_start (*control_ui->display, false, false);
787
788                 control_ui->pack_start (*control_ui->vbox);
789
790                 control_ui->meterinfo->meter->show_all();
791                 control_ui->meterinfo->packed = true;
792
793                 output_controls.push_back (control_ui);
794         }
795
796         if (mcontrol) {
797                 mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::ui_parameter_changed, this, control_ui), gui_context());
798         }
799
800         return control_ui;
801 }
802
803 void
804 GenericPluginUI::start_touch (GenericPluginUI::ControlUI* cui)
805 {
806         cui->control->start_touch (cui->control->session().transport_frame());
807 }
808
809 void
810 GenericPluginUI::stop_touch (GenericPluginUI::ControlUI* cui)
811 {
812         cui->control->stop_touch (false, cui->control->session().transport_frame());
813 }
814
815 void
816 GenericPluginUI::astate_clicked (ControlUI* cui)
817 {
818         using namespace Menu_Helpers;
819
820         if (automation_menu == 0) {
821                 automation_menu = manage (new Menu);
822                 automation_menu->set_name ("ArdourContextMenu");
823         }
824
825         MenuList& items (automation_menu->items());
826
827         items.clear ();
828         items.push_back (MenuElem (S_("Automation|Manual"),
829                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) ARDOUR::Off, cui)));
830         items.push_back (MenuElem (_("Play"),
831                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Play, cui)));
832         items.push_back (MenuElem (_("Write"),
833                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Write, cui)));
834         items.push_back (MenuElem (_("Touch"),
835                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Touch, cui)));
836
837         automation_menu->popup (1, gtk_get_current_event_time());
838 }
839
840 void 
841 GenericPluginUI::automation_manual_all(std::vector<ControlUI *>& controls)
842 {
843     for (std::vector<ControlUI *>::iterator control_it = controls.begin(); control_it != controls.end(); ++control_it)
844     {
845         set_automation_state((AutoState) ARDOUR::Off, (*control_it));
846     }
847 }
848
849 void 
850 GenericPluginUI::automation_play_all(std::vector<ControlUI *>& controls)
851 {
852     for (std::vector<ControlUI *>::iterator control_it = controls.begin(); control_it != controls.end(); ++control_it)
853     {
854         set_automation_state((AutoState) Play, (*control_it));
855     }
856 }
857
858 void 
859 GenericPluginUI::automation_write_all(std::vector<ControlUI *>& controls)
860 {
861     for (std::vector<ControlUI *>::iterator control_it = controls.begin(); control_it != controls.end(); ++control_it)
862     {
863         set_automation_state((AutoState) Write, (*control_it));
864     }
865 }
866
867 void 
868 GenericPluginUI::automation_touch_all(std::vector<ControlUI *>& controls)
869 {
870     for (std::vector<ControlUI *>::iterator control_it = controls.begin(); control_it != controls.end(); ++control_it)
871     {
872         set_automation_state((AutoState) Touch, (*control_it));
873     }
874 }
875
876 void
877 GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui)
878 {
879         insert->set_parameter_automation_state (cui->parameter(), state);
880 }
881
882 void
883 GenericPluginUI::toggle_parameter_changed (ControlUI* cui)
884 {
885         float val = cui->control->get_value();
886
887         if (!cui->ignore_change) {
888                 if (val > 0.5) {
889                         cui->button->set_active (true);
890                         cui->button->set_name ("PluginEditorButton-active");
891                 } else {
892                         cui->button->set_active (false);
893                         cui->button->set_name ("PluginEditorButton");
894                 }
895         }
896 }
897
898 void
899 GenericPluginUI::ui_parameter_changed (ControlUI* cui)
900 {
901         if (!cui->update_pending) {
902                 cui->update_pending = true;
903                 Gtkmm2ext::UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&GenericPluginUI::update_control_display, this, cui));
904         }
905 }
906
907 void
908 GenericPluginUI::update_control_display (ControlUI* cui)
909 {
910         /* XXX how do we handle logarithmic stuff here ? */
911
912         cui->update_pending = false;
913
914         float val = cui->control->get_value();
915
916         cui->ignore_change++;
917
918         if (cui->combo && cui->scale_points) {
919                 for (ARDOUR::ScalePoints::iterator it = cui->scale_points->begin(); it != cui->scale_points->end(); ++it) {
920                         if (it->second == val) {
921                                 cui->combo->set_active_text(it->first);
922                                 break;
923                         }
924                 }
925         } else if (cui->button) {
926
927                 if (val > 0.5) {
928                         cui->button->set_active (true);
929                 } else {
930                         cui->button->set_active (false);
931                 }
932         }
933
934         if( cui->controller ) {
935             cui->controller->display_effective_value();
936         }
937
938
939         /*} else {
940                 if (cui->logarithmic) {
941                         val = log(val);
942                 }
943                 if (val != cui->adjustment->get_value()) {
944                         cui->adjustment->set_value (val);
945                 }
946         }*/
947         cui->ignore_change--;
948 }
949
950 void
951 GenericPluginUI::control_port_toggled (ControlUI* cui)
952 {
953         cui->ignore_change++;
954         const bool active = cui->button->get_active();
955         if (active) {
956                 cui->button->set_name ("PluginEditorButton-active");
957         } else {
958                 cui->button->set_name ("PluginEditorButton");
959         }
960         insert->automation_control (cui->parameter())->set_value (active);
961         cui->ignore_change--;
962 }
963
964 void
965 GenericPluginUI::control_combo_changed (ControlUI* cui)
966 {
967         if (!cui->ignore_change && cui->scale_points) {
968                 string value = cui->combo->get_active_text();
969                 insert->automation_control (cui->parameter())->set_value ((*cui->scale_points)[value]);
970         }
971 }
972
973 bool
974 GenericPluginUI::start_updating (GdkEventAny*)
975 {
976         if (output_controls.size() > 0 ) {
977                 screen_update_connection.disconnect();
978                 screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect
979                         (sigc::mem_fun(*this, &GenericPluginUI::output_update));
980         }
981         return false;
982 }
983
984 bool
985 GenericPluginUI::stop_updating (GdkEventAny*)
986 {
987         for (vector<ControlUI*>::iterator i = input_controls.begin(); i != input_controls.end(); ++i) {
988                 (*i)->controller->stop_updating ();
989         }
990
991         if (output_controls.size() > 0 ) {
992                 screen_update_connection.disconnect();
993         }
994
995         return false;
996 }
997
998 void
999 GenericPluginUI::output_update ()
1000 {
1001         for (vector<ControlUI*>::iterator i = output_controls.begin(); i != output_controls.end(); ++i) {
1002                 float val = plugin->get_parameter ((*i)->parameter().id());
1003                 char buf[32];
1004                 snprintf (buf, sizeof(buf), "%.2f", val);
1005                 (*i)->display_label->set_text (buf);
1006
1007                 /* autoscaling for the meter */
1008                 if ((*i)->meterinfo && (*i)->meterinfo->packed) {
1009
1010                         if (val < (*i)->meterinfo->min) {
1011                                 if ((*i)->meterinfo->min_unbound)
1012                                         (*i)->meterinfo->min = val;
1013                                 else
1014                                         val = (*i)->meterinfo->min;
1015                         }
1016
1017                         if (val > (*i)->meterinfo->max) {
1018                                 if ((*i)->meterinfo->max_unbound)
1019                                         (*i)->meterinfo->max = val;
1020                                 else
1021                                         val = (*i)->meterinfo->max;
1022                         }
1023
1024                         if ((*i)->meterinfo->max > (*i)->meterinfo->min ) {
1025                                 float lval = (val - (*i)->meterinfo->min) / ((*i)->meterinfo->max - (*i)->meterinfo->min) ;
1026                                 (*i)->meterinfo->meter->set (lval );
1027                         }
1028                 }
1029         }
1030 }
1031
1032 void
1033 GenericPluginUI::set_property (const ParameterDescriptor& desc,
1034                                Gtk::FileChooserButton*    widget)
1035 {
1036         plugin->set_property(desc.key, Variant(Variant::PATH, widget->get_filename()));
1037 }
1038
1039 void
1040 GenericPluginUI::property_changed (uint32_t key, const Variant& value)
1041 {
1042         PropertyControls::iterator c = _property_controls.find(key);
1043         if (c != _property_controls.end()) {
1044                 c->second->set_filename(value.get_path());
1045         } else {
1046                 std::cerr << "warning: property change for property with no control" << std::endl;
1047         }
1048 }