Fix ExportFormatSpecification copy-c'tor
[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 <gtkmm/separator.h>
31
32 #include "pbd/stl_delete.h"
33 #include "pbd/unwind.h"
34 #include "pbd/xml++.h"
35 #include "pbd/failed_constructor.h"
36
37 #include "evoral/midi_events.h"
38 #include "evoral/PatchChange.hpp"
39
40 #include "midi++/midnam_patch.h"
41
42 #include "ardour/midi_patch_manager.h"
43 #include "ardour/midi_track.h"
44 #include "ardour/plugin.h"
45 #include "ardour/plugin_insert.h"
46 #include "ardour/session.h"
47 #include "ardour/value_as_string.h"
48
49 #include "gtkmm2ext/menu_elems.h"
50 #include "gtkmm2ext/utils.h"
51 #include "gtkmm2ext/doi.h"
52
53 #include "widgets/ardour_knob.h"
54 #include "widgets/fastmeter.h"
55 #include "widgets/slider_controller.h"
56 #include "widgets/tooltips.h"
57
58 #include "plugin_ui.h"
59 #include "plugin_display.h"
60 #include "gui_thread.h"
61 #include "automation_controller.h"
62 #include "gain_meter.h"
63 #include "timers.h"
64 #include "ui_config.h"
65
66 #include "pbd/i18n.h"
67
68 using namespace std;
69 using namespace ARDOUR;
70 using namespace PBD;
71 using namespace Gtkmm2ext;
72 using namespace ArdourWidgets;
73 using namespace Gtk;
74 using namespace ARDOUR_UI_UTILS;
75
76 GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrollable)
77         : PlugUIBase (pi)
78         , automation_menu (0)
79         , is_scrollable(scrollable)
80         , _plugin_pianokeyboard_expander (_("MIDI Keyboard"))
81         , _piano (0)
82         , _pianomm (0)
83         , _piano_velocity (*manage (new Adjustment (100, 1, 127, 1, 16)))
84         , _piano_channel (*manage (new Adjustment (0, 1, 16, 1, 1)))
85 {
86         set_name ("PluginEditor");
87         set_border_width (10);
88         //set_homogeneous (false);
89
90         pack_start (main_contents, true, true);
91         settings_box.set_homogeneous (false);
92
93         HBox* constraint_hbox = manage (new HBox);
94         HBox* smaller_hbox = manage (new HBox);
95         smaller_hbox->set_spacing (4);
96         Label* combo_label = manage (new Label (_("<span size=\"large\">Presets</span>")));
97         combo_label->set_use_markup (true);
98
99         latency_button.signal_clicked.connect (sigc::mem_fun (*this, &PlugUIBase::latency_button_clicked));
100         set_latency_label ();
101
102         smaller_hbox->pack_start (latency_button, false, false, 4);
103         smaller_hbox->pack_start (pin_management_button, false, false, 4);
104         smaller_hbox->pack_start (_preset_combo, false, false);
105         smaller_hbox->pack_start (_preset_modified, false, false);
106         smaller_hbox->pack_start (add_button, false, false);
107         smaller_hbox->pack_start (save_button, false, false);
108         smaller_hbox->pack_start (delete_button, false, false);
109         if (pi->controls().size() > 0) {
110                 smaller_hbox->pack_start (reset_button, false, false, 4);
111         }
112         smaller_hbox->pack_start (bypass_button, false, true, 4);
113
114         automation_manual_all_button.set_text(_("Manual"));
115         automation_manual_all_button.set_name (X_("generic button"));
116         automation_play_all_button.set_text(_("Play"));
117         automation_play_all_button.set_name (X_("generic button"));
118         automation_write_all_button.set_text(_("Write"));
119         automation_write_all_button.set_name (X_("generic button"));
120         automation_touch_all_button.set_text(_("Touch"));
121         automation_touch_all_button.set_name (X_("generic button"));
122         automation_latch_all_button.set_text(_("Touch"));
123         automation_latch_all_button.set_name (X_("generic button"));
124
125         constraint_hbox->set_spacing (5);
126         constraint_hbox->set_homogeneous (false);
127
128         VBox* v1_box = manage (new VBox);
129         VBox* v2_box = manage (new VBox);
130         if (pi->is_instrument ()) {
131                 _piano = (PianoKeyboard*)piano_keyboard_new();
132                 _pianomm = Glib::wrap((GtkWidget*)_piano);
133                 _pianomm->set_flags(Gtk::CAN_FOCUS);
134                 _pianomm->add_events(Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
135
136                 g_signal_connect (G_OBJECT (_piano), "note-on", G_CALLBACK (GenericPluginUI::_note_on_event_handler), this);
137                 g_signal_connect (G_OBJECT (_piano), "note-off", G_CALLBACK (GenericPluginUI::_note_off_event_handler), this);
138
139                 HBox* box = manage (new HBox);
140                 box->pack_start (*manage (new Label (_("Channel:"))), false, false);
141                 box->pack_start (_piano_channel, false, false);
142                 box->pack_start (*manage (new Label (_("Velocity:"))), false, false);
143                 box->pack_start (_piano_velocity, false, false);
144
145                 Box* box2 = manage (new HBox ());
146                 box2->pack_start (*box, true, false);
147
148                 _pianobox.set_spacing (4);
149                 _pianobox.pack_start (*box2, true, true);
150                 _pianobox.pack_start (*_pianomm, true, true);
151
152                 _plugin_pianokeyboard_expander.set_expanded(false);
153                 _plugin_pianokeyboard_expander.property_expanded().signal_changed().connect( sigc::mem_fun(*this, &GenericPluginUI::toggle_pianokeyboard));
154
155                 pack_end (_plugin_pianokeyboard_expander, false, false);
156         } else {
157                 pack_end (plugin_analysis_expander, false, false);
158         }
159
160         if (insert->provides_stats ()) {
161                 pack_end (cpuload_expander, false, false);
162         }
163
164         if (!plugin->get_docs().empty()) {
165                 pack_end (description_expander, false, false);
166         }
167
168         v1_box->set_spacing (6);
169         v1_box->pack_start (*smaller_hbox, false, true);
170         if (pi->controls().size() > 0) {
171                 HBox* automation_hbox = manage (new HBox);
172                 automation_hbox->set_spacing (6);
173                 Label* l = manage (new Label (_("All Automation")));
174                 l->set_alignment (1.0, 0.5);
175                 automation_hbox->pack_start (*l, true, true);
176                 automation_hbox->pack_start (automation_manual_all_button, false, false);
177                 automation_hbox->pack_start (automation_play_all_button, false, false);
178                 automation_hbox->pack_start (automation_write_all_button, false, false);
179                 automation_hbox->pack_start (automation_touch_all_button, false, false);
180                 v1_box->pack_start (*automation_hbox, false, true);
181         }
182         v2_box->pack_start (focus_button, false, true);
183
184         main_contents.pack_start (settings_box, false, false);
185
186         constraint_hbox->pack_end (*v2_box, false, false);
187         constraint_hbox->pack_end (*v1_box, false, false);
188
189         main_contents.pack_start (*constraint_hbox, false, false);
190
191         pi->ActiveChanged.connect (active_connection, invalidator (*this), boost::bind (&GenericPluginUI::processor_active_changed, this, boost::weak_ptr<Processor>(pi)), gui_context());
192
193         bypass_button.set_active (!pi->enabled());
194
195         /* ScrolledWindow will wrap hpacker in a Viewport */
196         scroller.add (hpacker);
197         Viewport* view = static_cast<Viewport*>(scroller.get_child());
198         view->set_shadow_type(Gtk::SHADOW_NONE);
199
200         main_contents.pack_start (scroller, true, true);
201
202         prefheight = -1;
203         build ();
204
205         if (insert->plugin()->has_midnam() && insert->plugin()->knows_bank_patch()) {
206                 build_midi_table ();
207         }
208
209         if (is_scrollable) {
210                 scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
211                 scroller.set_name ("PluginEditor");
212         } else {
213                 scroller.signal_size_request().connect (sigc::mem_fun(*this, &GenericPluginUI::scroller_size_request));
214                 scroller.signal_realize().connect (sigc::mem_fun(scroller, &Widget::queue_resize));
215                 scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_NEVER);
216         }
217
218         main_contents.show ();
219 }
220
221 GenericPluginUI::~GenericPluginUI ()
222 {
223         if (output_controls.size() > 0) {
224                 screen_update_connection.disconnect();
225         }
226         delete _pianomm;
227 }
228
229 void
230 GenericPluginUI::scroller_size_request (Gtk::Requisition* a)
231 {
232         GtkRequisition request = hpacker.size_request();
233
234         Glib::RefPtr<Gdk::Window> window (scroller.get_window());
235         Glib::RefPtr<Gdk::Screen> screen;
236
237         if (window) {
238                 screen = window->get_screen();
239         }
240
241         if (!screen) {
242                 a->width = min(1024, request.width);
243                 return;
244         }
245
246         Gdk::Rectangle monitor;
247         const int monitor_num = screen->get_monitor_at_window (window);
248         screen->get_monitor_geometry (
249                         (monitor_num < 0) ? 0 : monitor_num,
250                         monitor);
251
252         const int maximum_width = monitor.get_width() * 0.9;
253
254         if (request.width > maximum_width) {
255                 for (vector<ControlUI*>::const_iterator cuip = input_controls.begin();
256                                                         cuip != input_controls.end();
257                                                         ++cuip) {
258                         if (!(*cuip)->short_autostate)
259                                 set_short_autostate(*cuip, true);
260                 }
261                 request = hpacker.size_request();
262         }
263
264         a->width = min(request.width, maximum_width);
265 }
266
267 // Some functions for calculating the 'similarity' of two plugin
268 // control labels.
269
270 static int get_number(string label) {
271 static const char *digits = "0123456789";
272 int value = -1;
273
274         std::size_t first_digit_pos = label.find_first_of(digits);
275         if (first_digit_pos != string::npos) {
276                 // found some digits: there's a number in there somewhere
277                 stringstream s;
278                 s << label.substr(first_digit_pos);
279                 s >> value;
280         }
281         return value;
282 }
283
284 static int match_or_digit(char c1, char c2) {
285         return c1 == c2 || (isdigit(c1) && isdigit(c2));
286 }
287
288 static std::size_t matching_chars_at_head(const string s1, const string s2) {
289 std::size_t length, n = 0;
290
291         length = min(s1.length(), s2.length());
292         while (n < length) {
293                 if (!match_or_digit(s1[n], s2[n]))
294                         break;
295                 n++;
296         }
297         return n;
298 }
299
300 static std::size_t matching_chars_at_tail(const string s1, const string s2) {
301 std::size_t s1pos, s2pos, n = 0;
302
303         s1pos = s1.length();
304         s2pos = s2.length();
305         while (s1pos-- > 0 && s2pos-- > 0) {
306                 if (!match_or_digit(s1[s1pos], s2[s2pos])       )
307                         break;
308                 n++;
309         }
310         return n;
311 }
312
313 static const guint32 min_controls_per_column = 17, max_controls_per_column = 24;
314 static const float default_similarity_threshold = 0.3;
315
316 void
317 GenericPluginUI::build ()
318 {
319         std::vector<ControlUI *> control_uis;
320         bool grid_avail = false;
321         bool grid_veto = false;
322
323         // Build a ControlUI for each control port
324         for (size_t i = 0; i < plugin->parameter_count(); ++i) {
325
326                 if (plugin->parameter_is_control (i)) {
327
328                         /* Don't show latency control ports */
329
330                         const Evoral::Parameter param(PluginAutomation, 0, i);
331                         if (plugin->describe_parameter (param) == X_("latency")) {
332                                 continue;
333                         }
334
335                         if (plugin->describe_parameter (param) == X_("hidden")) {
336                                 continue;
337                         }
338
339                         const float value = plugin->get_parameter(i);
340
341                         ControlUI* cui;
342                         Plugin::UILayoutHint hint;
343
344                         if (plugin->get_layout(i, hint)) {
345                                 grid_avail = true;
346                         } else {
347                                 grid_veto = true;
348                         }
349
350                         boost::shared_ptr<ARDOUR::AutomationControl> c
351                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
352                                         insert->control(param));
353
354                         ParameterDescriptor desc;
355                         plugin->get_parameter_descriptor(i, desc);
356                         if ((cui = build_control_ui (param, desc, c, value, plugin->parameter_is_input(i), hint.knob)) == 0) {
357                                 error << string_compose(_("Plugin Editor: could not build control element for port %1"), i) << endmsg;
358                                 continue;
359                         }
360
361                         if (grid_avail && !grid_veto) {
362                                 cui->x0 = hint.x0;
363                                 cui->x1 = hint.x1;
364                                 cui->y0 = hint.y0;
365                                 cui->y1 = hint.y1;
366                         }
367
368                         const std::string param_docs = plugin->get_parameter_docs(i);
369                         if (!param_docs.empty()) {
370                                 set_tooltip(cui, param_docs.c_str());
371                         }
372
373                         control_uis.push_back(cui);
374                 }
375         }
376
377         bool grid = grid_avail && !grid_veto;
378
379         // Build a ControlUI for each property
380         const Plugin::PropertyDescriptors& descs = plugin->get_supported_properties();
381         for (Plugin::PropertyDescriptors::const_iterator d = descs.begin(); d != descs.end(); ++d) {
382                 const ParameterDescriptor& desc = d->second;
383                 const Evoral::Parameter    param(PluginPropertyAutomation, 0, desc.key);
384
385                 boost::shared_ptr<ARDOUR::AutomationControl> c
386                         = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
387                                 insert->control(param));
388
389                 if (!c) {
390                         error << string_compose(_("Plugin Editor: no control for property %1"), desc.key) << endmsg;
391                         continue;
392                 }
393
394                 ControlUI* cui = build_control_ui(param, desc, c, c->get_value(), true);
395                 if (!cui) {
396                         error << string_compose(_("Plugin Editor: could not build control element for property %1"),
397                                                 desc.key) << endmsg;
398                         continue;
399                 }
400
401                 control_uis.push_back(cui);
402         }
403         if (!descs.empty()) {
404                 /* Listen for property changes that are not notified normally because
405                  * AutomationControl has only support for numeric values currently.
406                  * The only case is Variant::PATH for now */
407                 plugin->PropertyChanged.connect(*this, invalidator(*this),
408                                 boost::bind(&GenericPluginUI::path_property_changed, this, _1, _2),
409                                 gui_context());
410
411                 /* and query current property value */
412                 plugin->announce_property_values();
413         }
414
415         if (grid) {
416                 custom_layout (control_uis);
417         } else {
418                 automatic_layout (control_uis);
419         }
420
421         output_update ();
422
423         automation_manual_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Off));
424         automation_play_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Play));
425         automation_write_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Write));
426         automation_touch_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Touch));
427         automation_latch_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Latch));
428
429         /* XXX This is a workaround for AutomationControl not knowing about preset loads */
430         plugin->PresetLoaded.connect (*this, invalidator (*this), boost::bind (&GenericPluginUI::update_input_displays, this), gui_context ());
431 }
432
433
434 void
435 GenericPluginUI::automatic_layout (const std::vector<ControlUI*>& control_uis)
436 {
437         guint32 x = 0;
438
439         static const int32_t initial_button_rows = 12;
440         static const int32_t initial_button_cols = 1;
441         static const int32_t initial_output_rows = 1;
442         static const int32_t initial_output_cols = 4;
443
444         Gtk::Table* button_table = manage (new Gtk::Table (initial_button_rows, initial_button_cols));
445         Gtk::Table* output_table = manage (new Gtk::Table (initial_output_rows, initial_output_cols));
446
447         Frame* frame;
448         Frame* bt_frame;
449         VBox* box;
450         int output_row, output_col;
451         int button_row, button_col;
452         int output_rows, output_cols;
453         int button_rows, button_cols;
454
455         hpacker.set_spacing (10);
456         hpacker.set_border_width (10);
457
458         output_rows = initial_output_rows;
459         output_cols = initial_output_cols;
460         button_rows = initial_button_rows;
461         button_cols = initial_button_cols;
462         output_row = 0;
463         button_row = 0;
464         output_col = 0;
465         button_col = 0;
466
467         button_table->set_homogeneous (false);
468         button_table->set_row_spacings (2);
469         button_table->set_col_spacings (2);
470         button_table->set_border_width (5);
471
472         output_table->set_homogeneous (true);
473         output_table->set_row_spacings (2);
474         output_table->set_col_spacings (2);
475         output_table->set_border_width (5);
476
477
478         bt_frame = manage (new Frame);
479         bt_frame->set_name ("BaseFrame");
480         bt_frame->set_label (_("Switches"));
481         bt_frame->add (*button_table);
482         hpacker.pack_start(*bt_frame, true, true);
483
484         box = manage (new VBox);
485         box->set_border_width (5);
486         box->set_spacing (1);
487
488         frame = manage (new Frame);
489         frame->set_name ("BaseFrame");
490         frame->set_label (_("Controls"));
491         frame->add (*box);
492         hpacker.pack_start(*frame, true, true);
493
494         // Add special controls to UI, and build list of normal controls to be layed out later
495         std::vector<ControlUI *> cui_controls_list;
496         for (size_t i = 0; i < control_uis.size(); ++i) {
497                 ControlUI* cui = control_uis[i];
498
499                 if (cui->button || cui->file_button) {
500
501                         if (!is_scrollable && button_row == button_rows) {
502                                 button_row = 0;
503                                 if (++button_col == button_cols) {
504                                         button_cols += 2;
505                                         button_table->resize (button_rows, button_cols);
506                                 }
507                         }
508
509                         button_table->attach (*cui, button_col, button_col + 1, button_row, button_row+1,
510                                              FILL|EXPAND, FILL);
511                         button_row++;
512
513                 } else if (cui->controller || cui->combo) {
514                         // Get all of the controls into a list, so that
515                         // we can lay them out a bit more nicely later.
516                         cui_controls_list.push_back(cui);
517
518                 } else if (cui->display) {
519
520                         output_table->attach (*cui, output_col, output_col + 1, output_row, output_row+1,
521                                              FILL|EXPAND, FILL);
522
523                         // TODO: The meters should be divided into multiple rows
524
525                         if (++output_col == output_cols) {
526                                 output_cols ++;
527                                 output_table->resize (output_rows, output_cols);
528                         }
529                 }
530         }
531
532         // Iterate over the list of controls to find which adjacent controls
533         // are similar enough to be grouped together.
534
535         string label, previous_label = "";
536         std::vector<int> numbers_in_labels(cui_controls_list.size());
537
538         std::vector<float> similarity_scores(cui_controls_list.size());
539         float most_similar = 0.0, least_similar = 1.0;
540
541         size_t i = 0;
542         for (vector<ControlUI*>::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) {
543                 label = (*cuip)->label.get_text();
544                 numbers_in_labels[i] = get_number(label);
545
546                 if (i > 0) {
547                         // A hand-wavy calculation of how similar this control's
548                         // label is to the previous.
549                         similarity_scores[i] =
550                                 (float) (
551                                         ( matching_chars_at_head(label, previous_label) +
552                                           matching_chars_at_tail(label, previous_label) +
553                                           1
554                                         )
555                                 ) / (label.length() + previous_label.length());
556                         if (numbers_in_labels[i] >= 0) {
557                                 similarity_scores[i] += (numbers_in_labels[i] == numbers_in_labels[i-1]);
558                         }
559                         least_similar = min(least_similar, similarity_scores[i]);
560                         most_similar  = max(most_similar, similarity_scores[i]);
561                 } else {
562                         similarity_scores[0] = 1.0;
563                 }
564
565                 // cerr << "label: " << label << " sim: " << fixed << setprecision(3) << similarity_scores[i] << " num: " << numbers_in_labels[i] << endl;
566                 previous_label = label;
567         }
568
569
570         // cerr << "most similar: " << most_similar << ", least similar: " << least_similar << endl;
571         float similarity_threshold;
572
573         if (most_similar > 1.0) {
574                 similarity_threshold = default_similarity_threshold;
575         } else {
576                 similarity_threshold = most_similar - (1 - default_similarity_threshold);
577         }
578
579         // Now iterate over the list of controls to display them, placing an
580         // HSeparator between controls of less than a certain similarity, and
581         // starting a new column when necessary.
582
583         i = 0;
584         for (vector<ControlUI*>::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) {
585
586                 ControlUI* cui = *cuip;
587
588                 if (!is_scrollable) {
589                         x++;
590                 }
591
592                 if (x > max_controls_per_column || similarity_scores[i] <= similarity_threshold) {
593                         if (x > min_controls_per_column) {
594                                 frame = manage (new Frame);
595                                 frame->set_name ("BaseFrame");
596                                 frame->set_label (_("Controls"));
597                                 box = manage (new VBox);
598                                 box->set_border_width (5);
599                                 box->set_spacing (1);
600                                 frame->add (*box);
601                                 hpacker.pack_start(*frame, true, true);
602                                 x = 0;
603                         } else {
604                                 HSeparator *split = new HSeparator();
605                                 split->set_size_request(-1, 5);
606                                 box->pack_start(*split, false, false, 0);
607                         }
608
609                 }
610                 box->pack_start (*cui, false, false);
611         }
612
613         if (is_scrollable && i > 0) {
614                 prefheight = 30 * i;
615         }
616
617         if (box->children().empty()) {
618                 hpacker.remove (*frame);
619         }
620
621         if (button_table->children().empty()) {
622                 hpacker.remove (*bt_frame);
623                 delete button_table;
624         } else {
625                 button_table->show_all ();
626         }
627
628         if (!output_table->children().empty()) {
629                 frame = manage (new Frame);
630                 frame->set_name ("BaseFrame");
631                 frame->set_label(_("Meters"));
632                 frame->add (*output_table);
633                 hpacker.pack_end (*frame, true, true);
634                 output_table->show_all ();
635         } else {
636                 delete output_table;
637         }
638
639         if (plugin->has_inline_display () && plugin->inline_display_in_gui ()) {
640                 PluginDisplay* pd = manage (new PluginDisplay (plugin, 300));
641                 hpacker.pack_end (*pd, true, true);
642         }
643         show_all();
644
645 }
646
647 void
648 GenericPluginUI::custom_layout (const std::vector<ControlUI*>& control_uis)
649 {
650         Gtk::Table* layout = manage (new Gtk::Table ());
651
652         for (vector<ControlUI*>::const_iterator i = control_uis.begin(); i != control_uis.end(); ++i) {
653                 ControlUI* cui = *i;
654                 if (cui->x0 < 0 || cui->y0 < 0) {
655                         continue;
656                 }
657                 layout->attach (*cui, cui->x0, cui->x1, cui->y0, cui->y1, FILL, SHRINK, 2, 2);
658         }
659         hpacker.pack_start (*layout, true, true);
660
661         if (plugin->has_inline_display () && plugin->inline_display_in_gui ()) {
662                 PluginDisplay* pd = manage (new PluginDisplay (plugin, 300));
663                 hpacker.pack_end (*pd, true, true);
664         }
665 }
666
667 void
668 GenericPluginUI::build_midi_table ()
669 {
670         Gtk::Table* pgm_table = manage (new Gtk::Table (8, 5));
671
672         pgm_table->set_homogeneous (false);
673         pgm_table->set_row_spacings (2);
674         pgm_table->set_col_spacings (2);
675         pgm_table->set_border_width (5);
676         pgm_table->set_col_spacing (2, 10);
677
678         Frame* frame = manage (new Frame);
679         frame->set_name ("BaseFrame");
680         if (dynamic_cast<MidiTrack*> (insert->owner())) {
681                 frame->set_label (_("MIDI Programs (sent to track)"));
682         } else {
683                 frame->set_label (_("MIDI Programs (volatile)"));
684         }
685         frame->add (*pgm_table);
686         hpacker.pack_start (*frame, false, false);
687
688         for (uint8_t chn = 0; chn < 16; ++chn) {
689                 int col = 3 * (chn / 8);
690                 int row = chn % 8;
691                 ArdourDropdown* cui = manage (new ArdourWidgets::ArdourDropdown ());
692                 cui->set_sizing_text ("Stereo Grand Piano");
693                 cui->set_text_ellipsize (Pango::ELLIPSIZE_END);
694                 cui->set_layout_ellipsize_width (PANGO_SCALE * 112 * UIConfiguration::instance ().get_ui_scale ());
695                 midi_pgmsel.push_back (cui);
696                 pgm_table->attach (*manage (new Label (string_compose ("C%1:", (int)(chn + 1)), ALIGN_RIGHT)), col, col + 1, row, row+1, FILL, SHRINK);
697                 pgm_table->attach (*cui, col + 1, col + 2, row, row+1, SHRINK, SHRINK);
698         }
699
700         insert->plugin ()->read_midnam();
701
702         midi_refill_patches ();
703
704         insert->plugin()->BankPatchChange.connect (
705                         midi_connections, invalidator (*this),
706                         boost::bind (&GenericPluginUI::midi_bank_patch_change, this, _1),
707                         gui_context());
708
709         insert->plugin()->UpdatedMidnam.connect (
710                         midi_connections, invalidator (*this),
711                         boost::bind (&GenericPluginUI::midi_refill_patches, this),
712                         gui_context());
713 }
714
715 void
716 GenericPluginUI::midi_refill_patches ()
717 {
718         assert (midi_pgmsel.size() == 16);
719
720         pgm_names.clear ();
721
722         const std::string model = insert->plugin ()->midnam_model ();
723         std::string mode;
724         const std::list<std::string> device_modes = MIDI::Name::MidiPatchManager::instance().custom_device_mode_names_by_model (model);
725         if (device_modes.size() > 0) {
726                 mode = device_modes.front();
727         }
728
729         for (uint8_t chn = 0; chn < 16; ++chn) {
730                 midi_pgmsel[chn]->clear_items ();
731                 boost::shared_ptr<MIDI::Name::ChannelNameSet> cns =
732                         MIDI::Name::MidiPatchManager::instance().find_channel_name_set (model, mode, chn);
733
734                 if (cns) {
735                         using namespace Menu_Helpers;
736                         using namespace Gtkmm2ext;
737
738                         for (MIDI::Name::ChannelNameSet::PatchBanks::const_iterator i = cns->patch_banks().begin(); i != cns->patch_banks().end(); ++i) {
739                                 const MIDI::Name::PatchNameList& patches = (*i)->patch_name_list ();
740                                 for (MIDI::Name::PatchNameList::const_iterator j = patches.begin(); j != patches.end(); ++j) {
741                                         const std::string pgm = (*j)->name ();
742                                         MIDI::Name::PatchPrimaryKey const& key = (*j)->patch_primary_key ();
743                                         const uint32_t bp = (key.bank() << 7) | key.program();
744                                         midi_pgmsel[chn]->AddMenuElem (MenuElemNoMnemonic (pgm, sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::midi_bank_patch_select), chn, bp)));
745                                         pgm_names[bp] = pgm;
746                                 }
747                         }
748                 }
749
750                 midi_bank_patch_change (chn);
751         }
752 }
753
754 void
755 GenericPluginUI::midi_bank_patch_change (uint8_t chn)
756 {
757         assert (chn < 16 && midi_pgmsel.size() == 16);
758         uint32_t bankpgm = insert->plugin()->bank_patch (chn);
759         if (bankpgm == UINT32_MAX) {
760                 midi_pgmsel[chn]->set_text (_("--Unset--"));
761         } else {
762                 int bank = bankpgm >> 7;
763                 int pgm = bankpgm & 127;
764                 if (pgm_names.find (bankpgm) != pgm_names.end ()) {
765                         midi_pgmsel[chn]->set_text (pgm_names[bankpgm]);
766                 } else {
767                         midi_pgmsel[chn]->set_text (string_compose ("Bank %1,%2 Pgm %3",
768                                                 (bank >> 7) + 1, (bank & 127) + 1, pgm +1));
769                 }
770         }
771 }
772
773 void
774 GenericPluginUI::midi_bank_patch_select (uint8_t chn, uint32_t bankpgm)
775 {
776         int bank = bankpgm >> 7;
777         int pgm = bankpgm & 127;
778         MidiTrack* mt = dynamic_cast<MidiTrack*> (insert->owner());
779         if (mt) {
780                 /* send to track */
781                 boost::shared_ptr<AutomationControl> bank_msb = mt->automation_control(Evoral::Parameter (MidiCCAutomation, chn, MIDI_CTL_MSB_BANK), true);
782                 boost::shared_ptr<AutomationControl> bank_lsb = mt->automation_control(Evoral::Parameter (MidiCCAutomation, chn, MIDI_CTL_LSB_BANK), true);
783                 boost::shared_ptr<AutomationControl> program = mt->automation_control(Evoral::Parameter (MidiPgmChangeAutomation, chn), true);
784
785                 bank_msb->set_value (bank >> 7, PBD::Controllable::NoGroup);
786                 bank_lsb->set_value (bank & 127, PBD::Controllable::NoGroup);
787                 program->set_value (pgm, PBD::Controllable::NoGroup);
788         } else {
789                 uint8_t event[3];
790                 event[0] = (MIDI_CMD_CONTROL | chn);
791                 event[1] = 0x00;
792                 event[2] = bank >> 7;
793                 insert->write_immediate_event (3, event);
794
795                 event[1] = 0x20;
796                 event[2] = bank & 127;
797                 insert->write_immediate_event (3, event);
798
799                 event[0] = (MIDI_CMD_PGM_CHANGE | chn);
800                 event[1] = pgm;
801                 insert->write_immediate_event (2, event);
802         }
803 }
804
805 GenericPluginUI::ControlUI::ControlUI (const Evoral::Parameter& p)
806         : param(p)
807         , automate_button (X_("")) // force creation of a label
808         , combo (0)
809         , file_button (0)
810         , spin_box (0)
811         , display (0)
812         , hbox (0)
813         , vbox (0)
814         , meterinfo (0)
815         , knobtable (0)
816 {
817         automate_button.set_name ("plugin automation state button");
818         set_tooltip (automate_button, _("Automation control"));
819
820         ignore_change = false;
821         update_pending = false;
822         button = false;
823
824         x0 = x1 = y0 = y1 = -1;
825 }
826
827 GenericPluginUI::ControlUI::~ControlUI()
828 {
829         if (meterinfo) {
830                 delete meterinfo->meter;
831                 delete meterinfo;
832         }
833 }
834
835 void
836 GenericPluginUI::set_short_autostate (ControlUI* cui, bool value)
837 {
838         cui->short_autostate = value;
839         if (value) {
840                 cui->automate_button.set_sizing_text("M");
841         } else {
842                 /* XXX translators: use a string here that will be at least as long
843                    as the longest automation label (see ::automation_state_changed()
844                    below). be sure to include a descender. */
845                 cui->automate_button.set_sizing_text(_("Mgnual"));
846         }
847         automation_state_changed(cui);
848 }
849
850 void
851 GenericPluginUI::automation_state_changed (ControlUI* cui)
852 {
853         /* update button label */
854
855         // don't lock to avoid deadlock because we're triggered by
856         // AutomationControl::Changed() while the automation lock is taken
857
858         AutoState state = insert->get_parameter_automation_state (cui->parameter());
859
860         cui->automate_button.set_active((state != ARDOUR::Off));
861
862         if (cui->short_autostate) {
863                 cui->automate_button.set_text (
864                                 GainMeterBase::astate_string (state));
865                 return;
866         }
867
868         switch (state & (ARDOUR::Off|Play|Touch|Write|Latch)) {
869         case ARDOUR::Off:
870                 cui->automate_button.set_text (S_("Automation|Manual"));
871                 break;
872         case Play:
873                 cui->automate_button.set_text (_("Play"));
874                 break;
875         case Write:
876                 cui->automate_button.set_text (_("Write"));
877                 break;
878         case Touch:
879                 cui->automate_button.set_text (_("Touch"));
880                 break;
881         case Latch:
882                 cui->automate_button.set_text (_("Latch"));
883                 break;
884         default:
885                 cui->automate_button.set_text (_("???"));
886                 break;
887         }
888 }
889
890 bool
891 GenericPluginUI::integer_printer (char buf[32], Adjustment &adj, ControlUI* cui)
892 {
893         float const        v   = cui->control->interface_to_internal(adj.get_value ());
894         const std::string& str = ARDOUR::value_as_string(cui->control->desc(), Variant(v));
895         const size_t       len = str.copy(buf, 31);
896         buf[len] = '\0';
897         return true;
898 }
899
900 bool
901 GenericPluginUI::midinote_printer (char buf[32], Adjustment &adj, ControlUI* cui)
902 {
903         float const        v   = cui->control->interface_to_internal(adj.get_value ());
904         const std::string& str = ARDOUR::value_as_string(cui->control->desc(), Variant(v));
905         const size_t       len = str.copy(buf, 31);
906         buf[len] = '\0';
907         return true;
908 }
909
910 void
911 GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param)
912 {
913         plugin->print_parameter (param, buf, len);
914 }
915
916 /** Build a ControlUI for a parameter/property.
917  * Note that mcontrol may be NULL for outputs.
918  */
919 GenericPluginUI::ControlUI*
920 GenericPluginUI::build_control_ui (const Evoral::Parameter&             param,
921                                    const ParameterDescriptor&           desc,
922                                    boost::shared_ptr<AutomationControl> mcontrol,
923                                    float                                value,
924                                    bool                                 is_input,
925                                    bool                                 use_knob)
926 {
927         ControlUI* control_ui = 0;
928
929         control_ui = manage (new ControlUI (param));
930         control_ui->combo = 0;
931         control_ui->control = mcontrol;
932         control_ui->label.set_text (desc.label);
933         control_ui->label.set_alignment (0.0, 0.5);
934         control_ui->label.set_name ("PluginParameterLabel");
935         control_ui->set_spacing (5);
936         set_short_autostate(control_ui, false);
937
938         if (is_input) {
939
940                 if (desc.datatype == Variant::PATH) {
941
942                         /* We shouldn't get that type for input ports */
943                         assert(param.type() == PluginPropertyAutomation);
944
945                         /* Build a file selector button */
946
947                         // Create/add controller
948                         control_ui->file_button = manage(new Gtk::FileChooserButton(Gtk::FILE_CHOOSER_ACTION_OPEN));
949                         control_ui->file_button->set_title(desc.label);
950
951                         if (use_knob) {
952                                 control_ui->knobtable = manage (new Table());
953                                 control_ui->pack_start(*control_ui->knobtable, true, false);
954                                 control_ui->knobtable->attach (control_ui->label, 0, 1, 0, 1);
955                                 control_ui->knobtable->attach (*control_ui->file_button, 0, 1, 1, 2);
956                         } else {
957                                 control_ui->pack_start (control_ui->label, false, true);
958                                 control_ui->pack_start (*control_ui->file_button, true, true);
959                         }
960
961                         // Monitor changes from the user.
962                         control_ui->file_button->signal_file_set().connect(
963                                 sigc::bind(sigc::mem_fun(*this, &GenericPluginUI::set_path_property),
964                                            desc, control_ui->file_button));
965
966                         /* Add the filebutton control to a map so that we can update it when
967                          * the corresponding property changes. This doesn't go through the usual
968                          * AutomationControls, because they don't support non-numeric values. */
969                         _filepath_controls.insert(std::make_pair(desc.key, control_ui->file_button));
970
971                         return control_ui;
972                 }
973
974                 assert(mcontrol);
975
976                 /* See if there any named values for our input value */
977                 control_ui->scale_points = desc.scale_points;
978
979                 /* If this parameter is an integer, work out the number of distinct values
980                    it can take on (assuming that lower and upper values are allowed).
981                 */
982                 int const steps = desc.integer_step ? (desc.upper - desc.lower + 1) / desc.step : 0;
983
984                 if (control_ui->scale_points && ((steps && int (control_ui->scale_points->size()) == steps) || desc.enumeration)) {
985
986                         /* Either:
987                          *   a) There is a label for each possible value of this input, or
988                          *   b) This port is marked as being an enumeration.
989                          */
990
991                         control_ui->combo = new ArdourDropdown();
992                         for (ARDOUR::ScalePoints::const_iterator i = control_ui->scale_points->begin();
993                              i != control_ui->scale_points->end();
994                              ++i) {
995                                 control_ui->combo->AddMenuElem(Menu_Helpers::MenuElem(
996                                                 i->first,
997                                                 sigc::bind(sigc::mem_fun(*this, &GenericPluginUI::control_combo_changed),
998                                                            control_ui,
999                                                            i->second)));
1000                         }
1001
1002                         control_ui->combo->set_controllable (mcontrol);
1003
1004                         update_control_display(control_ui);
1005
1006                 } else {
1007
1008                         /* create the controller */
1009
1010                         /* XXX memory leak: SliderController not destroyed by ControlUI
1011                          * destructor, and manage() reports object hierarchy
1012                          * ambiguity.
1013                          */
1014                         control_ui->controller = AutomationController::create(mcontrol->parameter(), desc, mcontrol, use_knob);
1015
1016                         /* Control UI's don't need the rapid timer workaround */
1017                         control_ui->controller->stop_updating ();
1018
1019                         /* XXX this code is not right yet, because it doesn't handle
1020                            the absence of bounds in any sensible fashion.
1021                         */
1022
1023                         Adjustment* adj = control_ui->controller->adjustment();
1024
1025                         if (desc.toggled) {
1026                                 ArdourButton* but = dynamic_cast<ArdourButton*> (control_ui->controller->widget());
1027                                 assert(but);
1028                                 but->set_tweaks(ArdourButton::Square);
1029                         } else if (use_knob) {
1030                                 /* Delay size request so that styles are gotten right */
1031                                 control_ui->controller->widget()->signal_size_request().connect(
1032                                                 sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::knob_size_request), control_ui));
1033                         } else {
1034                                 control_ui->controller->set_size_request (200, -1);
1035                                 control_ui->controller->set_name (X_("ProcessorControlSlider"));
1036                                 if (desc.integer_step) {
1037                                         AutomationBarController* abc = dynamic_cast <AutomationBarController*> (control_ui->controller->widget ());
1038                                         assert (abc);
1039                                         abc->set_digits (0);
1040                                 }
1041                         }
1042
1043                         if (!desc.integer_step && !desc.toggled && use_knob) {
1044                                 control_ui->spin_box = manage (new ArdourSpinner (mcontrol, adj));
1045                         }
1046
1047                         adj->set_value (mcontrol->internal_to_interface(value));
1048
1049                 }
1050
1051                 if (use_knob) {
1052                         set_short_autostate(control_ui, true);
1053
1054                         control_ui->label.set_alignment (0.5, 0.5);
1055                         control_ui->knobtable = manage (new Table());
1056                         control_ui->pack_start(*control_ui->knobtable, true, true);
1057
1058                         if (control_ui->combo) {
1059                                 control_ui->knobtable->attach (control_ui->label, 0, 1, 0, 1);
1060                                 control_ui->knobtable->attach (*control_ui->combo, 0, 1, 1, 2);
1061                         } else if (control_ui->spin_box) {
1062                                 ArdourKnob* knob = dynamic_cast<ArdourKnob*>(control_ui->controller->widget ());
1063                                 knob->set_tooltip_prefix (desc.label + ": ");
1064                                 Alignment *align = manage (new Alignment (.5, .5, 0, 0));
1065                                 align->add (*control_ui->controller);
1066                                 control_ui->knobtable->attach (*align, 0, 1, 0, 1, EXPAND, SHRINK, 1, 2);
1067                                 control_ui->knobtable->attach (*control_ui->spin_box, 0, 2, 1, 2);
1068                                 control_ui->knobtable->attach (control_ui->automate_button, 1, 2, 0, 1, SHRINK, SHRINK, 2, 0);
1069                         } else if (desc.toggled) {
1070                                 Alignment *align = manage (new Alignment (.5, .5, 0, 0));
1071                                 align->add (*control_ui->controller);
1072                                 control_ui->knobtable->attach (*align, 0, 2, 0, 1, EXPAND, SHRINK, 2, 2);
1073                                 control_ui->knobtable->attach (control_ui->label, 0, 1, 1, 2, FILL, SHRINK);
1074                                 control_ui->knobtable->attach (control_ui->automate_button, 1, 2, 1, 2, SHRINK, SHRINK, 2, 0);
1075                         } else {
1076                                 control_ui->knobtable->attach (*control_ui->controller, 0, 2, 0, 1);
1077                                 control_ui->knobtable->attach (control_ui->label, 0, 1, 1, 2, FILL, SHRINK);
1078                                 control_ui->knobtable->attach (control_ui->automate_button, 1, 2, 1, 2, SHRINK, SHRINK, 2, 0);
1079                         }
1080
1081                 } else {
1082
1083                         control_ui->pack_start (control_ui->label, true, true);
1084                         if (control_ui->combo) {
1085                                 control_ui->pack_start(*control_ui->combo, false, true);
1086                         } else if (control_ui->spin_box) {
1087                                 control_ui->pack_start (*control_ui->spin_box, false, false);
1088                                 control_ui->pack_start (*control_ui->controller, false, false);
1089                         } else {
1090                                 control_ui->pack_start (*control_ui->controller, false, false);
1091                         }
1092                         control_ui->pack_start (control_ui->automate_button, false, false);
1093                 }
1094
1095
1096                 if (mcontrol->flags () & Controllable::NotAutomatable) {
1097                         control_ui->automate_button.set_sensitive (false);
1098                         set_tooltip(control_ui->automate_button, _("This control cannot be automated"));
1099                 } else {
1100                         control_ui->automate_button.signal_button_press_event().connect (
1101                                         sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::astate_button_event),
1102                                                     control_ui),
1103                                         false);
1104                         mcontrol->alist()->automation_state_changed.connect (
1105                                         control_connections,
1106                                         invalidator (*this),
1107                                         boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui),
1108                                         gui_context());
1109                         input_controls_with_automation.push_back (control_ui);
1110                 }
1111
1112                 if (desc.toggled && !control_ui->combo) {
1113                         control_ui->button = true;
1114                         ArdourButton* but = dynamic_cast<ArdourButton*>(control_ui->controller->widget ());
1115                         assert (but);
1116                         but->set_name ("pluginui toggle");
1117                         update_control_display(control_ui);
1118                 }
1119
1120                 automation_state_changed (control_ui);
1121
1122                 /* Add to the list of CUIs that need manual update to workaround
1123                  * AutomationControl not knowing about preset loads */
1124                 input_controls.push_back (control_ui);
1125
1126         } else {
1127
1128                 control_ui->display = manage (new EventBox);
1129                 control_ui->display->set_name ("ParameterValueDisplay");
1130
1131                 control_ui->display_label = manage (new Label);
1132
1133                 control_ui->display_label->set_name ("ParameterValueDisplay");
1134
1135                 control_ui->display->add (*control_ui->display_label);
1136                 Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->display, "-888.8g", 2, 6);
1137
1138                 control_ui->display->show_all ();
1139
1140                 control_ui->vbox = manage (new VBox);
1141                 control_ui->vbox->set_spacing(3);
1142
1143                 if (desc.unit == ParameterDescriptor::MIDI_NOTE) {
1144                         control_ui->vbox->pack_end (*control_ui->display, false, false);
1145                         control_ui->vbox->pack_end (control_ui->label, false, false);
1146                 } else if (desc.integer_step || desc.enumeration) {
1147                         control_ui->vbox->pack_end (*control_ui->display, false, false);
1148                         control_ui->vbox->pack_end (control_ui->label, false, false);
1149                 } else {
1150                         /* set up a meter for float ports */
1151
1152                         MeterInfo * info = new MeterInfo();
1153                         control_ui->meterinfo = info;
1154
1155                         info->meter = new FastMeter (
1156                                         5, 5, FastMeter::Vertical, 0,
1157                                         0x0000aaff,
1158                                         0x008800ff, 0x008800ff,
1159                                         0x00ff00ff, 0x00ff00ff,
1160                                         0xcccc00ff, 0xcccc00ff,
1161                                         0xffaa00ff, 0xffaa00ff,
1162                                         0xff0000ff,
1163                                         UIConfiguration::instance().color ("meter background bottom"),
1164                                         UIConfiguration::instance().color ("meter background top")
1165                                         );
1166
1167                         control_ui->label.set_angle(90);
1168
1169                         HBox* center =  manage (new HBox);
1170                         center->set_spacing(1);
1171                         center->pack_start (control_ui->label, false, false);
1172                         center->pack_start (*info->meter, false, false);
1173
1174                         control_ui->hbox = manage (new HBox);
1175                         control_ui->hbox->pack_start (*center, true, false);
1176
1177                         // horizontally center this hbox in the vbox
1178                         control_ui->vbox->pack_start (*control_ui->hbox, false, false);
1179
1180                         control_ui->meterinfo->meter->show_all();
1181                         control_ui->meterinfo->packed = true;
1182                         control_ui->vbox->pack_start (*control_ui->display, false, false);
1183                 }
1184
1185                 control_ui->pack_start (*control_ui->vbox);
1186
1187                 output_controls.push_back (control_ui);
1188         }
1189
1190         if (mcontrol) {
1191                 mcontrol->Changed.connect(control_connections, invalidator(*this),
1192                                           boost::bind(&GenericPluginUI::ui_parameter_changed,
1193                                                       this, control_ui),
1194                                           gui_context());
1195         }
1196
1197         return control_ui;
1198 }
1199
1200 void
1201 GenericPluginUI::knob_size_request(Gtk::Requisition* req, ControlUI* cui) {
1202         Gtk::Requisition astate_req (cui->automate_button.size_request());
1203         const int size = (int) (astate_req.height * 1.5);
1204         req->width = max(req->width, size);
1205         req->height = max(req->height, size);
1206 }
1207
1208
1209 bool
1210 GenericPluginUI::astate_button_event (GdkEventButton* ev, ControlUI* cui)
1211 {
1212         if (ev->button != 1) {
1213                 return true;
1214         }
1215
1216         using namespace Menu_Helpers;
1217
1218         if (automation_menu == 0) {
1219                 automation_menu = manage (new Menu);
1220                 automation_menu->set_name ("ArdourContextMenu");
1221                 automation_menu->set_reserve_toggle_size(false);
1222         }
1223
1224         MenuList& items (automation_menu->items());
1225
1226         items.clear ();
1227         items.push_back (MenuElem (S_("Automation|Manual"),
1228                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) ARDOUR::Off, cui)));
1229         items.push_back (MenuElem (_("Play"),
1230                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Play, cui)));
1231         items.push_back (MenuElem (_("Write"),
1232                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Write, cui)));
1233         items.push_back (MenuElem (_("Touch"),
1234                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Touch, cui)));
1235         items.push_back (MenuElem (_("Latch"),
1236                                    sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Latch, cui)));
1237
1238         anchored_menu_popup(automation_menu, &cui->automate_button, cui->automate_button.get_text(),
1239                             1, ev->time);
1240
1241         return true;
1242 }
1243
1244 void
1245 GenericPluginUI::set_all_automation (AutoState as)
1246 {
1247         for (vector<ControlUI*>::iterator i = input_controls_with_automation.begin(); i != input_controls_with_automation.end(); ++i) {
1248                 set_automation_state (as, (*i));
1249         }
1250 }
1251
1252 void
1253 GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui)
1254 {
1255         insert->set_parameter_automation_state (cui->parameter(), state);
1256 }
1257
1258 void
1259 GenericPluginUI::ui_parameter_changed (ControlUI* cui)
1260 {
1261         if (!cui->update_pending) {
1262                 cui->update_pending = true;
1263                 Gtkmm2ext::UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&GenericPluginUI::update_control_display, this, cui));
1264         }
1265 }
1266
1267 void
1268 GenericPluginUI::update_control_display (ControlUI* cui)
1269 {
1270         /* XXX how do we handle logarithmic stuff here ? */
1271
1272         cui->update_pending = false;
1273
1274         float val = cui->control->get_value();
1275
1276         PBD::Unwinder<bool> (cui->ignore_change, true);
1277
1278         if (cui->combo && cui->scale_points) {
1279                 for (ARDOUR::ScalePoints::iterator it = cui->scale_points->begin(); it != cui->scale_points->end(); ++it) {
1280                         if (it->second == val) {
1281                                 cui->combo->set_text(it->first);
1282                                 break;
1283                         }
1284                 }
1285         } else if (cui->button) {
1286                 // AutomationController handles this
1287         }
1288
1289         if( cui->controller ) {
1290             cui->controller->display_effective_value();
1291         }
1292
1293
1294         /*} else {
1295                 if (cui->logarithmic) {
1296                         val = log(val);
1297                 }
1298                 if (val != cui->adjustment->get_value()) {
1299                         cui->adjustment->set_value (val);
1300                 }
1301         }*/
1302 }
1303
1304 void
1305 GenericPluginUI::update_input_displays ()
1306 {
1307         /* XXX This is a workaround for AutomationControl not knowing about preset loads */
1308         for (vector<ControlUI*>::iterator i = input_controls.begin();
1309              i != input_controls.end();
1310              ++i) {
1311                 update_control_display(*i);
1312         }
1313         return;
1314 }
1315
1316 void
1317 GenericPluginUI::control_combo_changed (ControlUI* cui, float value)
1318 {
1319         if (!cui->ignore_change) {
1320                 insert->automation_control (cui->parameter())->set_value (value, Controllable::NoGroup);
1321         }
1322 }
1323
1324 bool
1325 GenericPluginUI::start_updating (GdkEventAny*)
1326 {
1327         if (output_controls.size() > 0 ) {
1328                 screen_update_connection.disconnect();
1329                 screen_update_connection = Timers::super_rapid_connect (sigc::mem_fun(*this, &GenericPluginUI::output_update));
1330         }
1331         return false;
1332 }
1333
1334 bool
1335 GenericPluginUI::stop_updating (GdkEventAny*)
1336 {
1337         if (output_controls.size() > 0 ) {
1338                 screen_update_connection.disconnect();
1339         }
1340         return false;
1341 }
1342
1343 void
1344 GenericPluginUI::output_update ()
1345 {
1346         for (vector<ControlUI*>::iterator i = output_controls.begin(); i != output_controls.end(); ++i) {
1347                 float val = plugin->get_parameter ((*i)->parameter().id());
1348                 char buf[32];
1349                 boost::shared_ptr<ReadOnlyControl> c = insert->control_output ((*i)->parameter().id());
1350                 const std::string& str = ARDOUR::value_as_string(c->desc(), Variant(val));
1351                 size_t len = str.copy(buf, 31);
1352                 buf[len] = '\0';
1353                 (*i)->display_label->set_text (buf);
1354
1355                 if ((*i)->meterinfo && (*i)->meterinfo->packed) {
1356                         (*i)->meterinfo->meter->set (c->desc().to_interface (val));
1357                 }
1358         }
1359 }
1360
1361 void
1362 GenericPluginUI::set_path_property (const ParameterDescriptor& desc,
1363                                     Gtk::FileChooserButton*    widget)
1364 {
1365         plugin->set_property(desc.key, Variant(Variant::PATH, widget->get_filename()));
1366 }
1367
1368 void
1369 GenericPluginUI::path_property_changed (uint32_t key, const Variant& value)
1370 {
1371         FilePathControls::iterator c = _filepath_controls.find(key);
1372         if (c != _filepath_controls.end()) {
1373                 c->second->set_filename(value.get_path());
1374         } else {
1375                 std::cerr << "warning: property change for property with no control" << std::endl;
1376         }
1377 }
1378
1379 void
1380 GenericPluginUI::toggle_pianokeyboard ()
1381 {
1382         if (_plugin_pianokeyboard_expander.get_expanded()) {
1383                 _plugin_pianokeyboard_expander.add (_pianobox);
1384                 _pianobox.show_all ();
1385         } else {
1386                 const int child_height = _plugin_pianokeyboard_expander.get_child ()->get_height ();
1387                 _plugin_pianokeyboard_expander.get_child ()->hide ();
1388                 _plugin_pianokeyboard_expander.remove ();
1389
1390                 Gtk::Window *toplevel = (Gtk::Window*) _plugin_pianokeyboard_expander.get_ancestor (GTK_TYPE_WINDOW);
1391                 if (toplevel) {
1392                         Gtk::Requisition wr;
1393                         toplevel->get_size (wr.width, wr.height);
1394                         wr.height -= child_height;
1395                         toplevel->resize (wr.width, wr.height);
1396                 }
1397         }
1398 }
1399
1400 void
1401 GenericPluginUI::_note_on_event_handler(GtkWidget*, int note, gpointer arg)
1402 {
1403         ((GenericPluginUI*)arg)->note_on_event_handler(note);
1404 }
1405
1406 void
1407 GenericPluginUI::_note_off_event_handler(GtkWidget*, int note, gpointer arg)
1408 {
1409         ((GenericPluginUI*)arg)->note_off_event_handler(note);
1410 }
1411
1412 void
1413 GenericPluginUI::note_on_event_handler (int note)
1414 {
1415         MidiTrack* mt = dynamic_cast<MidiTrack*> (insert->owner());
1416         _pianomm->grab_focus ();
1417         uint8_t channel = _piano_channel.get_value_as_int () - 1;
1418         uint8_t event[3];
1419         event[0] = (MIDI_CMD_NOTE_ON | channel);
1420         event[1] = note;
1421         event[2] = _piano_velocity.get_value_as_int ();
1422         if (mt) {
1423                 mt->write_immediate_event (3, event);
1424         } else {
1425                 insert->write_immediate_event (3, event);
1426         }
1427 }
1428
1429 void
1430 GenericPluginUI::note_off_event_handler (int note)
1431 {
1432         MidiTrack* mt = dynamic_cast<MidiTrack*> (insert->owner());
1433         uint8_t channel = _piano_channel.get_value_as_int () - 1;
1434         uint8_t event[3];
1435         event[0] = (MIDI_CMD_NOTE_OFF | channel);
1436         event[1] = note;
1437         event[2] = 0;
1438         if (mt) {
1439                 mt->write_immediate_event (3, event);
1440         } else {
1441                 insert->write_immediate_event (3, event);
1442         }
1443 }