X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fgeneric_pluginui.cc;h=d6090dea739ce34590c8a6cb7fd29834371fcb18;hb=57ee61772b6c44e7731619c5c74e45bb860ac4aa;hp=faec8fb4ae109f56d864844073e58b4a425d5a03;hpb=3020b224fa2d6e1b6b8a576e8e8e211e0585f2a2;p=ardour.git diff --git a/gtk2_ardour/generic_pluginui.cc b/gtk2_ardour/generic_pluginui.cc index faec8fb4ae..d6090dea73 100644 --- a/gtk2_ardour/generic_pluginui.cc +++ b/gtk2_ardour/generic_pluginui.cc @@ -41,13 +41,16 @@ #include "ardour/plugin.h" #include "ardour/plugin_insert.h" #include "ardour/session.h" +#include "ardour/value_as_string.h" -#include "ardour_ui.h" +#include "ardour_spinner.h" #include "prompter.h" #include "plugin_ui.h" -#include "utils.h" #include "gui_thread.h" #include "automation_controller.h" +#include "timers.h" +#include "tooltips.h" +#include "ui_config.h" #include "i18n.h" @@ -56,16 +59,17 @@ using namespace ARDOUR; using namespace PBD; using namespace Gtkmm2ext; using namespace Gtk; +using namespace ARDOUR_UI_UTILS; GenericPluginUI::GenericPluginUI (boost::shared_ptr pi, bool scrollable) - : PlugUIBase (pi), - button_table (initial_button_rows, initial_button_cols), - output_table (initial_output_rows, initial_output_cols), - hAdjustment(0.0, 0.0, 0.0), - vAdjustment(0.0, 0.0, 0.0), - scroller_view(hAdjustment, vAdjustment), - automation_menu (0), - is_scrollable(scrollable) + : PlugUIBase (pi) + , button_table (initial_button_rows, initial_button_cols) + , output_table (initial_output_rows, initial_output_cols) + , hAdjustment(0.0, 0.0, 0.0) + , vAdjustment(0.0, 0.0, 0.0) + , scroller_view(hAdjustment, vAdjustment) + , automation_menu (0) + , is_scrollable(scrollable) { set_name ("PluginEditor"); set_border_width (10); @@ -76,21 +80,40 @@ GenericPluginUI::GenericPluginUI (boost::shared_ptr pi, bool scrol HBox* constraint_hbox = manage (new HBox); HBox* smaller_hbox = manage (new HBox); + HBox* automation_hbox = manage (new HBox); smaller_hbox->set_spacing (4); + automation_hbox->set_spacing (6); Label* combo_label = manage (new Label (_("Presets"))); combo_label->set_use_markup (true); - latency_button.add (latency_label); - latency_button.signal_clicked().connect (sigc::mem_fun (*this, &PlugUIBase::latency_button_clicked)); + latency_button.signal_clicked.connect (sigc::mem_fun (*this, &PlugUIBase::latency_button_clicked)); set_latency_label (); - smaller_hbox->pack_start (latency_button, false, false, 10); + smaller_hbox->pack_start (latency_button, false, false, 4); smaller_hbox->pack_start (_preset_combo, false, false); smaller_hbox->pack_start (_preset_modified, false, false); smaller_hbox->pack_start (add_button, false, false); smaller_hbox->pack_start (save_button, false, false); smaller_hbox->pack_start (delete_button, false, false); - smaller_hbox->pack_start (bypass_button, false, true); + smaller_hbox->pack_start (reset_button, false, false, 4); + smaller_hbox->pack_start (bypass_button, false, true, 4); + + automation_manual_all_button.set_text(_("Manual")); + automation_manual_all_button.set_name (X_("generic button")); + automation_play_all_button.set_text(_("Play")); + automation_play_all_button.set_name (X_("generic button")); + automation_write_all_button.set_text(_("Write")); + automation_write_all_button.set_name (X_("generic button")); + automation_touch_all_button.set_text(_("Touch")); + automation_touch_all_button.set_name (X_("generic button")); + + Label* l = manage (new Label (_("All Automation"))); + l->set_alignment (1.0, 0.5); + automation_hbox->pack_start (*l, true, true); + automation_hbox->pack_start (automation_manual_all_button, false, false); + automation_hbox->pack_start (automation_play_all_button, false, false); + automation_hbox->pack_start (automation_write_all_button, false, false); + automation_hbox->pack_start (automation_touch_all_button, false, false); constraint_hbox->set_spacing (5); constraint_hbox->set_homogeneous (false); @@ -102,7 +125,9 @@ GenericPluginUI::GenericPluginUI (boost::shared_ptr pi, bool scrol pack_end (description_expander, false, false); } + v1_box->set_spacing (6); v1_box->pack_start (*smaller_hbox, false, true); + v1_box->pack_start (*automation_hbox, false, true); v2_box->pack_start (focus_button, false, true); main_contents.pack_start (settings_box, false, false); @@ -159,7 +184,7 @@ int value = -1; static int match_or_digit(char c1, char c2) { return c1 == c2 || (isdigit(c1) && isdigit(c2)); -} +} static std::size_t matching_chars_at_head(const string s1, const string s2) { std::size_t length, n = 0; @@ -169,7 +194,7 @@ std::size_t length, n = 0; if (!match_or_digit(s1[n], s2[n])) break; n++; - } + } return n; } @@ -182,7 +207,7 @@ std::size_t s1pos, s2pos, n = 0; if (!match_or_digit(s1[s1pos], s2[s2pos]) ) break; n++; - } + } return n; } @@ -240,81 +265,124 @@ GenericPluginUI::build () frame->add (*box); hpacker.pack_start(*frame, true, true); - /* find all ports. build control elements for all appropriate control ports */ - std::vector cui_controls_list; + std::vector control_uis; + // Build a ControlUI for each control port for (i = 0; i < plugin->parameter_count(); ++i) { if (plugin->parameter_is_control (i)) { /* Don't show latency control ports */ - if (plugin->describe_parameter (Evoral::Parameter(PluginAutomation, 0, i)) == X_("latency")) { + const Evoral::Parameter param(PluginAutomation, 0, i); + if (plugin->describe_parameter (param) == X_("latency")) { continue; } - if (plugin->describe_parameter (Evoral::Parameter(PluginAutomation, 0, i)) == X_("hidden")) { + if (plugin->describe_parameter (param) == X_("hidden")) { continue; } + const float value = plugin->get_parameter(i); + ControlUI* cui; boost::shared_ptr c = boost::dynamic_pointer_cast( - insert->control(Evoral::Parameter(PluginAutomation, 0, i))); + insert->control(param)); - if ((cui = build_control_ui (i, c)) == 0) { + ParameterDescriptor desc; + plugin->get_parameter_descriptor(i, desc); + if ((cui = build_control_ui (param, desc, c, value, plugin->parameter_is_input(i))) == 0) { error << string_compose(_("Plugin Editor: could not build control element for port %1"), i) << endmsg; continue; } const std::string param_docs = plugin->get_parameter_docs(i); if (!param_docs.empty()) { - ARDOUR_UI::instance()->set_tip(cui, param_docs.c_str()); + set_tooltip(cui, param_docs.c_str()); } - if (cui->controller || cui->clickbox || cui->combo) { - // Get all of the controls into a list, so that - // we can lay them out a bit more nicely later. - cui_controls_list.push_back(cui); - } else if (cui->button) { - - if (!is_scrollable && button_row == button_rows) { - button_row = 0; - if (++button_col == button_cols) { - button_cols += 2; - button_table.resize (button_rows, button_cols); - } - } + control_uis.push_back(cui); + input_controls_with_automation.push_back (cui); + } + } - button_table.attach (*cui, button_col, button_col + 1, button_row, button_row+1, - FILL|EXPAND, FILL); - button_row++; + // Build a ControlUI for each property + const Plugin::PropertyDescriptors& descs = plugin->get_supported_properties(); + for (Plugin::PropertyDescriptors::const_iterator d = descs.begin(); d != descs.end(); ++d) { + const ParameterDescriptor& desc = d->second; + const Evoral::Parameter param(PluginPropertyAutomation, 0, desc.key); - } else if (cui->display) { + boost::shared_ptr c + = boost::dynamic_pointer_cast( + insert->control(param)); - output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1, - FILL|EXPAND, FILL); + if (!c) { + error << string_compose(_("Plugin Editor: no control for property %1"), desc.key) << endmsg; + continue; + } + + ControlUI* cui = build_control_ui(param, desc, c, c->get_value(), true); + if (!cui) { + error << string_compose(_("Plugin Editor: could not build control element for property %1"), + desc.key) << endmsg; + continue; + } - // TODO: The meters should be divided into multiple rows + control_uis.push_back(cui); + } + if (!descs.empty()) { + plugin->announce_property_values(); + } + + // Add special controls to UI, and build list of normal controls to be layed out later + std::vector cui_controls_list; + for (i = 0; i < control_uis.size(); ++i) { + ControlUI* cui = control_uis[i]; - if (++output_col == output_cols) { - output_cols ++; - output_table.resize (output_rows, output_cols); + if (cui->button || cui->file_button) { + + if (!is_scrollable && button_row == button_rows) { + button_row = 0; + if (++button_col == button_cols) { + button_cols += 2; + button_table.resize (button_rows, button_cols); } } - } + + button_table.attach (*cui, button_col, button_col + 1, button_row, button_row+1, + FILL|EXPAND, FILL); + button_row++; + + } else if (cui->controller || cui->clickbox || cui->combo) { + // Get all of the controls into a list, so that + // we can lay them out a bit more nicely later. + cui_controls_list.push_back(cui); + + } else if (cui->display) { + + output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1, + FILL|EXPAND, FILL); + + // TODO: The meters should be divided into multiple rows + + if (++output_col == output_cols) { + output_cols ++; + output_table.resize (output_rows, output_cols); + } + } } // Iterate over the list of controls to find which adjacent controls // are similar enough to be grouped together. - + string label, previous_label = ""; std::vector numbers_in_labels(cui_controls_list.size()); - + std::vector similarity_scores(cui_controls_list.size()); float most_similar = 0.0, least_similar = 1.0; - + i = 0; for (vector::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) { label = (*cuip)->label.get_text(); @@ -323,12 +391,12 @@ GenericPluginUI::build () if (i > 0) { // A hand-wavy calculation of how similar this control's // label is to the previous. - similarity_scores[i] = - (float) ( - ( matching_chars_at_head(label, previous_label) + + similarity_scores[i] = + (float) ( + ( matching_chars_at_head(label, previous_label) + matching_chars_at_tail(label, previous_label) + - 1 - ) + 1 + ) ) / (label.length() + previous_label.length()); if (numbers_in_labels[i] >= 0) { similarity_scores[i] += (numbers_in_labels[i] == numbers_in_labels[i-1]); @@ -340,32 +408,32 @@ GenericPluginUI::build () } // cerr << "label: " << label << " sim: " << fixed << setprecision(3) << similarity_scores[i] << " num: " << numbers_in_labels[i] << endl; - previous_label = label; + previous_label = label; } - + // cerr << "most similar: " << most_similar << ", least similar: " << least_similar << endl; float similarity_threshold; - + if (most_similar > 1.0) { similarity_threshold = default_similarity_threshold; } else { similarity_threshold = most_similar - (1 - default_similarity_threshold); } - + // Now iterate over the list of controls to display them, placing an - // HSeparator between controls of less than a certain similarity, and + // HSeparator between controls of less than a certain similarity, and // starting a new column when necessary. - + i = 0; for (vector::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) { ControlUI* cui = *cuip; - + if (!is_scrollable) { x++; } - + if (x > max_controls_per_column || similarity_scores[i] <= similarity_threshold) { if (x > min_controls_per_column) { frame = manage (new Frame); @@ -411,13 +479,20 @@ GenericPluginUI::build () output_table.show_all (); button_table.show_all (); + + automation_manual_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Off)); + automation_play_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Play)); + automation_write_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Write)); + automation_touch_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Touch)); } -GenericPluginUI::ControlUI::ControlUI () - : automate_button (X_("")) // force creation of a label +GenericPluginUI::ControlUI::ControlUI (const Evoral::Parameter& p) + : param(p) + , automate_button (X_("")) // force creation of a label + , file_button(NULL) { automate_button.set_name ("PluginAutomateButton"); - ARDOUR_UI::instance()->set_tip (automate_button, _("Automation control")); + set_tooltip (automate_button, _("Automation control")); /* XXX translators: use a string here that will be at least as long as the longest automation label (see ::automation_state_changed() @@ -428,7 +503,7 @@ GenericPluginUI::ControlUI::ControlUI () ignore_change = 0; display = 0; - button = 0; + button = false; clickbox = 0; meterinfo = 0; } @@ -467,51 +542,23 @@ GenericPluginUI::automation_state_changed (ControlUI* cui) } } - bool GenericPluginUI::integer_printer (char buf[32], Adjustment &adj, ControlUI* cui) { - float const v = adj.get_value (); - - if (cui->scale_points) { - Plugin::ScalePoints::const_iterator i = cui->scale_points->begin (); - while (i != cui->scale_points->end() && i->second != v) { - ++i; - } - - if (i != cui->scale_points->end ()) { - snprintf (buf, 32, "%s", i->first.c_str()); - return true; - } - } - - snprintf (buf, 32, "%.0f", v); + float const v = cui->control->interface_to_internal(adj.get_value ()); + const std::string& str = ARDOUR::value_as_string(cui->control->desc(), Variant(v)); + const size_t len = str.copy(buf, 31); + buf[len] = '\0'; return true; } bool GenericPluginUI::midinote_printer (char buf[32], Adjustment &adj, ControlUI* cui) { - float const v = adj.get_value (); - - if (cui->scale_points) { - Plugin::ScalePoints::const_iterator i = cui->scale_points->begin (); - while (i != cui->scale_points->end() && i->second != v) { - ++i; - } - - if (i != cui->scale_points->end ()) { - snprintf (buf, 32, "%s", i->first.c_str()); - return true; - } - } - if (v >= 0 && v <= 127) { - int mn = rint(v); - const char notename[12][3] = { "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B" }; - snprintf (buf, 32, "%s %d", notename[mn%12], (mn/12)-2); - } else { - snprintf (buf, 32, "%.0f", v); - } + float const v = cui->control->interface_to_internal(adj.get_value ()); + const std::string& str = ARDOUR::value_as_string(cui->control->desc(), Variant(v)); + const size_t len = str.copy(buf, 31); + buf[len] = '\0'; return true; } @@ -521,32 +568,34 @@ GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param) plugin->print_parameter (param, buf, len); } +/** Build a ControlUI for a parameter/property. + * Note that mcontrol may be NULL for outputs. + */ GenericPluginUI::ControlUI* -GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr mcontrol) +GenericPluginUI::build_control_ui (const Evoral::Parameter& param, + const ParameterDescriptor& desc, + boost::shared_ptr mcontrol, + float value, + bool is_input) { ControlUI* control_ui = 0; - Plugin::ParameterDescriptor desc; - - plugin->get_parameter_descriptor (port_index, desc); - - control_ui = manage (new ControlUI ()); + control_ui = manage (new ControlUI (param)); control_ui->combo = 0; control_ui->control = mcontrol; control_ui->update_pending = false; control_ui->label.set_text (desc.label); control_ui->label.set_alignment (0.0, 0.5); control_ui->label.set_name ("PluginParameterLabel"); - control_ui->port_index = port_index; control_ui->set_spacing (5); Gtk::Requisition req (control_ui->automate_button.size_request()); - if (plugin->parameter_is_input(port_index)) { + if (is_input) { /* See if there any named values for our input value */ - control_ui->scale_points = plugin->get_scale_points (port_index); + control_ui->scale_points = desc.scale_points; /* If this parameter is an integer, work out the number of distinct values it can take on (assuming that lower and upper values are allowed). @@ -554,7 +603,7 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrscale_points && ((steps && int (control_ui->scale_points->size()) == steps) || desc.enumeration)) { - + /* Either: * a) There is a label for each possible value of this input, or * b) This port is marked as being an enumeration. @@ -562,10 +611,10 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr labels; for ( - ARDOUR::Plugin::ScalePoints::const_iterator i = control_ui->scale_points->begin(); + ARDOUR::ScalePoints::const_iterator i = control_ui->scale_points->begin(); i != control_ui->scale_points->end(); ++i) { - + labels.push_back(i->first); } @@ -586,37 +635,36 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrbutton = manage (new ToggleButton ()); - control_ui->button->set_name ("PluginEditorButton"); - control_ui->button->set_size_request (20, 20); + /* Build a file selector button */ - control_ui->pack_start (control_ui->label, true, true); - control_ui->pack_start (*control_ui->button, false, true); - control_ui->pack_start (control_ui->automate_button, false, false); + // Create/add controller + control_ui->file_button = manage(new Gtk::FileChooserButton(Gtk::FILE_CHOOSER_ACTION_OPEN)); + control_ui->file_button->set_title(desc.label); - control_ui->button->signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::control_port_toggled), control_ui)); - control_ui->automate_button.signal_clicked().connect (bind (mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui, (uint32_t) port_index)); + control_ui->pack_start (control_ui->label, false, true); + control_ui->pack_start (*control_ui->file_button, true, true); - mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::toggle_parameter_changed, this, control_ui), gui_context()); - mcontrol->alist()->automation_state_changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui), gui_context()); + // Connect signals (TODO: do this via the Control) + control_ui->file_button->signal_file_set().connect( + sigc::bind(sigc::mem_fun(*this, &GenericPluginUI::set_property), + desc, control_ui->file_button)); + plugin->PropertyChanged.connect(*this, invalidator(*this), + boost::bind(&GenericPluginUI::property_changed, this, _1, _2), + gui_context()); - if (plugin->get_parameter (port_index) > 0.5){ - control_ui->button->set_active(true); - } - - automation_state_changed (control_ui); + _property_controls.insert(std::make_pair(desc.key, control_ui->file_button)); + control_ui->file_button = control_ui->file_button; return control_ui; } /* create the controller */ + bool use_knob = false; // XXX TODO if (mcontrol) { - control_ui->controller = AutomationController::create(insert, mcontrol->parameter(), mcontrol); + control_ui->controller = AutomationController::create(insert, mcontrol->parameter(), desc, mcontrol, use_knob); } /* XXX this code is not right yet, because it doesn't handle @@ -624,38 +672,26 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrcontroller->adjustment(); - boost::shared_ptr pc = boost::dynamic_pointer_cast (control_ui->control); - - adj->set_lower (pc->internal_to_interface (desc.lower)); - adj->set_upper (pc->internal_to_interface (desc.upper)); - - adj->set_step_increment (desc.step); - adj->set_page_increment (desc.largestep); - if (desc.integer_step) { - control_ui->clickbox = new ClickBox (adj, "PluginUIClickBox"); + if (desc.integer_step && !desc.toggled) { + control_ui->clickbox = new ClickBox (adj, "PluginUIClickBox", true); Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->clickbox, "g9999999", 2, 2); - if (desc.midinote) { - printf("MIDI NOTE\n"); + if (desc.unit == ParameterDescriptor::MIDI_NOTE) { control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::midinote_printer), control_ui)); } else { control_ui->clickbox->set_printer (sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::integer_printer), control_ui)); } + } else if (desc.toggled || use_knob) { + control_ui->controller->set_size_request (req.height, req.height); } else { //sigc::slot pslot = sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::print_parameter), (uint32_t) port_index); control_ui->controller->set_size_request (200, req.height); - control_ui->controller->set_name (X_("PluginSlider")); - control_ui->controller->set_style (BarController::LeftToRight); - control_ui->controller->set_use_parent (true); - control_ui->controller->set_logarithmic (desc.logarithmic); - - control_ui->controller->StartGesture.connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::start_touch), control_ui)); - control_ui->controller->StopGesture.connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::stop_touch), control_ui)); + control_ui->controller->set_name (X_("ProcessorControlSlider")); } - adj->set_value (pc->internal_to_interface (plugin->get_parameter (port_index))); + adj->set_value (mcontrol->internal_to_interface(value)); /* XXX memory leak: SliderController not destroyed by ControlUI destructor, and manage() reports object hierarchy @@ -663,23 +699,41 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrpack_start (control_ui->label, true, true); - if (desc.integer_step) { + + if (desc.toggled) { + control_ui->button = true; + ArdourButton* but = dynamic_cast(control_ui->controller->widget ()); + assert (but); + but->set_name ("pluginui toggle"); + update_control_display(control_ui); + } + + if (desc.integer_step && !desc.toggled) { control_ui->pack_start (*control_ui->clickbox, false, false); } else { + if (!desc.toggled && use_knob) { + ArdourSpinner* spb = manage (new ArdourSpinner (mcontrol, adj, insert)); + control_ui->pack_start (*spb, false, false); + } control_ui->pack_start (*control_ui->controller, false, false); } control_ui->pack_start (control_ui->automate_button, false, false); - control_ui->automate_button.signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui, (uint32_t) port_index)); - automation_state_changed (control_ui); + if (mcontrol->flags () & Controllable::NotAutomatable) { + control_ui->automate_button.set_sensitive (false); + set_tooltip(control_ui->automate_button, _("This control cannot be automated")); + } else { + control_ui->automate_button.signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui)); + mcontrol->alist()->automation_state_changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui), gui_context()); + } - mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::ui_parameter_changed, this, control_ui), gui_context()); - mcontrol->alist()->automation_state_changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui), gui_context()); + automation_state_changed (control_ui); input_controls.push_back (control_ui); + input_controls_with_automation.push_back (control_ui); - } else if (plugin->parameter_is_output (port_index)) { + } else if (!is_input) { control_ui->display = manage (new EventBox); control_ui->display->set_name ("ParameterValueDisplay"); @@ -693,48 +747,55 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrdisplay->show_all (); - /* set up a meter */ - /* TODO: only make a meter if the port is Hinted for it */ + control_ui->vbox = manage (new VBox); + control_ui->vbox->set_spacing(3); - MeterInfo * info = new MeterInfo(port_index); - control_ui->meterinfo = info; + if (desc.integer_step || desc.enumeration) { + control_ui->vbox->pack_end (*control_ui->display, false, false); + control_ui->vbox->pack_end (control_ui->label, false, false); + } else { + /* set up a meter for float ports */ - info->meter = new FastMeter ( - 5, 5, FastMeter::Vertical, 0, - 0x0000aaff, - 0x008800ff, 0x008800ff, - 0x00ff00ff, 0x00ff00ff, - 0xcccc00ff, 0xcccc00ff, - 0xffaa00ff, 0xffaa00ff, - 0xff0000ff, - ARDOUR_UI::config()->get_canvasvar_MeterBackgroundBot(), - ARDOUR_UI::config()->get_canvasvar_MeterBackgroundTop() - ); + MeterInfo * info = new MeterInfo(); + control_ui->meterinfo = info; - info->min_unbound = desc.min_unbound; - info->max_unbound = desc.max_unbound; + info->meter = new FastMeter ( + 5, 5, FastMeter::Vertical, 0, + 0x0000aaff, + 0x008800ff, 0x008800ff, + 0x00ff00ff, 0x00ff00ff, + 0xcccc00ff, 0xcccc00ff, + 0xffaa00ff, 0xffaa00ff, + 0xff0000ff, + UIConfiguration::instance().color ("meter background bottom"), + UIConfiguration::instance().color ("meter background top") + ); - info->min = desc.lower; - info->max = desc.upper; + info->min_unbound = desc.min_unbound; + info->max_unbound = desc.max_unbound; - control_ui->vbox = manage (new VBox); - control_ui->hbox = manage (new HBox); + info->min = desc.lower; + info->max = desc.upper; - control_ui->hbox->set_spacing(1); - control_ui->vbox->set_spacing(3); + control_ui->label.set_angle(90); - control_ui->label.set_angle(90); - control_ui->hbox->pack_start (control_ui->label, false, false); - control_ui->hbox->pack_start (*info->meter, false, false); + HBox* center = manage (new HBox); + center->set_spacing(1); + center->pack_start (control_ui->label, false, false); + center->pack_start (*info->meter, false, false); - control_ui->vbox->pack_start (*control_ui->hbox, false, false); + control_ui->hbox = manage (new HBox); + control_ui->hbox->pack_start (*center, true, false); - control_ui->vbox->pack_start (*control_ui->display, false, false); + // horizontally center this hbox in the vbox + control_ui->vbox->pack_start (*control_ui->hbox, false, false); - control_ui->pack_start (*control_ui->vbox); + control_ui->meterinfo->meter->show_all(); + control_ui->meterinfo->packed = true; + control_ui->vbox->pack_start (*control_ui->display, false, false); + } - control_ui->meterinfo->meter->show_all(); - control_ui->meterinfo->packed = true; + control_ui->pack_start (*control_ui->vbox); output_controls.push_back (control_ui); } @@ -747,19 +808,7 @@ GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptrcontrol->start_touch (cui->control->session().transport_frame()); -} - -void -GenericPluginUI::stop_touch (GenericPluginUI::ControlUI* cui) -{ - cui->control->stop_touch (false, cui->control->session().transport_frame()); -} - -void -GenericPluginUI::astate_clicked (ControlUI* cui, uint32_t /*port*/) +GenericPluginUI::astate_clicked (ControlUI* cui) { using namespace Menu_Helpers; @@ -784,23 +833,19 @@ GenericPluginUI::astate_clicked (ControlUI* cui, uint32_t /*port*/) } void -GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui) +GenericPluginUI::set_all_automation (AutoState as) { - insert->set_parameter_automation_state (cui->parameter(), state); + for (vector::iterator i = input_controls_with_automation.begin(); i != input_controls_with_automation.end(); ++i) { + if ((*i)->controller || (*i)->button) { + set_automation_state (as, (*i)); + } + } } void -GenericPluginUI::toggle_parameter_changed (ControlUI* cui) +GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui) { - float val = cui->control->get_value(); - - if (!cui->ignore_change) { - if (val > 0.5) { - cui->button->set_active (true); - } else { - cui->button->set_active (false); - } - } + insert->set_parameter_automation_state (cui->parameter(), state); } void @@ -824,19 +869,14 @@ GenericPluginUI::update_control_display (ControlUI* cui) cui->ignore_change++; if (cui->combo && cui->scale_points) { - for (ARDOUR::Plugin::ScalePoints::iterator it = cui->scale_points->begin(); it != cui->scale_points->end(); ++it) { + for (ARDOUR::ScalePoints::iterator it = cui->scale_points->begin(); it != cui->scale_points->end(); ++it) { if (it->second == val) { cui->combo->set_active_text(it->first); break; } } } else if (cui->button) { - - if (val > 0.5) { - cui->button->set_active (true); - } else { - cui->button->set_active (false); - } + // AutomationController handles this } if( cui->controller ) { @@ -855,20 +895,12 @@ GenericPluginUI::update_control_display (ControlUI* cui) cui->ignore_change--; } -void -GenericPluginUI::control_port_toggled (ControlUI* cui) -{ - cui->ignore_change++; - insert->automation_control (cui->parameter())->set_value (cui->button->get_active()); - cui->ignore_change--; -} - void GenericPluginUI::control_combo_changed (ControlUI* cui) { if (!cui->ignore_change && cui->scale_points) { string value = cui->combo->get_active_text(); - insert->automation_control (cui->parameter())->set_value ((*cui->scale_points)[value]); + insert->automation_control (cui->parameter())->set_value ((*cui->scale_points)[value], Controllable::NoGroup); } } @@ -877,8 +909,7 @@ GenericPluginUI::start_updating (GdkEventAny*) { if (output_controls.size() > 0 ) { screen_update_connection.disconnect(); - screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect - (sigc::mem_fun(*this, &GenericPluginUI::output_update)); + screen_update_connection = Timers::super_rapid_connect (sigc::mem_fun(*this, &GenericPluginUI::output_update)); } return false; } @@ -901,7 +932,7 @@ void GenericPluginUI::output_update () { for (vector::iterator i = output_controls.begin(); i != output_controls.end(); ++i) { - float val = plugin->get_parameter ((*i)->port_index); + float val = plugin->get_parameter ((*i)->parameter().id()); char buf[32]; snprintf (buf, sizeof(buf), "%.2f", val); (*i)->display_label->set_text (buf); @@ -931,4 +962,20 @@ GenericPluginUI::output_update () } } +void +GenericPluginUI::set_property (const ParameterDescriptor& desc, + Gtk::FileChooserButton* widget) +{ + plugin->set_property(desc.key, Variant(Variant::PATH, widget->get_filename())); +} +void +GenericPluginUI::property_changed (uint32_t key, const Variant& value) +{ + PropertyControls::iterator c = _property_controls.find(key); + if (c != _property_controls.end()) { + c->second->set_filename(value.get_path()); + } else { + std::cerr << "warning: property change for property with no control" << std::endl; + } +}