2006-08-10 23:24:57 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000 Paul Davis
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-07-12 20:26:28 -04:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
#include <climits>
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cmath>
|
|
|
|
#include <string>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/stl_delete.h"
|
|
|
|
#include "pbd/xml++.h"
|
|
|
|
#include "pbd/failed_constructor.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include <gtkmm2ext/click_box.h>
|
|
|
|
#include <gtkmm2ext/fastmeter.h>
|
|
|
|
#include <gtkmm2ext/barcontroller.h>
|
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/doi.h>
|
|
|
|
#include <gtkmm2ext/slider_controller.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "midi++/manager.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/plugin.h"
|
|
|
|
#include "ardour/plugin_insert.h"
|
|
|
|
#include "ardour/ladspa_plugin.h"
|
2009-05-03 15:53:09 -04:00
|
|
|
#ifdef HAVE_SLV2
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/lv2_plugin.h"
|
2008-02-02 12:22:04 -05:00
|
|
|
#endif
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include <lrdf.h>
|
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "prompter.h"
|
|
|
|
#include "plugin_ui.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "gui_thread.h"
|
2007-06-30 14:41:50 -04:00
|
|
|
#include "automation_controller.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Gtkmm2ext;
|
|
|
|
using namespace Gtk;
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrollable)
|
|
|
|
: PlugUIBase (pi),
|
2006-08-10 23:24:57 -04:00
|
|
|
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);
|
2008-10-15 15:21:26 -04:00
|
|
|
//set_homogeneous (false);
|
|
|
|
|
2009-05-08 13:21:17 -04:00
|
|
|
pack_start(main_contents);
|
2006-08-10 23:24:57 -04:00
|
|
|
settings_box.set_homogeneous (false);
|
|
|
|
|
|
|
|
HBox* constraint_hbox = manage (new HBox);
|
|
|
|
HBox* smaller_hbox = manage (new HBox);
|
|
|
|
Label* combo_label = manage (new Label (_("<span size=\"large\">Presets</span>")));
|
|
|
|
combo_label->set_use_markup (true);
|
|
|
|
|
2009-05-04 13:49:28 -04:00
|
|
|
latency_button.add (latency_label);
|
2009-12-11 18:29:48 -05:00
|
|
|
latency_button.signal_clicked().connect (sigc::mem_fun (*this, &PlugUIBase::latency_button_clicked));
|
2009-05-04 13:49:28 -04:00
|
|
|
set_latency_label ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-04 13:49:28 -04:00
|
|
|
smaller_hbox->pack_start (latency_button, false, false, 10);
|
2008-02-16 17:43:18 -05:00
|
|
|
smaller_hbox->pack_start (preset_combo, false, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
smaller_hbox->pack_start (save_button, false, false);
|
2008-12-12 09:43:24 -05:00
|
|
|
smaller_hbox->pack_start (bypass_button, false, true);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
constraint_hbox->set_spacing (5);
|
2008-12-12 09:43:24 -05:00
|
|
|
constraint_hbox->set_homogeneous (false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
VBox* v1_box = manage (new VBox);
|
|
|
|
VBox* v2_box = manage (new VBox);
|
2009-05-08 13:21:17 -04:00
|
|
|
pack_end(plugin_analysis_expander);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
v1_box->pack_start (*smaller_hbox, false, true);
|
|
|
|
v2_box->pack_start (focus_button, false, true);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-10-15 15:21:26 -04:00
|
|
|
main_contents.pack_start (settings_box, false, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
constraint_hbox->pack_end (*v2_box, false, false);
|
|
|
|
constraint_hbox->pack_end (*v1_box, false, false);
|
|
|
|
|
|
|
|
main_contents.pack_start (*constraint_hbox, false, false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if ( is_scrollable ) {
|
|
|
|
scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
|
|
|
|
scroller.set_name ("PluginEditor");
|
|
|
|
scroller_view.set_name("PluginEditor");
|
|
|
|
scroller_view.add (hpacker);
|
|
|
|
scroller.add (scroller_view);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-15 15:21:26 -04:00
|
|
|
main_contents.pack_start (scroller, true, true);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2008-10-15 15:21:26 -04:00
|
|
|
main_contents.pack_start (hpacker, false, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
pi->ActiveChanged.connect (active_connection, invalidator (*this), boost::bind (&GenericPluginUI::processor_active_changed, this, boost::weak_ptr<Processor>(pi)), gui_context());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
bypass_button.set_active (!pi->active());
|
|
|
|
|
2006-08-12 15:43:09 -04:00
|
|
|
build ();
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::~GenericPluginUI ()
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
if (output_controls.size() > 0) {
|
|
|
|
screen_update_connection.disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::build ()
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
guint32 i = 0;
|
|
|
|
guint32 x = 0;
|
|
|
|
Frame* frame;
|
|
|
|
Frame* bt_frame;
|
|
|
|
VBox* box;
|
|
|
|
int output_row, output_col;
|
|
|
|
int button_row, button_col;
|
|
|
|
int output_rows, output_cols;
|
|
|
|
int button_rows, button_cols;
|
|
|
|
|
|
|
|
prefheight = 30;
|
|
|
|
hpacker.set_spacing (10);
|
|
|
|
|
|
|
|
output_rows = initial_output_rows;
|
|
|
|
output_cols = initial_output_cols;
|
|
|
|
button_rows = initial_button_rows;
|
|
|
|
button_cols = initial_button_cols;
|
|
|
|
output_row = 0;
|
|
|
|
button_row = 0;
|
|
|
|
output_col = 0;
|
|
|
|
button_col = 0;
|
|
|
|
|
|
|
|
button_table.set_homogeneous (false);
|
|
|
|
button_table.set_row_spacings (2);
|
|
|
|
button_table.set_col_spacings (2);
|
|
|
|
output_table.set_homogeneous (true);
|
|
|
|
output_table.set_row_spacings (2);
|
|
|
|
output_table.set_col_spacings (2);
|
|
|
|
button_table.set_border_width (5);
|
|
|
|
output_table.set_border_width (5);
|
|
|
|
|
|
|
|
hpacker.set_border_width (10);
|
|
|
|
|
|
|
|
bt_frame = manage (new Frame);
|
|
|
|
bt_frame->set_name ("BaseFrame");
|
|
|
|
bt_frame->add (button_table);
|
|
|
|
hpacker.pack_start(*bt_frame, true, true);
|
|
|
|
|
|
|
|
box = manage (new VBox);
|
|
|
|
box->set_border_width (5);
|
|
|
|
box->set_spacing (1);
|
|
|
|
|
|
|
|
frame = manage (new Frame);
|
|
|
|
frame->set_name ("BaseFrame");
|
|
|
|
frame->set_label (_("Controls"));
|
|
|
|
frame->add (*box);
|
|
|
|
hpacker.pack_start(*frame, true, true);
|
|
|
|
|
|
|
|
/* find all ports. build control elements for all appropriate control ports */
|
|
|
|
|
|
|
|
for (i = 0; i < plugin->parameter_count(); ++i) {
|
|
|
|
|
|
|
|
if (plugin->parameter_is_control (i)) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
/* Don't show latency control ports */
|
|
|
|
|
2008-10-02 23:16:19 -04:00
|
|
|
if (plugin->describe_parameter (Evoral::Parameter(PluginAutomation, 0, i)) == X_("latency")) {
|
2006-08-10 23:24:57 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlUI* cui;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
/* if we are scrollable, just use one long column */
|
|
|
|
|
|
|
|
if (!is_scrollable) {
|
2008-12-12 09:43:24 -05:00
|
|
|
if (x++ > 20){
|
2006-08-10 23:24:57 -04:00
|
|
|
frame = manage (new Frame);
|
|
|
|
frame->set_name ("BaseFrame");
|
|
|
|
box = manage (new VBox);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
box->set_border_width (5);
|
|
|
|
box->set_spacing (1);
|
|
|
|
|
|
|
|
frame->add (*box);
|
|
|
|
hpacker.pack_start(*frame,true,true);
|
|
|
|
|
2007-01-28 12:44:13 -05:00
|
|
|
x = 1;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> c
|
|
|
|
= boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(
|
2010-02-05 15:03:57 -05:00
|
|
|
insert->control(Evoral::Parameter(PluginAutomation, 0, i)));
|
2008-09-18 20:47:49 -04:00
|
|
|
|
|
|
|
if ((cui = build_control_ui (i, c)) == 0) {
|
2006-08-10 23:24:57 -04:00
|
|
|
error << string_compose(_("Plugin Editor: could not build control element for port %1"), i) << endmsg;
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-28 21:22:21 -04:00
|
|
|
if (cui->controller || cui->clickbox || cui->combo) {
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
box->pack_start (*cui, false, false);
|
|
|
|
|
|
|
|
} else if (cui->button) {
|
|
|
|
|
|
|
|
if (button_row == button_rows) {
|
|
|
|
button_row = 0;
|
|
|
|
if (++button_col == button_cols) {
|
|
|
|
button_cols += 2;
|
|
|
|
button_table.resize (button_rows, button_cols);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
button_table.attach (*cui, button_col, button_col + 1, button_row, button_row+1,
|
2006-08-10 23:24:57 -04:00
|
|
|
FILL|EXPAND, FILL);
|
|
|
|
button_row++;
|
|
|
|
|
|
|
|
} else if (cui->display) {
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1,
|
2006-08-10 23:24:57 -04:00
|
|
|
FILL|EXPAND, FILL);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
// TODO: The meters should be divided into multiple rows
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (++output_col == output_cols) {
|
|
|
|
output_cols ++;
|
|
|
|
output_table.resize (output_rows, output_cols);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
/* old code, which divides meters into
|
|
|
|
* columns first, rows later. New code divides into one row
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (output_row == output_rows) {
|
|
|
|
output_row = 0;
|
|
|
|
if (++output_col == output_cols) {
|
|
|
|
output_cols += 2;
|
|
|
|
output_table.resize (output_rows, output_cols);
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
output_table.attach (*cui, output_col, output_col + 1, output_row, output_row+1,
|
2006-08-10 23:24:57 -04:00
|
|
|
FILL|EXPAND, FILL);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
output_row++;
|
|
|
|
*/
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
/* HACK: ideally the preferred height would be queried from
|
|
|
|
the complete hpacker, but I can't seem to get that
|
2009-10-14 12:10:01 -04:00
|
|
|
information in time, so this is an estimation
|
2006-08-10 23:24:57 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
prefheight += 30;
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (box->children().empty()) {
|
|
|
|
hpacker.remove (*frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (button_table.children().empty()) {
|
|
|
|
hpacker.remove (*bt_frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!output_table.children().empty()) {
|
|
|
|
frame = manage (new Frame);
|
|
|
|
frame->set_name ("BaseFrame");
|
|
|
|
frame->add (output_table);
|
|
|
|
hpacker.pack_end (*frame, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
output_update ();
|
|
|
|
|
|
|
|
output_table.show_all ();
|
|
|
|
button_table.show_all ();
|
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::ControlUI::ControlUI ()
|
2009-10-14 12:10:01 -04:00
|
|
|
: automate_button (X_("")) // force creation of a label
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
automate_button.set_name ("PluginAutomateButton");
|
2010-02-08 19:50:24 -05:00
|
|
|
ARDOUR_UI::instance()->set_tip (automate_button, _("Automation control"));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2007-03-18 02:07:08 -04:00
|
|
|
/* XXX translators: use a string here that will be at least as long
|
|
|
|
as the longest automation label (see ::automation_state_changed()
|
|
|
|
below). be sure to include a descender.
|
|
|
|
*/
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
set_size_request_to_display_given_text (automate_button, _("Mgnual"), 15, 10);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
ignore_change = 0;
|
|
|
|
display = 0;
|
|
|
|
button = 0;
|
|
|
|
clickbox = 0;
|
|
|
|
meterinfo = 0;
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
GenericPluginUI::ControlUI::~ControlUI()
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
if (meterinfo) {
|
|
|
|
delete meterinfo->meter;
|
|
|
|
delete meterinfo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::automation_state_changed (ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
/* update button label */
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
// don't lock to avoid deadlock because we're triggered by
|
|
|
|
// AutomationControl::Changed() while the automation lock is taken
|
2010-08-09 18:23:23 -04:00
|
|
|
switch (insert->get_parameter_automation_state (cui->parameter())
|
2007-06-27 11:51:50 -04:00
|
|
|
& (Off|Play|Touch|Write)) {
|
2006-08-10 23:24:57 -04:00
|
|
|
case Off:
|
2007-03-18 02:07:08 -04:00
|
|
|
cui->automate_button.set_label (_("Manual"));
|
2006-08-10 23:24:57 -04:00
|
|
|
break;
|
|
|
|
case Play:
|
|
|
|
cui->automate_button.set_label (_("Play"));
|
|
|
|
break;
|
|
|
|
case Write:
|
|
|
|
cui->automate_button.set_label (_("Write"));
|
|
|
|
break;
|
|
|
|
case Touch:
|
|
|
|
cui->automate_button.set_label (_("Touch"));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cui->automate_button.set_label (_("???"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-21 11:55:17 -04:00
|
|
|
static void integer_printer (char buf[32], Adjustment &adj, void */*arg*/)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
snprintf (buf, 32, "%.0f", adj.get_value());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::print_parameter (char *buf, uint32_t len, uint32_t param)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
plugin->print_parameter (param, buf, len);
|
|
|
|
}
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::ControlUI*
|
|
|
|
GenericPluginUI::build_control_ui (guint32 port_index, boost::shared_ptr<AutomationControl> mcontrol)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2010-02-02 19:52:45 -05:00
|
|
|
ControlUI* control_ui = 0;
|
|
|
|
if (!mcontrol) {
|
2007-12-20 19:08:02 -05:00
|
|
|
return control_ui;
|
2010-02-02 19:52:45 -05:00
|
|
|
}
|
2007-12-20 19:08:02 -05:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
Plugin::ParameterDescriptor desc;
|
|
|
|
|
|
|
|
plugin->get_parameter_descriptor (port_index, desc);
|
|
|
|
|
|
|
|
control_ui = manage (new ControlUI ());
|
|
|
|
control_ui->combo = 0;
|
|
|
|
control_ui->combo_map = 0;
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->control = mcontrol;
|
2006-08-10 23:24:57 -04:00
|
|
|
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->set_spacing (5);
|
|
|
|
|
2007-03-18 02:07:08 -04:00
|
|
|
Gtk::Requisition req (control_ui->automate_button.size_request());
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (plugin->parameter_is_input (port_index)) {
|
|
|
|
|
|
|
|
boost::shared_ptr<LadspaPlugin> lp;
|
2009-05-03 15:53:09 -04:00
|
|
|
#ifdef HAVE_SLV2
|
2008-02-01 22:57:35 -05:00
|
|
|
boost::shared_ptr<LV2Plugin> lv2p;
|
2008-02-02 12:22:04 -05:00
|
|
|
#endif
|
2006-08-10 23:24:57 -04:00
|
|
|
if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
// FIXME: not all plugins have a numeric unique ID
|
|
|
|
uint32_t id = atol (lp->unique_id().c_str());
|
|
|
|
lrdf_defaults* defaults = lrdf_get_scale_values(id, port_index);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (defaults && defaults->count > 0) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->combo = new Gtk::ComboBoxText;
|
|
|
|
//control_ui->combo->set_value_in_list(true, false);
|
|
|
|
set_popdown_strings (*control_ui->combo, setup_scale_values(port_index, control_ui));
|
2009-12-11 18:29:48 -05:00
|
|
|
control_ui->combo->signal_changed().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::control_combo_changed), control_ui));
|
2010-03-30 11:18:43 -04:00
|
|
|
mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::parameter_changed, this, control_ui), gui_context());
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->pack_start(control_ui->label, true, true);
|
|
|
|
control_ui->pack_start(*control_ui->combo, false, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
update_control_display(control_ui);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
lrdf_free_setting_values(defaults);
|
|
|
|
return control_ui;
|
|
|
|
}
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2009-05-03 15:53:09 -04:00
|
|
|
#ifdef HAVE_SLV2
|
2008-02-01 22:57:35 -05:00
|
|
|
} else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
|
|
|
|
|
|
|
|
SLV2Port port = lv2p->slv2_port(port_index);
|
|
|
|
SLV2ScalePoints points = slv2_port_get_scale_points(lv2p->slv2_plugin(), port);
|
|
|
|
|
|
|
|
if (points) {
|
|
|
|
control_ui->combo = new Gtk::ComboBoxText;
|
|
|
|
//control_ui->combo->set_value_in_list(true, false);
|
|
|
|
set_popdown_strings (*control_ui->combo, setup_scale_values(port_index, control_ui));
|
2009-12-11 18:29:48 -05:00
|
|
|
control_ui->combo->signal_changed().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::control_combo_changed), control_ui));
|
2010-03-30 11:18:43 -04:00
|
|
|
mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::parameter_changed, this, control_ui), gui_context());
|
2008-02-01 22:57:35 -05:00
|
|
|
control_ui->pack_start(control_ui->label, true, true);
|
|
|
|
control_ui->pack_start(*control_ui->combo, false, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
update_control_display(control_ui);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
slv2_scale_points_free(points);
|
|
|
|
return control_ui;
|
|
|
|
}
|
2008-02-02 12:22:04 -05:00
|
|
|
#endif
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (desc.toggled) {
|
|
|
|
|
|
|
|
/* Build a button */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->button = manage (new ToggleButton ());
|
|
|
|
control_ui->button->set_name ("PluginEditorButton");
|
|
|
|
control_ui->button->set_size_request (20, 20);
|
|
|
|
|
|
|
|
control_ui->pack_start (control_ui->label, true, true);
|
|
|
|
control_ui->pack_start (*control_ui->button, false, true);
|
2009-04-15 14:04:23 -04:00
|
|
|
// control_ui->pack_start (control_ui->automate_button, false, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
control_ui->button->signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::control_port_toggled), control_ui));
|
2010-03-30 11:18:43 -04:00
|
|
|
mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::toggle_parameter_changed, this, control_ui), gui_context());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-04-15 14:04:23 -04:00
|
|
|
if (plugin->get_parameter (port_index) > 0.5){
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->button->set_active(true);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
return control_ui;
|
|
|
|
}
|
2007-08-01 18:18:46 -04:00
|
|
|
|
|
|
|
/* create the controller */
|
|
|
|
|
2008-09-28 21:22:21 -04:00
|
|
|
control_ui->controller = AutomationController::create(insert, mcontrol->parameter(), mcontrol);
|
2006-08-10 23:24:57 -04:00
|
|
|
/* XXX this code is not right yet, because it doesn't handle
|
|
|
|
the absence of bounds in any sensible fashion.
|
|
|
|
*/
|
|
|
|
|
2008-10-13 15:53:25 -04:00
|
|
|
//#if 0
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->controller->adjustment()->set_lower (desc.lower);
|
|
|
|
control_ui->controller->adjustment()->set_upper (desc.upper);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-10-13 16:26:25 -04:00
|
|
|
control_ui->logarithmic = false; // just disable it for now
|
|
|
|
/*
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->logarithmic = desc.logarithmic;
|
|
|
|
if (control_ui->logarithmic) {
|
2007-06-30 14:41:50 -04:00
|
|
|
if (control_ui->controller->adjustment()->get_lower() == 0.0) {
|
|
|
|
control_ui->controller->adjustment()->set_lower (control_ui->controller->adjustment()->get_upper()/10000);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->controller->adjustment()->set_upper (log(control_ui->controller->adjustment()->get_upper()));
|
|
|
|
control_ui->controller->adjustment()->set_lower (log(control_ui->controller->adjustment()->get_lower()));
|
2008-10-13 16:26:25 -04:00
|
|
|
}*/
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->controller->adjustment()->set_step_increment (desc.step);
|
|
|
|
control_ui->controller->adjustment()->set_page_increment (desc.largestep);
|
2008-10-13 15:53:25 -04:00
|
|
|
//#endif
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
if (desc.integer_step) {
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->clickbox = new ClickBox (control_ui->controller->adjustment(), "PluginUIClickBox");
|
2006-08-10 23:24:57 -04:00
|
|
|
Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->clickbox, "g9999999", 2, 2);
|
|
|
|
control_ui->clickbox->set_print_func (integer_printer, 0);
|
|
|
|
} else {
|
2009-12-11 18:29:48 -05:00
|
|
|
//sigc::slot<void,char*,uint32_t> pslot = sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::print_parameter), (uint32_t) port_index);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
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);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
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));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (control_ui->logarithmic) {
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->controller->adjustment()->set_value(log(plugin->get_parameter(port_index)));
|
2006-08-10 23:24:57 -04:00
|
|
|
} else{
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->controller->adjustment()->set_value(plugin->get_parameter(port_index));
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX memory leak: SliderController not destroyed by ControlUI
|
|
|
|
destructor, and manage() reports object hierarchy
|
|
|
|
ambiguity.
|
|
|
|
*/
|
|
|
|
|
|
|
|
control_ui->pack_start (control_ui->label, true, true);
|
|
|
|
if (desc.integer_step) {
|
|
|
|
control_ui->pack_start (*control_ui->clickbox, false, false);
|
|
|
|
} else {
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->pack_start (*control_ui->controller, false, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
control_ui->pack_start (control_ui->automate_button, false, false);
|
2009-12-11 18:29:48 -05:00
|
|
|
control_ui->automate_button.signal_clicked().connect (sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::astate_clicked), control_ui, (uint32_t) port_index));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
automation_state_changed (control_ui);
|
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::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());
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2010-02-02 19:52:45 -05:00
|
|
|
input_controls.push_back (control_ui);
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
} else if (plugin->parameter_is_output (port_index)) {
|
|
|
|
|
|
|
|
control_ui->display = manage (new EventBox);
|
|
|
|
control_ui->display->set_name ("ParameterValueDisplay");
|
|
|
|
|
|
|
|
control_ui->display_label = manage (new Label);
|
|
|
|
|
|
|
|
control_ui->display_label->set_name ("ParameterValueDisplay");
|
|
|
|
|
|
|
|
control_ui->display->add (*control_ui->display_label);
|
|
|
|
Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->display, "-99,99", 2, 2);
|
|
|
|
|
|
|
|
control_ui->display->show_all ();
|
|
|
|
|
|
|
|
/* set up a meter */
|
|
|
|
/* TODO: only make a meter if the port is Hinted for it */
|
|
|
|
|
|
|
|
MeterInfo * info = new MeterInfo(port_index);
|
|
|
|
control_ui->meterinfo = info;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-12-20 18:25:19 -05:00
|
|
|
info->meter = new FastMeter (5, 5, FastMeter::Vertical);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
info->min_unbound = desc.min_unbound;
|
|
|
|
info->max_unbound = desc.max_unbound;
|
|
|
|
|
|
|
|
info->min = desc.lower;
|
|
|
|
info->max = desc.upper;
|
|
|
|
|
|
|
|
control_ui->vbox = manage (new VBox);
|
|
|
|
control_ui->hbox = manage (new HBox);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
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);
|
|
|
|
|
|
|
|
control_ui->vbox->pack_start (*control_ui->hbox, false, false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->vbox->pack_start (*control_ui->display, false, false);
|
|
|
|
|
|
|
|
control_ui->pack_start (*control_ui->vbox);
|
|
|
|
|
|
|
|
control_ui->meterinfo->meter->show_all();
|
|
|
|
control_ui->meterinfo->packed = true;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
output_controls.push_back (control_ui);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
mcontrol->Changed.connect (control_connections, invalidator (*this), boost::bind (&GenericPluginUI::parameter_changed, this, control_ui), gui_context());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
return control_ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::start_touch (GenericPluginUI::ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2008-09-18 20:47:49 -04:00
|
|
|
cui->control->start_touch ();
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::stop_touch (GenericPluginUI::ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2008-09-18 20:47:49 -04:00
|
|
|
cui->control->stop_touch ();
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-07-21 11:55:17 -04:00
|
|
|
GenericPluginUI::astate_clicked (ControlUI* cui, uint32_t /*port*/)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
if (automation_menu == 0) {
|
|
|
|
automation_menu = manage (new Menu);
|
|
|
|
automation_menu->set_name ("ArdourContextMenu");
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
MenuList& items (automation_menu->items());
|
|
|
|
|
|
|
|
items.clear ();
|
2009-10-14 12:10:01 -04:00
|
|
|
items.push_back (MenuElem (_("Manual"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Off, cui)));
|
2006-08-10 23:24:57 -04:00
|
|
|
items.push_back (MenuElem (_("Play"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Play, cui)));
|
2006-08-10 23:24:57 -04:00
|
|
|
items.push_back (MenuElem (_("Write"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Write, cui)));
|
2006-08-10 23:24:57 -04:00
|
|
|
items.push_back (MenuElem (_("Touch"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Touch, cui)));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
automation_menu->popup (1, gtk_get_current_event_time());
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::set_automation_state (AutoState state, ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2007-07-03 14:39:09 -04:00
|
|
|
insert->set_parameter_automation_state (cui->parameter(), state);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2009-04-15 14:04:23 -04:00
|
|
|
void
|
|
|
|
GenericPluginUI::toggle_parameter_changed (ControlUI* cui)
|
|
|
|
{
|
|
|
|
float val = cui->control->get_value();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-04-15 14:04:23 -04:00
|
|
|
if (!cui->ignore_change) {
|
|
|
|
if (val > 0.5) {
|
|
|
|
cui->button->set_active (true);
|
|
|
|
} else {
|
|
|
|
cui->button->set_active (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::parameter_changed (ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
if (!cui->update_pending) {
|
|
|
|
cui->update_pending = true;
|
2010-03-30 11:18:43 -04:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&GenericPluginUI::update_control_display, this, cui));
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-10-14 12:10:01 -04:00
|
|
|
GenericPluginUI::update_control_display (ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
/* XXX how do we handle logarithmic stuff here ? */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
cui->update_pending = false;
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
float val = cui->control->get_value();
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
cui->ignore_change++;
|
2009-04-15 14:04:23 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (cui->combo) {
|
|
|
|
std::map<string,float>::iterator it;
|
|
|
|
for (it = cui->combo_map->begin(); it != cui->combo_map->end(); ++it) {
|
|
|
|
if (it->second == val) {
|
|
|
|
cui->combo->set_active_text(it->first);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
} else if (cui->button) {
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
if (val > 0.5) {
|
|
|
|
cui->button->set_active (true);
|
|
|
|
} else {
|
|
|
|
cui->button->set_active (false);
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
|
|
|
|
2008-09-28 21:22:21 -04:00
|
|
|
if( cui->controller ) {
|
|
|
|
cui->controller->display_effective_value();
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
/*} else {
|
2006-08-10 23:24:57 -04:00
|
|
|
if (cui->logarithmic) {
|
|
|
|
val = log(val);
|
|
|
|
}
|
|
|
|
if (val != cui->adjustment->get_value()) {
|
|
|
|
cui->adjustment->set_value (val);
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
}*/
|
2006-08-10 23:24:57 -04:00
|
|
|
cui->ignore_change--;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::control_port_toggled (ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2009-04-15 14:04:23 -04:00
|
|
|
cui->ignore_change++;
|
|
|
|
insert->automation_control (cui->parameter())->set_value (cui->button->get_active());
|
|
|
|
cui->ignore_change--;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::control_combo_changed (ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
if (!cui->ignore_change) {
|
|
|
|
string value = cui->combo->get_active_text();
|
|
|
|
std::map<string,float> mapping = *cui->combo_map;
|
2008-10-13 13:29:22 -04:00
|
|
|
insert->automation_control(cui->parameter())->set_value(mapping[value]);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::processor_active_changed (boost::weak_ptr<Processor> weak_processor)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &GenericPluginUI::processor_active_changed, weak_processor)
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-27 16:23:48 -04:00
|
|
|
boost::shared_ptr<Processor> processor = weak_processor.lock();
|
2007-06-23 16:13:13 -04:00
|
|
|
|
2007-06-27 16:23:48 -04:00
|
|
|
bypass_button.set_active (!processor || !processor->active());
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
GenericPluginUI::start_updating (GdkEventAny*)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
if (output_controls.size() > 0 ) {
|
|
|
|
screen_update_connection.disconnect();
|
2009-10-14 12:10:01 -04:00
|
|
|
screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect
|
2009-12-11 18:29:48 -05:00
|
|
|
(sigc::mem_fun(*this, &GenericPluginUI::output_update));
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2009-07-21 11:55:17 -04:00
|
|
|
GenericPluginUI::stop_updating (GdkEventAny*)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2010-02-02 19:52:45 -05:00
|
|
|
for (vector<ControlUI*>::iterator i = input_controls.begin(); i != input_controls.end(); ++i) {
|
|
|
|
(*i)->controller->stop_updating ();
|
|
|
|
}
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (output_controls.size() > 0 ) {
|
|
|
|
screen_update_connection.disconnect();
|
|
|
|
}
|
2010-02-02 19:52:45 -05:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::output_update ()
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
for (vector<ControlUI*>::iterator i = output_controls.begin(); i != output_controls.end(); ++i) {
|
2007-07-03 14:39:09 -04:00
|
|
|
float val = plugin->get_parameter ((*i)->parameter().id());
|
2006-08-10 23:24:57 -04:00
|
|
|
char buf[32];
|
|
|
|
snprintf (buf, sizeof(buf), "%.2f", val);
|
|
|
|
(*i)->display_label->set_text (buf);
|
|
|
|
|
|
|
|
/* autoscaling for the meter */
|
|
|
|
if ((*i)->meterinfo && (*i)->meterinfo->packed) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if (val < (*i)->meterinfo->min) {
|
|
|
|
if ((*i)->meterinfo->min_unbound)
|
|
|
|
(*i)->meterinfo->min = val;
|
|
|
|
else
|
|
|
|
val = (*i)->meterinfo->min;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val > (*i)->meterinfo->max) {
|
|
|
|
if ((*i)->meterinfo->max_unbound)
|
|
|
|
(*i)->meterinfo->max = val;
|
|
|
|
else
|
|
|
|
val = (*i)->meterinfo->max;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
if ((*i)->meterinfo->max > (*i)->meterinfo->min ) {
|
|
|
|
float lval = (val - (*i)->meterinfo->min) / ((*i)->meterinfo->max - (*i)->meterinfo->min) ;
|
|
|
|
(*i)->meterinfo->meter->set (lval );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
vector<string>
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::setup_scale_values(guint32 port_index, ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
vector<string> enums;
|
2008-02-01 22:57:35 -05:00
|
|
|
boost::shared_ptr<LadspaPlugin> lp;
|
2009-05-03 15:53:09 -04:00
|
|
|
#ifdef HAVE_SLV2
|
2008-02-01 22:57:35 -05:00
|
|
|
boost::shared_ptr<LV2Plugin> lv2p;
|
2008-02-02 12:22:04 -05:00
|
|
|
#endif
|
2008-02-01 22:57:35 -05:00
|
|
|
|
|
|
|
if ((lp = boost::dynamic_pointer_cast<LadspaPlugin>(plugin)) != 0) {
|
|
|
|
// all LADPSA plugins have a numeric unique ID
|
|
|
|
uint32_t id = atol (lp->unique_id().c_str());
|
|
|
|
|
|
|
|
cui->combo_map = new std::map<string, float>;
|
|
|
|
lrdf_defaults* defaults = lrdf_get_scale_values(id, port_index);
|
|
|
|
if (defaults) {
|
|
|
|
for (uint32_t i = 0; i < defaults->count; ++i) {
|
|
|
|
enums.push_back(defaults->items[i].label);
|
|
|
|
pair<string, float> newpair;
|
|
|
|
newpair.first = defaults->items[i].label;
|
|
|
|
newpair.second = defaults->items[i].value;
|
|
|
|
cui->combo_map->insert(newpair);
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
lrdf_free_setting_values(defaults);
|
|
|
|
}
|
|
|
|
|
2009-05-03 15:53:09 -04:00
|
|
|
#ifdef HAVE_SLV2
|
2008-02-01 22:57:35 -05:00
|
|
|
} else if ((lv2p = boost::dynamic_pointer_cast<LV2Plugin>(plugin)) != 0) {
|
|
|
|
|
|
|
|
SLV2Port port = lv2p->slv2_port(port_index);
|
|
|
|
SLV2ScalePoints points = slv2_port_get_scale_points(lv2p->slv2_plugin(), port);
|
|
|
|
cui->combo_map = new std::map<string, float>;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
for (unsigned i=0; i < slv2_scale_points_size(points); ++i) {
|
|
|
|
SLV2ScalePoint p = slv2_scale_points_get_at(points, i);
|
|
|
|
SLV2Value label = slv2_scale_point_get_label(p);
|
|
|
|
SLV2Value value = slv2_scale_point_get_value(p);
|
|
|
|
if (label && (slv2_value_is_float(value) || slv2_value_is_int(value))) {
|
|
|
|
enums.push_back(slv2_value_as_string(label));
|
|
|
|
pair<string, float> newpair;
|
|
|
|
newpair.first = slv2_value_as_string(label);
|
|
|
|
newpair.second = slv2_value_as_float(value);
|
|
|
|
cui->combo_map->insert(newpair);
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
slv2_scale_points_free(points);
|
2008-02-02 12:22:04 -05:00
|
|
|
#endif
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
return enums;
|
|
|
|
}
|
2008-10-15 15:21:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|