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