2006-08-10 23:24:57 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2008-2009 Sampo Savolainen <v2@iki.fi>
|
|
|
|
* Copyright (C) 2008-2015 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2008-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2013-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2013 John Emmas <john@creativepost.co.uk>
|
|
|
|
* Copyright (C) 2014-2015 Tim Mayberry <mojofunk@gmail.com>
|
|
|
|
* Copyright (C) 2014 Ben Loftis <ben@harrisonconsoles.com>
|
|
|
|
* Copyright (C) 2016-2017 Julien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>
|
|
|
|
* Copyright (C) 2017-2018 Johannes Mueller <github@johannes-mueller.org>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2006-08-10 23:24:57 -04:00
|
|
|
|
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>
|
2013-10-03 04:12:02 -04:00
|
|
|
#include <vector>
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2017-07-16 21:48:18 -04:00
|
|
|
#include <gtkmm/separator.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/stl_delete.h"
|
2016-07-08 12:17:21 -04:00
|
|
|
#include "pbd/unwind.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/xml++.h"
|
|
|
|
#include "pbd/failed_constructor.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2017-09-08 13:42:24 -04:00
|
|
|
#include "evoral/midi_events.h"
|
2019-10-25 15:13:51 -04:00
|
|
|
#include "evoral/PatchChange.h"
|
2017-09-08 13:42:24 -04:00
|
|
|
|
|
|
|
#include "midi++/midnam_patch.h"
|
|
|
|
|
|
|
|
#include "ardour/midi_patch_manager.h"
|
|
|
|
#include "ardour/midi_track.h"
|
2017-07-16 21:48:18 -04:00
|
|
|
#include "ardour/plugin.h"
|
|
|
|
#include "ardour/plugin_insert.h"
|
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/value_as_string.h"
|
|
|
|
|
2017-09-08 13:42:24 -04:00
|
|
|
#include "gtkmm2ext/menu_elems.h"
|
2017-07-15 11:38:28 -04:00
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
#include "gtkmm2ext/doi.h"
|
|
|
|
|
2022-02-04 17:05:58 -05:00
|
|
|
#include "widgets/frame.h"
|
2017-07-15 11:38:28 -04:00
|
|
|
#include "widgets/ardour_knob.h"
|
2022-02-04 17:05:58 -05:00
|
|
|
#include "widgets/ardour_spacer.h"
|
2017-07-16 16:13:46 -04:00
|
|
|
#include "widgets/fastmeter.h"
|
|
|
|
#include "widgets/slider_controller.h"
|
2017-07-15 11:38:28 -04:00
|
|
|
#include "widgets/tooltips.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
#include "plugin_ui.h"
|
2018-12-20 10:56:34 -05:00
|
|
|
#include "plugin_presets_ui.h"
|
2017-07-20 18:36:40 -04:00
|
|
|
#include "plugin_display.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
#include "gui_thread.h"
|
2007-06-30 14:41:50 -04:00
|
|
|
#include "automation_controller.h"
|
2016-07-08 12:17:21 -04:00
|
|
|
#include "gain_meter.h"
|
2014-12-25 10:02:00 -05:00
|
|
|
#include "timers.h"
|
2015-01-02 09:44:54 -05:00
|
|
|
#include "ui_config.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Gtkmm2ext;
|
2017-07-15 11:38:28 -04:00
|
|
|
using namespace ArdourWidgets;
|
2006-08-10 23:24:57 -04:00
|
|
|
using namespace Gtk;
|
2015-01-05 00:32:14 -05:00
|
|
|
using namespace ARDOUR_UI_UTILS;
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
GenericPluginUI::GenericPluginUI (boost::shared_ptr<PlugInsertBase> pib, bool scrollable)
|
|
|
|
: PlugUIBase (pib)
|
2014-10-31 01:02:32 -04:00
|
|
|
, automation_menu (0)
|
|
|
|
, is_scrollable(scrollable)
|
2021-01-08 16:43:40 -05:00
|
|
|
, _plugin_pianokeyboard_expander (_("MIDI Keyboard (audition only)"))
|
2017-09-08 16:56:18 -04:00
|
|
|
, _piano (0)
|
|
|
|
, _piano_velocity (*manage (new Adjustment (100, 1, 127, 1, 16)))
|
|
|
|
, _piano_channel (*manage (new Adjustment (0, 1, 16, 1, 1)))
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
|
|
|
set_name ("PluginEditor");
|
2020-09-15 17:42:17 -04:00
|
|
|
set_border_width (6);
|
2008-10-15 15:21:26 -04:00
|
|
|
//set_homogeneous (false);
|
|
|
|
|
2011-05-18 01:00:44 -04:00
|
|
|
pack_start (main_contents, true, true);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
HBox* smaller_hbox = manage (new HBox);
|
2020-09-15 17:42:17 -04:00
|
|
|
smaller_hbox->set_spacing (6);
|
|
|
|
smaller_hbox->set_border_width (0);
|
2022-02-04 17:05:58 -05:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pib->ui_elements () == PlugInsertBase::NoGUIToolbar) {
|
2022-02-04 17:05:58 -05:00
|
|
|
Gtk::Label* spacer = manage (new Gtk::Label());
|
|
|
|
smaller_hbox->pack_start(*spacer);
|
|
|
|
} else {
|
|
|
|
add_common_widgets (smaller_hbox, false);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2019-10-31 18:57:46 -04:00
|
|
|
automation_manual_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Off));
|
2014-11-14 17:14:48 -05:00
|
|
|
automation_manual_all_button.set_name (X_("generic button"));
|
2019-10-31 18:57:46 -04:00
|
|
|
automation_play_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Play));
|
2014-11-14 17:14:48 -05:00
|
|
|
automation_play_all_button.set_name (X_("generic button"));
|
2019-10-31 18:57:46 -04:00
|
|
|
automation_write_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Write));
|
2014-11-14 17:14:48 -05:00
|
|
|
automation_write_all_button.set_name (X_("generic button"));
|
2019-10-31 18:57:46 -04:00
|
|
|
automation_touch_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Touch));
|
2014-11-14 17:14:48 -05:00
|
|
|
automation_touch_all_button.set_name (X_("generic button"));
|
2019-10-31 18:57:46 -04:00
|
|
|
automation_latch_all_button.set_text (GainMeterBase::astate_string (ARDOUR::Latch));
|
2017-07-25 10:10:38 -04:00
|
|
|
automation_latch_all_button.set_name (X_("generic button"));
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pib->ui_elements () & PlugInsertBase::MIDIKeyboard) {
|
|
|
|
_piano = new APianoKeyboard ();
|
|
|
|
_piano->set_can_focus ();
|
2017-09-08 16:56:18 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
_piano->NoteOn.connect (sigc::mem_fun (*this, &GenericPluginUI::note_on_event_handler));
|
|
|
|
_piano->NoteOff.connect (sigc::mem_fun (*this, &GenericPluginUI::note_off_event_handler));
|
2017-09-08 16:56:18 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
HBox* box = manage (new HBox);
|
|
|
|
box->pack_start (*manage (new Label (_("Channel:"))), false, false);
|
|
|
|
box->pack_start (_piano_channel, false, false);
|
|
|
|
box->pack_start (*manage (new Label (_("Velocity:"))), false, false);
|
|
|
|
box->pack_start (_piano_velocity, false, false);
|
2017-09-08 16:56:18 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
Box* box2 = manage (new HBox ());
|
|
|
|
box2->pack_start (*box, true, false);
|
2017-09-08 16:56:18 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
_pianobox.set_spacing (4);
|
|
|
|
_pianobox.pack_start (*box2, true, true);
|
|
|
|
_pianobox.pack_start (*_piano, true, true);
|
2017-09-08 16:56:18 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
_plugin_pianokeyboard_expander.set_expanded(false);
|
|
|
|
_plugin_pianokeyboard_expander.property_expanded().signal_changed().connect( sigc::mem_fun(*this, &GenericPluginUI::toggle_pianokeyboard));
|
2017-09-08 16:56:18 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
pack_end (_plugin_pianokeyboard_expander, false, false);
|
|
|
|
} else if (_pi && _pi->ui_elements () != PlugInsertBase::NoGUIToolbar) {
|
|
|
|
pack_end (plugin_analysis_expander, false, false);
|
|
|
|
}
|
2018-05-17 16:14:08 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pib->provides_stats ()) {
|
|
|
|
pack_end (cpuload_expander, false, false);
|
|
|
|
}
|
2018-05-17 16:14:08 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (!plugin->get_docs().empty()) {
|
|
|
|
pack_end (description_expander, false, false);
|
2012-04-19 22:12:29 -04:00
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2020-09-15 17:42:17 -04:00
|
|
|
settings_box.set_homogeneous (false);
|
|
|
|
settings_box.set_spacing (0);
|
|
|
|
settings_box.set_border_width (0);
|
|
|
|
settings_box.pack_start (*smaller_hbox, false, false);
|
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
bool has_automatables = false;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < plugin->parameter_count(); ++i) {
|
|
|
|
if (!plugin->parameter_is_control (i)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!plugin->parameter_is_input (i)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const Evoral::Parameter param(PluginAutomation, 0, i);
|
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> c (boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(_pib->control (param)));
|
|
|
|
if (!c) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c->flags () & Controllable::HiddenControl) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c->flags () & Controllable::NotAutomatable) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
has_automatables = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_pi && has_automatables) {
|
2017-09-08 14:54:19 -04:00
|
|
|
HBox* automation_hbox = manage (new HBox);
|
|
|
|
automation_hbox->set_spacing (6);
|
|
|
|
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);
|
2020-09-15 17:42:17 -04:00
|
|
|
settings_box.pack_start (*automation_hbox, false, false, 6);
|
2017-09-08 14:54:19 -04:00
|
|
|
}
|
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
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pi) {
|
|
|
|
_pi->ActiveChanged.connect (active_connection, invalidator (*this), boost::bind (&GenericPluginUI::processor_active_changed, this, boost::weak_ptr<Processor>(_pi)), gui_context());
|
|
|
|
_bypass_button.set_active (!_pi->enabled());
|
|
|
|
} else {
|
|
|
|
_bypass_button.set_sensitive (false);
|
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
|
2017-08-30 14:03:24 -04:00
|
|
|
/* ScrolledWindow will wrap hpacker in a Viewport */
|
|
|
|
scroller.add (hpacker);
|
|
|
|
Viewport* view = static_cast<Viewport*>(scroller.get_child());
|
|
|
|
view->set_shadow_type(Gtk::SHADOW_NONE);
|
|
|
|
|
|
|
|
main_contents.pack_start (scroller, true, true);
|
|
|
|
|
2018-12-05 14:18:56 -05:00
|
|
|
prefheight = -1;
|
2006-08-12 15:43:09 -04:00
|
|
|
build ();
|
2016-07-28 13:43:43 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pib->plugin()->has_midnam() && _pib->plugin()->knows_bank_patch()) {
|
2017-09-08 20:24:51 -04:00
|
|
|
build_midi_table ();
|
2017-09-08 13:42:24 -04:00
|
|
|
}
|
|
|
|
|
2017-08-30 14:03:24 -04:00
|
|
|
if (is_scrollable) {
|
|
|
|
scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
|
|
|
|
scroller.set_name ("PluginEditor");
|
|
|
|
} else {
|
|
|
|
scroller.signal_size_request().connect (sigc::mem_fun(*this, &GenericPluginUI::scroller_size_request));
|
2018-11-15 17:05:07 -05:00
|
|
|
scroller.signal_realize().connect (sigc::mem_fun(scroller, &Widget::queue_resize));
|
2017-08-30 14:03:24 -04:00
|
|
|
scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_NEVER);
|
|
|
|
}
|
|
|
|
|
2016-07-08 12:17:21 -04:00
|
|
|
main_contents.show ();
|
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();
|
|
|
|
}
|
2019-03-07 10:40:16 -05:00
|
|
|
delete automation_menu;
|
2019-10-24 13:43:46 -04:00
|
|
|
delete _piano;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2017-08-30 14:03:24 -04:00
|
|
|
void
|
|
|
|
GenericPluginUI::scroller_size_request (Gtk::Requisition* a)
|
|
|
|
{
|
2017-09-20 11:59:13 -04:00
|
|
|
GtkRequisition request = hpacker.size_request();
|
|
|
|
|
2018-11-15 17:05:07 -05:00
|
|
|
Glib::RefPtr<Gdk::Window> window (scroller.get_window());
|
2017-09-19 18:38:40 -04:00
|
|
|
Glib::RefPtr<Gdk::Screen> screen;
|
2017-08-30 14:03:24 -04:00
|
|
|
|
2017-09-19 18:38:40 -04:00
|
|
|
if (window) {
|
2018-11-15 17:05:07 -05:00
|
|
|
screen = window->get_screen();
|
2017-09-19 18:38:40 -04:00
|
|
|
}
|
|
|
|
|
2017-09-20 02:56:44 -04:00
|
|
|
if (!screen) {
|
2018-11-15 17:05:07 -05:00
|
|
|
a->width = min(1024, request.width);
|
2017-09-20 02:56:44 -04:00
|
|
|
return;
|
|
|
|
}
|
2017-09-19 18:38:40 -04:00
|
|
|
|
2017-09-20 02:56:44 -04:00
|
|
|
Gdk::Rectangle monitor;
|
|
|
|
const int monitor_num = screen->get_monitor_at_window (window);
|
|
|
|
screen->get_monitor_geometry (
|
|
|
|
(monitor_num < 0) ? 0 : monitor_num,
|
|
|
|
monitor);
|
2017-08-30 14:03:24 -04:00
|
|
|
|
2017-09-20 02:56:44 -04:00
|
|
|
const int maximum_width = monitor.get_width() * 0.9;
|
2017-08-30 14:03:24 -04:00
|
|
|
|
|
|
|
if (request.width > maximum_width) {
|
2017-08-30 17:10:26 -04:00
|
|
|
for (vector<ControlUI*>::const_iterator cuip = input_controls.begin();
|
|
|
|
cuip != input_controls.end();
|
2017-08-30 14:03:24 -04:00
|
|
|
++cuip) {
|
|
|
|
if (!(*cuip)->short_autostate)
|
|
|
|
set_short_autostate(*cuip, true);
|
|
|
|
}
|
|
|
|
request = hpacker.size_request();
|
|
|
|
}
|
|
|
|
|
|
|
|
a->width = min(request.width, maximum_width);
|
|
|
|
}
|
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
// Some functions for calculating the 'similarity' of two plugin
|
|
|
|
// control labels.
|
|
|
|
|
|
|
|
static int get_number(string label) {
|
|
|
|
static const char *digits = "0123456789";
|
|
|
|
int value = -1;
|
|
|
|
|
|
|
|
std::size_t first_digit_pos = label.find_first_of(digits);
|
|
|
|
if (first_digit_pos != string::npos) {
|
|
|
|
// found some digits: there's a number in there somewhere
|
|
|
|
stringstream s;
|
|
|
|
s << label.substr(first_digit_pos);
|
|
|
|
s >> value;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int match_or_digit(char c1, char c2) {
|
|
|
|
return c1 == c2 || (isdigit(c1) && isdigit(c2));
|
2015-10-05 10:17:49 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
|
|
|
|
static std::size_t matching_chars_at_head(const string s1, const string s2) {
|
|
|
|
std::size_t length, n = 0;
|
|
|
|
|
|
|
|
length = min(s1.length(), s2.length());
|
|
|
|
while (n < length) {
|
|
|
|
if (!match_or_digit(s1[n], s2[n]))
|
|
|
|
break;
|
|
|
|
n++;
|
2015-10-04 14:51:05 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::size_t matching_chars_at_tail(const string s1, const string s2) {
|
|
|
|
std::size_t s1pos, s2pos, n = 0;
|
|
|
|
|
|
|
|
s1pos = s1.length();
|
|
|
|
s2pos = s2.length();
|
|
|
|
while (s1pos-- > 0 && s2pos-- > 0) {
|
2019-04-13 11:48:27 -04:00
|
|
|
if (!match_or_digit(s1[s1pos], s2[s2pos])) {
|
2011-07-11 08:34:20 -04:00
|
|
|
break;
|
2019-04-13 11:48:27 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
n++;
|
2015-10-04 14:51:05 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const guint32 min_controls_per_column = 17, max_controls_per_column = 24;
|
|
|
|
static const float default_similarity_threshold = 0.3;
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::build ()
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2014-11-01 23:29:10 -04:00
|
|
|
std::vector<ControlUI *> control_uis;
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
// Build a ControlUI for each control port
|
2016-07-07 20:41:42 -04:00
|
|
|
for (size_t i = 0; i < plugin->parameter_count(); ++i) {
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
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 */
|
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
const Evoral::Parameter param(PluginAutomation, 0, i);
|
|
|
|
if (plugin->describe_parameter (param) == X_("latency")) {
|
2006-08-10 23:24:57 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
if (plugin->describe_parameter (param) == X_("hidden")) {
|
2013-05-25 03:06:06 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
const float value = plugin->get_parameter(i);
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
ControlUI* cui;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> c (boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(_pib->control (param)));
|
2008-09-18 20:47:49 -04:00
|
|
|
|
2020-03-25 11:36:54 -04:00
|
|
|
if (c && c->flags () & Controllable::HiddenControl) {
|
2020-03-18 13:09:20 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-10-31 23:48:27 -04:00
|
|
|
ParameterDescriptor desc;
|
2014-10-31 22:20:24 -04:00
|
|
|
plugin->get_parameter_descriptor(i, desc);
|
2021-06-03 19:43:01 -04:00
|
|
|
if ((cui = build_control_ui (param, desc, c, value, plugin->parameter_is_input(i))) == 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
|
|
|
|
2012-04-19 21:24:07 -04:00
|
|
|
const std::string param_docs = plugin->get_parameter_docs(i);
|
2012-04-19 22:12:29 -04:00
|
|
|
if (!param_docs.empty()) {
|
2015-01-05 00:32:14 -05:00
|
|
|
set_tooltip(cui, param_docs.c_str());
|
2012-04-19 21:24:07 -04:00
|
|
|
}
|
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
control_uis.push_back(cui);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
2014-11-02 13:02:54 -05:00
|
|
|
const Evoral::Parameter param(PluginPropertyAutomation, 0, desc.key);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> c (boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(_pib->control (param)));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
if (!c) {
|
|
|
|
error << string_compose(_("Plugin Editor: no control for property %1"), desc.key) << endmsg;
|
|
|
|
continue;
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
ControlUI* cui = build_control_ui(param, desc, c, c->get_value(), true);
|
2014-11-01 23:29:10 -04:00
|
|
|
if (!cui) {
|
|
|
|
error << string_compose(_("Plugin Editor: could not build control element for property %1"),
|
|
|
|
desc.key) << endmsg;
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
control_uis.push_back(cui);
|
|
|
|
}
|
|
|
|
if (!descs.empty()) {
|
2017-09-08 22:39:10 -04:00
|
|
|
/* Listen for property changes that are not notified normally because
|
|
|
|
* AutomationControl has only support for numeric values currently.
|
|
|
|
* The only case is Variant::PATH for now */
|
|
|
|
plugin->PropertyChanged.connect(*this, invalidator(*this),
|
|
|
|
boost::bind(&GenericPluginUI::path_property_changed, this, _1, _2),
|
|
|
|
gui_context());
|
|
|
|
|
|
|
|
/* and query current property value */
|
2014-11-01 23:29:10 -04:00
|
|
|
plugin->announce_property_values();
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (control_uis.empty () && _pi) {
|
2019-10-10 16:31:19 -04:00
|
|
|
if (has_descriptive_presets ()) {
|
2022-04-04 14:48:56 -04:00
|
|
|
preset_gui = new PluginPresetsUI (_pi); // XXX
|
2018-12-20 10:56:34 -05:00
|
|
|
hpacker.pack_start (*preset_gui, true, true);
|
|
|
|
}
|
2016-07-08 12:17:21 -04:00
|
|
|
} else {
|
|
|
|
automatic_layout (control_uis);
|
|
|
|
}
|
2016-07-07 20:41:42 -04:00
|
|
|
|
|
|
|
output_update ();
|
|
|
|
|
|
|
|
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));
|
2017-07-25 10:10:38 -04:00
|
|
|
automation_latch_all_button.signal_clicked.connect(sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::set_all_automation), ARDOUR::Latch));
|
2016-07-28 20:06:55 -04:00
|
|
|
|
|
|
|
/* XXX This is a workaround for AutomationControl not knowing about preset loads */
|
|
|
|
plugin->PresetLoaded.connect (*this, invalidator (*this), boost::bind (&GenericPluginUI::update_input_displays, this), gui_context ());
|
2016-07-07 20:41:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2016-07-08 12:17:21 -04:00
|
|
|
GenericPluginUI::automatic_layout (const std::vector<ControlUI*>& control_uis)
|
2016-07-07 20:41:42 -04:00
|
|
|
{
|
|
|
|
guint32 x = 0;
|
|
|
|
|
|
|
|
static const int32_t initial_button_rows = 12;
|
|
|
|
static const int32_t initial_button_cols = 1;
|
|
|
|
static const int32_t initial_output_rows = 1;
|
|
|
|
static const int32_t initial_output_cols = 4;
|
|
|
|
|
|
|
|
Gtk::Table* button_table = manage (new Gtk::Table (initial_button_rows, initial_button_cols));
|
|
|
|
Gtk::Table* output_table = manage (new Gtk::Table (initial_output_rows, initial_output_cols));
|
|
|
|
|
2022-02-04 17:05:58 -05:00
|
|
|
Gtk::Frame* frame;
|
|
|
|
Gtk::Frame* bt_frame;
|
2016-07-07 20:41:42 -04:00
|
|
|
VBox* box;
|
|
|
|
int output_row, output_col;
|
|
|
|
int button_row, button_col;
|
|
|
|
int output_rows, output_cols;
|
|
|
|
int button_rows, button_cols;
|
|
|
|
|
|
|
|
hpacker.set_spacing (10);
|
|
|
|
hpacker.set_border_width (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);
|
2017-09-08 13:42:24 -04:00
|
|
|
button_table->set_border_width (5);
|
|
|
|
|
2016-07-07 20:41:42 -04:00
|
|
|
output_table->set_homogeneous (true);
|
|
|
|
output_table->set_row_spacings (2);
|
|
|
|
output_table->set_col_spacings (2);
|
|
|
|
output_table->set_border_width (5);
|
|
|
|
|
|
|
|
|
2022-02-04 17:05:58 -05:00
|
|
|
bt_frame = manage (new Gtk::Frame);
|
2018-06-09 13:08:15 -04:00
|
|
|
bt_frame->set_name ("BaseFrame");
|
|
|
|
bt_frame->set_label (_("Switches"));
|
|
|
|
bt_frame->add (*button_table);
|
|
|
|
hpacker.pack_start(*bt_frame, true, true);
|
2016-07-07 20:41:42 -04:00
|
|
|
|
|
|
|
box = manage (new VBox);
|
|
|
|
box->set_border_width (5);
|
|
|
|
box->set_spacing (1);
|
|
|
|
|
2022-02-04 17:05:58 -05:00
|
|
|
frame = manage (new Gtk::Frame);
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->set_name ("BaseFrame");
|
|
|
|
frame->set_label (_("Controls"));
|
|
|
|
frame->add (*box);
|
|
|
|
hpacker.pack_start(*frame, true, true);
|
2016-07-07 20:41:42 -04:00
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
// Add special controls to UI, and build list of normal controls to be layed out later
|
|
|
|
std::vector<ControlUI *> cui_controls_list;
|
2016-07-07 20:41:42 -04:00
|
|
|
for (size_t i = 0; i < control_uis.size(); ++i) {
|
2014-11-01 23:29:10 -04:00
|
|
|
ControlUI* cui = control_uis[i];
|
|
|
|
|
2016-07-03 18:19:13 -04:00
|
|
|
if (cui->button || cui->file_button) {
|
2014-11-01 23:29:10 -04:00
|
|
|
|
|
|
|
if (!is_scrollable && button_row == button_rows) {
|
|
|
|
button_row = 0;
|
|
|
|
if (++button_col == button_cols) {
|
|
|
|
button_cols += 2;
|
2016-07-07 20:41:42 -04:00
|
|
|
button_table->resize (button_rows, button_cols);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-07-07 20:41:42 -04:00
|
|
|
button_table->attach (*cui, button_col, button_col + 1, button_row, button_row+1,
|
2014-11-01 23:29:10 -04:00
|
|
|
FILL|EXPAND, FILL);
|
|
|
|
button_row++;
|
2014-10-30 22:26:47 -04:00
|
|
|
|
2017-09-24 23:22:05 -04:00
|
|
|
} else if (cui->controller || cui->combo) {
|
2016-07-03 18:19:13 -04:00
|
|
|
// 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);
|
|
|
|
|
2014-11-01 23:29:10 -04:00
|
|
|
} else if (cui->display) {
|
|
|
|
|
2016-07-07 20:41:42 -04:00
|
|
|
output_table->attach (*cui, output_col, output_col + 1, output_row, output_row+1,
|
2014-11-01 23:29:10 -04:00
|
|
|
FILL|EXPAND, FILL);
|
|
|
|
|
|
|
|
// TODO: The meters should be divided into multiple rows
|
|
|
|
|
|
|
|
if (++output_col == output_cols) {
|
|
|
|
output_cols ++;
|
2016-07-07 20:41:42 -04:00
|
|
|
output_table->resize (output_rows, output_cols);
|
2014-11-01 23:29:10 -04:00
|
|
|
}
|
2014-10-30 22:26:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
// Iterate over the list of controls to find which adjacent controls
|
|
|
|
// are similar enough to be grouped together.
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
string label, previous_label = "";
|
2013-10-03 04:12:02 -04:00
|
|
|
std::vector<int> numbers_in_labels(cui_controls_list.size());
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-10-03 04:12:02 -04:00
|
|
|
std::vector<float> similarity_scores(cui_controls_list.size());
|
2011-07-11 08:34:20 -04:00
|
|
|
float most_similar = 0.0, least_similar = 1.0;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-07-07 20:41:42 -04:00
|
|
|
size_t i = 0;
|
2011-07-11 08:34:20 -04:00
|
|
|
for (vector<ControlUI*>::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) {
|
|
|
|
label = (*cuip)->label.get_text();
|
|
|
|
numbers_in_labels[i] = get_number(label);
|
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
// A hand-wavy calculation of how similar this control's
|
|
|
|
// label is to the previous.
|
2015-10-04 14:51:05 -04:00
|
|
|
similarity_scores[i] =
|
|
|
|
(float) (
|
|
|
|
( matching_chars_at_head(label, previous_label) +
|
2011-07-11 08:34:20 -04:00
|
|
|
matching_chars_at_tail(label, previous_label) +
|
2015-10-04 14:51:05 -04:00
|
|
|
1
|
|
|
|
)
|
2011-07-11 08:34:20 -04:00
|
|
|
) / (label.length() + previous_label.length());
|
|
|
|
if (numbers_in_labels[i] >= 0) {
|
|
|
|
similarity_scores[i] += (numbers_in_labels[i] == numbers_in_labels[i-1]);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
least_similar = min(least_similar, similarity_scores[i]);
|
|
|
|
most_similar = max(most_similar, similarity_scores[i]);
|
|
|
|
} else {
|
|
|
|
similarity_scores[0] = 1.0;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
// cerr << "label: " << label << " sim: " << fixed << setprecision(3) << similarity_scores[i] << " num: " << numbers_in_labels[i] << endl;
|
2015-10-05 10:17:49 -04:00
|
|
|
previous_label = label;
|
2011-07-11 08:34:20 -04:00
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
// cerr << "most similar: " << most_similar << ", least similar: " << least_similar << endl;
|
|
|
|
float similarity_threshold;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
if (most_similar > 1.0) {
|
|
|
|
similarity_threshold = default_similarity_threshold;
|
|
|
|
} else {
|
|
|
|
similarity_threshold = most_similar - (1 - default_similarity_threshold);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
// Now iterate over the list of controls to display them, placing an
|
2015-10-04 14:51:05 -04:00
|
|
|
// HSeparator between controls of less than a certain similarity, and
|
2011-07-11 08:34:20 -04:00
|
|
|
// starting a new column when necessary.
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
i = 0;
|
|
|
|
for (vector<ControlUI*>::iterator cuip = cui_controls_list.begin(); cuip != cui_controls_list.end(); ++cuip, ++i) {
|
|
|
|
|
|
|
|
ControlUI* cui = *cuip;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
if (!is_scrollable) {
|
|
|
|
x++;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2011-07-11 08:34:20 -04:00
|
|
|
if (x > max_controls_per_column || similarity_scores[i] <= similarity_threshold) {
|
|
|
|
if (x > min_controls_per_column) {
|
2022-02-04 17:05:58 -05:00
|
|
|
frame = manage (new Gtk::Frame);
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->set_name ("BaseFrame");
|
|
|
|
frame->set_label (_("Controls"));
|
2011-07-11 08:34:20 -04:00
|
|
|
box = manage (new VBox);
|
|
|
|
box->set_border_width (5);
|
|
|
|
box->set_spacing (1);
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->add (*box);
|
|
|
|
hpacker.pack_start(*frame, true, true);
|
2011-07-11 08:34:20 -04:00
|
|
|
x = 0;
|
|
|
|
} else {
|
|
|
|
HSeparator *split = new HSeparator();
|
|
|
|
split->set_size_request(-1, 5);
|
|
|
|
box->pack_start(*split, false, false, 0);
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2011-07-11 08:34:20 -04:00
|
|
|
box->pack_start (*cui, false, false);
|
|
|
|
}
|
|
|
|
|
2018-12-05 14:18:56 -05:00
|
|
|
if (is_scrollable && i > 0) {
|
2011-07-11 08:34:20 -04:00
|
|
|
prefheight = 30 * i;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (box->children().empty()) {
|
2018-06-09 13:08:15 -04:00
|
|
|
hpacker.remove (*frame);
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 20:41:42 -04:00
|
|
|
if (button_table->children().empty()) {
|
2018-06-09 13:08:15 -04:00
|
|
|
hpacker.remove (*bt_frame);
|
2016-07-07 20:41:42 -04:00
|
|
|
delete button_table;
|
|
|
|
} else {
|
|
|
|
button_table->show_all ();
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 20:41:42 -04:00
|
|
|
if (!output_table->children().empty()) {
|
2022-02-04 17:05:58 -05:00
|
|
|
frame = manage (new Gtk::Frame);
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->set_name ("BaseFrame");
|
|
|
|
frame->set_label(_("Meters"));
|
|
|
|
frame->add (*output_table);
|
|
|
|
hpacker.pack_end (*frame, true, true);
|
2016-07-07 20:41:42 -04:00
|
|
|
output_table->show_all ();
|
|
|
|
} else {
|
|
|
|
delete output_table;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2017-07-20 18:36:40 -04:00
|
|
|
|
2017-07-21 08:51:57 -04:00
|
|
|
if (plugin->has_inline_display () && plugin->inline_display_in_gui ()) {
|
2017-07-20 18:36:40 -04:00
|
|
|
PluginDisplay* pd = manage (new PluginDisplay (plugin, 300));
|
|
|
|
hpacker.pack_end (*pd, true, true);
|
|
|
|
}
|
2016-08-23 21:18:28 -04:00
|
|
|
show_all();
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2017-09-08 13:42:24 -04:00
|
|
|
void
|
|
|
|
GenericPluginUI::build_midi_table ()
|
|
|
|
{
|
2017-09-09 07:29:28 -04:00
|
|
|
Gtk::Table* pgm_table = manage (new Gtk::Table (8, 5));
|
2017-09-08 13:42:24 -04:00
|
|
|
|
2017-09-09 07:29:28 -04:00
|
|
|
pgm_table->set_homogeneous (false);
|
2017-09-08 13:42:24 -04:00
|
|
|
pgm_table->set_row_spacings (2);
|
|
|
|
pgm_table->set_col_spacings (2);
|
|
|
|
pgm_table->set_border_width (5);
|
2017-09-09 07:29:28 -04:00
|
|
|
pgm_table->set_col_spacing (2, 10);
|
2017-09-08 13:42:24 -04:00
|
|
|
|
2022-02-04 17:05:58 -05:00
|
|
|
ArdourWidgets::Frame* frame = manage (new ArdourWidgets::Frame);
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->set_name ("BaseFrame");
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pi && dynamic_cast<MidiTrack*> (_pi->owner())) {
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->set_label (_("MIDI Programs (sent to track)"));
|
2017-09-08 20:24:51 -04:00
|
|
|
} else {
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->set_label (_("MIDI Programs (volatile)"));
|
2017-09-08 20:24:51 -04:00
|
|
|
}
|
2018-06-09 13:08:15 -04:00
|
|
|
frame->add (*pgm_table);
|
|
|
|
hpacker.pack_start (*frame, false, false);
|
2017-09-08 13:42:24 -04:00
|
|
|
|
|
|
|
for (uint8_t chn = 0; chn < 16; ++chn) {
|
2017-09-09 07:29:28 -04:00
|
|
|
int col = 3 * (chn / 8);
|
2017-09-08 13:42:24 -04:00
|
|
|
int row = chn % 8;
|
|
|
|
ArdourDropdown* cui = manage (new ArdourWidgets::ArdourDropdown ());
|
2017-09-09 07:29:28 -04:00
|
|
|
cui->set_sizing_text ("Stereo Grand Piano");
|
2017-09-08 13:42:24 -04:00
|
|
|
cui->set_text_ellipsize (Pango::ELLIPSIZE_END);
|
|
|
|
cui->set_layout_ellipsize_width (PANGO_SCALE * 112 * UIConfiguration::instance ().get_ui_scale ());
|
|
|
|
midi_pgmsel.push_back (cui);
|
2022-01-26 16:20:26 -05:00
|
|
|
pgm_table->attach (*manage (new Label (string_compose ("C%1:", (int)(chn + 1)), ALIGN_END)), col, col + 1, row, row+1, FILL, SHRINK);
|
2017-09-09 07:29:28 -04:00
|
|
|
pgm_table->attach (*cui, col + 1, col + 2, row, row+1, SHRINK, SHRINK);
|
2017-09-08 13:42:24 -04:00
|
|
|
}
|
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->plugin ()->read_midnam();
|
2017-09-08 21:07:43 -04:00
|
|
|
|
2017-09-08 13:42:24 -04:00
|
|
|
midi_refill_patches ();
|
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->plugin()->BankPatchChange.connect (
|
2017-09-08 13:42:24 -04:00
|
|
|
midi_connections, invalidator (*this),
|
|
|
|
boost::bind (&GenericPluginUI::midi_bank_patch_change, this, _1),
|
|
|
|
gui_context());
|
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->plugin()->UpdatedMidnam.connect (
|
2017-09-08 13:42:24 -04:00
|
|
|
midi_connections, invalidator (*this),
|
|
|
|
boost::bind (&GenericPluginUI::midi_refill_patches, this),
|
|
|
|
gui_context());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GenericPluginUI::midi_refill_patches ()
|
|
|
|
{
|
|
|
|
assert (midi_pgmsel.size() == 16);
|
|
|
|
|
|
|
|
pgm_names.clear ();
|
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
const std::string model = _pib->plugin ()->midnam_model ();
|
2017-09-08 13:42:24 -04:00
|
|
|
std::string mode;
|
|
|
|
const std::list<std::string> device_modes = MIDI::Name::MidiPatchManager::instance().custom_device_mode_names_by_model (model);
|
|
|
|
if (device_modes.size() > 0) {
|
|
|
|
mode = device_modes.front();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint8_t chn = 0; chn < 16; ++chn) {
|
|
|
|
midi_pgmsel[chn]->clear_items ();
|
|
|
|
boost::shared_ptr<MIDI::Name::ChannelNameSet> cns =
|
|
|
|
MIDI::Name::MidiPatchManager::instance().find_channel_name_set (model, mode, chn);
|
|
|
|
|
|
|
|
if (cns) {
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
using namespace Gtkmm2ext;
|
|
|
|
|
|
|
|
for (MIDI::Name::ChannelNameSet::PatchBanks::const_iterator i = cns->patch_banks().begin(); i != cns->patch_banks().end(); ++i) {
|
|
|
|
const MIDI::Name::PatchNameList& patches = (*i)->patch_name_list ();
|
|
|
|
for (MIDI::Name::PatchNameList::const_iterator j = patches.begin(); j != patches.end(); ++j) {
|
|
|
|
const std::string pgm = (*j)->name ();
|
|
|
|
MIDI::Name::PatchPrimaryKey const& key = (*j)->patch_primary_key ();
|
|
|
|
const uint32_t bp = (key.bank() << 7) | key.program();
|
|
|
|
midi_pgmsel[chn]->AddMenuElem (MenuElemNoMnemonic (pgm, sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::midi_bank_patch_select), chn, bp)));
|
|
|
|
pgm_names[bp] = pgm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
midi_bank_patch_change (chn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GenericPluginUI::midi_bank_patch_change (uint8_t chn)
|
|
|
|
{
|
|
|
|
assert (chn < 16 && midi_pgmsel.size() == 16);
|
2022-04-04 14:48:56 -04:00
|
|
|
uint32_t bankpgm = _pib->plugin()->bank_patch (chn);
|
2017-09-08 13:42:24 -04:00
|
|
|
if (bankpgm == UINT32_MAX) {
|
|
|
|
midi_pgmsel[chn]->set_text (_("--Unset--"));
|
|
|
|
} else {
|
|
|
|
int bank = bankpgm >> 7;
|
|
|
|
int pgm = bankpgm & 127;
|
|
|
|
if (pgm_names.find (bankpgm) != pgm_names.end ()) {
|
|
|
|
midi_pgmsel[chn]->set_text (pgm_names[bankpgm]);
|
|
|
|
} else {
|
|
|
|
midi_pgmsel[chn]->set_text (string_compose ("Bank %1,%2 Pgm %3",
|
|
|
|
(bank >> 7) + 1, (bank & 127) + 1, pgm +1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GenericPluginUI::midi_bank_patch_select (uint8_t chn, uint32_t bankpgm)
|
|
|
|
{
|
|
|
|
int bank = bankpgm >> 7;
|
|
|
|
int pgm = bankpgm & 127;
|
2022-04-04 14:48:56 -04:00
|
|
|
MidiTrack* mt = _pi ? dynamic_cast<MidiTrack*> (_pi->owner()) : NULL;
|
2017-09-08 20:24:51 -04:00
|
|
|
if (mt) {
|
2017-09-08 13:42:24 -04:00
|
|
|
/* send to track */
|
|
|
|
boost::shared_ptr<AutomationControl> bank_msb = mt->automation_control(Evoral::Parameter (MidiCCAutomation, chn, MIDI_CTL_MSB_BANK), true);
|
|
|
|
boost::shared_ptr<AutomationControl> bank_lsb = mt->automation_control(Evoral::Parameter (MidiCCAutomation, chn, MIDI_CTL_LSB_BANK), true);
|
|
|
|
boost::shared_ptr<AutomationControl> program = mt->automation_control(Evoral::Parameter (MidiPgmChangeAutomation, chn), true);
|
|
|
|
|
|
|
|
bank_msb->set_value (bank >> 7, PBD::Controllable::NoGroup);
|
|
|
|
bank_lsb->set_value (bank & 127, PBD::Controllable::NoGroup);
|
|
|
|
program->set_value (pgm, PBD::Controllable::NoGroup);
|
|
|
|
} else {
|
2017-09-08 20:24:51 -04:00
|
|
|
uint8_t event[3];
|
|
|
|
event[0] = (MIDI_CMD_CONTROL | chn);
|
|
|
|
event[1] = 0x00;
|
|
|
|
event[2] = bank >> 7;
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->write_immediate_event (Evoral::MIDI_EVENT, 3, event);
|
2017-09-08 20:24:51 -04:00
|
|
|
|
|
|
|
event[1] = 0x20;
|
|
|
|
event[2] = bank & 127;
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->write_immediate_event (Evoral::MIDI_EVENT, 3, event);
|
2017-09-08 20:24:51 -04:00
|
|
|
|
|
|
|
event[0] = (MIDI_CMD_PGM_CHANGE | chn);
|
|
|
|
event[1] = pgm;
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->write_immediate_event (Evoral::MIDI_EVENT, 2, event);
|
2017-09-08 13:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
GenericPluginUI::ControlUI::ControlUI (const Evoral::Parameter& p)
|
|
|
|
: param(p)
|
|
|
|
, automate_button (X_("")) // force creation of a label
|
2016-07-08 12:17:21 -04:00
|
|
|
, combo (0)
|
|
|
|
, file_button (0)
|
|
|
|
, spin_box (0)
|
|
|
|
, display (0)
|
|
|
|
, hbox (0)
|
|
|
|
, vbox (0)
|
|
|
|
, meterinfo (0)
|
|
|
|
, knobtable (0)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2016-08-19 08:41:36 -04:00
|
|
|
automate_button.set_name ("plugin automation state button");
|
2015-01-05 00:32:14 -05:00
|
|
|
set_tooltip (automate_button, _("Automation control"));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-07-08 12:17:21 -04:00
|
|
|
ignore_change = false;
|
|
|
|
update_pending = false;
|
2016-07-03 18:19:13 -04:00
|
|
|
button = false;
|
2016-07-08 12:17:21 -04:00
|
|
|
|
|
|
|
x0 = x1 = y0 = y1 = -1;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 05:25:38 -04:00
|
|
|
void
|
|
|
|
GenericPluginUI::set_short_autostate (ControlUI* cui, bool value)
|
|
|
|
{
|
|
|
|
cui->short_autostate = value;
|
|
|
|
if (value) {
|
|
|
|
cui->automate_button.set_sizing_text("M");
|
|
|
|
} else {
|
|
|
|
/* 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. */
|
|
|
|
cui->automate_button.set_sizing_text(_("Mgnual"));
|
|
|
|
}
|
|
|
|
automation_state_changed(cui);
|
|
|
|
}
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
void
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::automation_state_changed (ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2022-04-04 14:48:56 -04:00
|
|
|
AutoState state;
|
|
|
|
if (_pi) {
|
|
|
|
/* don't lock to avoid deadlock because we're triggered by
|
|
|
|
* AutomationControl::Changed() while the automation lock is taken
|
|
|
|
*/
|
|
|
|
state = _pi->get_parameter_automation_state (cui->parameter());
|
|
|
|
} else {
|
|
|
|
state = ARDOUR::Off;
|
|
|
|
}
|
2016-07-08 12:17:21 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
/* update button label */
|
2016-08-18 20:48:39 -04:00
|
|
|
|
|
|
|
cui->automate_button.set_active((state != ARDOUR::Off));
|
|
|
|
|
2017-08-29 05:25:38 -04:00
|
|
|
if (cui->short_autostate) {
|
2019-10-31 10:55:46 -04:00
|
|
|
cui->automate_button.set_text (GainMeterBase::short_astate_string (state));
|
|
|
|
} else {
|
|
|
|
cui->automate_button.set_text (GainMeterBase::astate_string (state));
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
/** Build a ControlUI for a parameter/property.
|
|
|
|
* Note that mcontrol may be NULL for outputs.
|
|
|
|
*/
|
2008-01-10 16:20:59 -05:00
|
|
|
GenericPluginUI::ControlUI*
|
2014-11-02 13:02:54 -05:00
|
|
|
GenericPluginUI::build_control_ui (const Evoral::Parameter& param,
|
|
|
|
const ParameterDescriptor& desc,
|
2014-10-31 22:20:24 -04:00
|
|
|
boost::shared_ptr<AutomationControl> mcontrol,
|
2014-11-02 13:02:54 -05:00
|
|
|
float value,
|
2016-07-08 12:17:21 -04:00
|
|
|
bool is_input,
|
|
|
|
bool use_knob)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2010-02-02 19:52:45 -05:00
|
|
|
ControlUI* control_ui = 0;
|
2007-12-20 19:08:02 -05:00
|
|
|
|
2014-11-02 13:02:54 -05:00
|
|
|
control_ui = manage (new ControlUI (param));
|
2006-08-10 23:24:57 -04:00
|
|
|
control_ui->combo = 0;
|
2007-06-30 14:41:50 -04:00
|
|
|
control_ui->control = mcontrol;
|
2006-08-10 23:24:57 -04:00
|
|
|
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);
|
2017-08-29 05:25:38 -04:00
|
|
|
set_short_autostate(control_ui, false);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2014-10-31 22:20:24 -04:00
|
|
|
if (is_input) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-07-28 14:26:58 -04:00
|
|
|
if (desc.datatype == Variant::PATH) {
|
|
|
|
|
2016-07-28 14:57:44 -04:00
|
|
|
/* We shouldn't get that type for input ports */
|
|
|
|
assert(param.type() == PluginPropertyAutomation);
|
|
|
|
|
2016-07-28 14:26:58 -04:00
|
|
|
/* Build a file selector button */
|
|
|
|
|
|
|
|
// Create/add controller
|
|
|
|
control_ui->file_button = manage(new Gtk::FileChooserButton(Gtk::FILE_CHOOSER_ACTION_OPEN));
|
|
|
|
control_ui->file_button->set_title(desc.label);
|
2019-01-02 11:37:03 -05:00
|
|
|
Gtkmm2ext::add_volume_shortcuts (*control_ui->file_button);
|
2016-07-28 14:26:58 -04:00
|
|
|
|
|
|
|
if (use_knob) {
|
|
|
|
control_ui->knobtable = manage (new Table());
|
|
|
|
control_ui->pack_start(*control_ui->knobtable, true, false);
|
|
|
|
control_ui->knobtable->attach (control_ui->label, 0, 1, 0, 1);
|
|
|
|
control_ui->knobtable->attach (*control_ui->file_button, 0, 1, 1, 2);
|
|
|
|
} else {
|
|
|
|
control_ui->pack_start (control_ui->label, false, true);
|
|
|
|
control_ui->pack_start (*control_ui->file_button, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monitor changes from the user.
|
|
|
|
control_ui->file_button->signal_file_set().connect(
|
|
|
|
sigc::bind(sigc::mem_fun(*this, &GenericPluginUI::set_path_property),
|
|
|
|
desc, control_ui->file_button));
|
|
|
|
|
|
|
|
/* Add the filebutton control to a map so that we can update it when
|
|
|
|
* the corresponding property changes. This doesn't go through the usual
|
|
|
|
* AutomationControls, because they don't support non-numeric values. */
|
|
|
|
_filepath_controls.insert(std::make_pair(desc.key, control_ui->file_button));
|
|
|
|
|
|
|
|
return control_ui;
|
|
|
|
}
|
|
|
|
|
2016-07-28 17:50:33 -04:00
|
|
|
assert(mcontrol);
|
2016-07-28 14:26:58 -04:00
|
|
|
|
2012-03-21 12:39:04 -04:00
|
|
|
/* See if there any named values for our input value */
|
2014-10-31 22:20:24 -04:00
|
|
|
control_ui->scale_points = desc.scale_points;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-03-21 12:39:04 -04:00
|
|
|
/* 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).
|
|
|
|
*/
|
|
|
|
int const steps = desc.integer_step ? (desc.upper - desc.lower + 1) / desc.step : 0;
|
|
|
|
|
2012-03-25 15:45:39 -04:00
|
|
|
if (control_ui->scale_points && ((steps && int (control_ui->scale_points->size()) == steps) || desc.enumeration)) {
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2012-03-21 12:43:01 -04:00
|
|
|
/* Either:
|
|
|
|
* a) There is a label for each possible value of this input, or
|
|
|
|
* b) This port is marked as being an enumeration.
|
|
|
|
*/
|
2012-03-21 12:39:04 -04:00
|
|
|
|
2016-07-28 08:25:40 -04:00
|
|
|
control_ui->combo = new ArdourDropdown();
|
|
|
|
for (ARDOUR::ScalePoints::const_iterator i = control_ui->scale_points->begin();
|
|
|
|
i != control_ui->scale_points->end();
|
|
|
|
++i) {
|
|
|
|
control_ui->combo->AddMenuElem(Menu_Helpers::MenuElem(
|
|
|
|
i->first,
|
|
|
|
sigc::bind(sigc::mem_fun(*this, &GenericPluginUI::control_combo_changed),
|
|
|
|
control_ui,
|
|
|
|
i->second)));
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2017-07-02 16:53:28 -04:00
|
|
|
control_ui->combo->set_controllable (mcontrol);
|
|
|
|
|
2011-05-14 14:43:34 -04:00
|
|
|
update_control_display(control_ui);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
} else {
|
2014-11-01 23:29:10 -04:00
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
/* create the controller */
|
2007-08-01 18:18:46 -04:00
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
/* XXX memory leak: SliderController not destroyed by ControlUI
|
|
|
|
* destructor, and manage() reports object hierarchy
|
|
|
|
* ambiguity.
|
|
|
|
*/
|
2017-06-09 08:46:11 -04:00
|
|
|
control_ui->controller = AutomationController::create(mcontrol->parameter(), desc, mcontrol, use_knob);
|
2010-08-23 12:31:34 -04:00
|
|
|
|
2016-07-28 18:10:19 -04:00
|
|
|
/* Control UI's don't need the rapid timer workaround */
|
|
|
|
control_ui->controller->stop_updating ();
|
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
/* XXX this code is not right yet, because it doesn't handle
|
|
|
|
the absence of bounds in any sensible fashion.
|
|
|
|
*/
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
Adjustment* adj = control_ui->controller->adjustment();
|
2010-08-23 12:31:34 -04:00
|
|
|
|
2017-09-24 23:22:05 -04:00
|
|
|
if (desc.toggled) {
|
2016-08-20 12:11:13 -04:00
|
|
|
ArdourButton* but = dynamic_cast<ArdourButton*> (control_ui->controller->widget());
|
|
|
|
assert(but);
|
|
|
|
but->set_tweaks(ArdourButton::Square);
|
2016-07-28 17:06:04 -04:00
|
|
|
} else if (use_knob) {
|
2016-08-20 12:12:49 -04:00
|
|
|
/* Delay size request so that styles are gotten right */
|
|
|
|
control_ui->controller->widget()->signal_size_request().connect(
|
|
|
|
sigc::bind (sigc::mem_fun (*this, &GenericPluginUI::knob_size_request), control_ui));
|
2013-10-22 11:26:30 -04:00
|
|
|
} else {
|
2016-08-20 12:11:55 -04:00
|
|
|
control_ui->controller->set_size_request (200, -1);
|
2016-07-28 17:06:04 -04:00
|
|
|
control_ui->controller->set_name (X_("ProcessorControlSlider"));
|
2017-09-23 13:40:55 -04:00
|
|
|
if (desc.integer_step) {
|
|
|
|
AutomationBarController* abc = dynamic_cast <AutomationBarController*> (control_ui->controller->widget ());
|
|
|
|
assert (abc);
|
|
|
|
abc->set_digits (0);
|
|
|
|
}
|
2013-10-22 11:26:30 -04:00
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
if (!desc.integer_step && !desc.toggled && use_knob) {
|
2017-06-09 08:46:11 -04:00
|
|
|
control_ui->spin_box = manage (new ArdourSpinner (mcontrol, adj));
|
2016-07-28 17:06:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
adj->set_value (mcontrol->internal_to_interface(value));
|
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
}
|
2016-07-28 17:06:04 -04:00
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
if (use_knob) {
|
2017-08-29 05:25:38 -04:00
|
|
|
set_short_autostate(control_ui, true);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
control_ui->label.set_alignment (0.5, 0.5);
|
|
|
|
control_ui->knobtable = manage (new Table());
|
|
|
|
control_ui->pack_start(*control_ui->knobtable, true, true);
|
2016-07-28 17:06:04 -04:00
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
if (control_ui->combo) {
|
|
|
|
control_ui->knobtable->attach (control_ui->label, 0, 1, 0, 1);
|
|
|
|
control_ui->knobtable->attach (*control_ui->combo, 0, 1, 1, 2);
|
|
|
|
} else if (control_ui->spin_box) {
|
|
|
|
ArdourKnob* knob = dynamic_cast<ArdourKnob*>(control_ui->controller->widget ());
|
|
|
|
knob->set_tooltip_prefix (desc.label + ": ");
|
|
|
|
Alignment *align = manage (new Alignment (.5, .5, 0, 0));
|
|
|
|
align->add (*control_ui->controller);
|
|
|
|
control_ui->knobtable->attach (*align, 0, 1, 0, 1, EXPAND, SHRINK, 1, 2);
|
|
|
|
control_ui->knobtable->attach (*control_ui->spin_box, 0, 2, 1, 2);
|
|
|
|
control_ui->knobtable->attach (control_ui->automate_button, 1, 2, 0, 1, SHRINK, SHRINK, 2, 0);
|
|
|
|
} else if (desc.toggled) {
|
|
|
|
Alignment *align = manage (new Alignment (.5, .5, 0, 0));
|
|
|
|
align->add (*control_ui->controller);
|
|
|
|
control_ui->knobtable->attach (*align, 0, 2, 0, 1, EXPAND, SHRINK, 2, 2);
|
|
|
|
control_ui->knobtable->attach (control_ui->label, 0, 1, 1, 2, FILL, SHRINK);
|
|
|
|
control_ui->knobtable->attach (control_ui->automate_button, 1, 2, 1, 2, SHRINK, SHRINK, 2, 0);
|
|
|
|
} else {
|
|
|
|
control_ui->knobtable->attach (*control_ui->controller, 0, 2, 0, 1);
|
|
|
|
control_ui->knobtable->attach (control_ui->label, 0, 1, 1, 2, FILL, SHRINK);
|
|
|
|
control_ui->knobtable->attach (control_ui->automate_button, 1, 2, 1, 2, SHRINK, SHRINK, 2, 0);
|
2016-07-08 12:17:21 -04:00
|
|
|
}
|
2016-07-03 18:19:13 -04:00
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
} else {
|
2016-07-08 12:17:21 -04:00
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
control_ui->pack_start (control_ui->label, true, true);
|
|
|
|
if (control_ui->combo) {
|
|
|
|
control_ui->pack_start(*control_ui->combo, false, true);
|
|
|
|
} else if (control_ui->spin_box) {
|
|
|
|
control_ui->pack_start (*control_ui->spin_box, false, false);
|
|
|
|
control_ui->pack_start (*control_ui->controller, false, false);
|
2016-07-08 12:17:21 -04:00
|
|
|
} else {
|
2016-07-28 18:54:25 -04:00
|
|
|
control_ui->pack_start (*control_ui->controller, false, false);
|
2016-07-28 17:06:04 -04:00
|
|
|
}
|
2016-07-28 18:54:25 -04:00
|
|
|
control_ui->pack_start (control_ui->automate_button, false, false);
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-07-08 12:17:21 -04:00
|
|
|
|
2022-04-04 14:48:56 -04:00
|
|
|
if (!_pi || mcontrol->flags () & Controllable::NotAutomatable) {
|
2016-07-28 18:54:25 -04:00
|
|
|
control_ui->automate_button.set_sensitive (false);
|
|
|
|
set_tooltip(control_ui->automate_button, _("This control cannot be automated"));
|
|
|
|
} else {
|
2016-08-17 15:14:47 -04:00
|
|
|
control_ui->automate_button.signal_button_press_event().connect (
|
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::astate_button_event),
|
|
|
|
control_ui),
|
|
|
|
false);
|
2016-07-28 18:54:25 -04:00
|
|
|
mcontrol->alist()->automation_state_changed.connect (
|
|
|
|
control_connections,
|
|
|
|
invalidator (*this),
|
|
|
|
boost::bind (&GenericPluginUI::automation_state_changed, this, control_ui),
|
|
|
|
gui_context());
|
|
|
|
input_controls_with_automation.push_back (control_ui);
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-12-15 19:55:28 -05:00
|
|
|
if (desc.toggled && !control_ui->combo) {
|
2016-07-28 18:54:25 -04:00
|
|
|
control_ui->button = true;
|
|
|
|
ArdourButton* but = dynamic_cast<ArdourButton*>(control_ui->controller->widget ());
|
|
|
|
assert (but);
|
|
|
|
but->set_name ("pluginui toggle");
|
|
|
|
update_control_display(control_ui);
|
2016-07-28 17:06:04 -04:00
|
|
|
}
|
2010-02-02 19:52:45 -05:00
|
|
|
|
2016-07-28 18:54:25 -04:00
|
|
|
automation_state_changed (control_ui);
|
|
|
|
|
2016-07-28 20:06:55 -04:00
|
|
|
/* Add to the list of CUIs that need manual update to workaround
|
|
|
|
* AutomationControl not knowing about preset loads */
|
2016-07-28 18:54:25 -04:00
|
|
|
input_controls.push_back (control_ui);
|
|
|
|
|
2016-07-28 17:06:04 -04:00
|
|
|
} else {
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
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);
|
2013-07-11 14:38:52 -04:00
|
|
|
Gtkmm2ext::set_size_request_to_display_given_text (*control_ui->display, "-888.8g", 2, 6);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
control_ui->display->show_all ();
|
|
|
|
|
|
|
|
control_ui->vbox = manage (new VBox);
|
2013-07-11 14:38:52 -04:00
|
|
|
control_ui->vbox->set_spacing(3);
|
|
|
|
|
2017-05-25 07:48:55 -04:00
|
|
|
if (desc.unit == ParameterDescriptor::MIDI_NOTE) {
|
|
|
|
control_ui->vbox->pack_end (*control_ui->display, false, false);
|
|
|
|
control_ui->vbox->pack_end (control_ui->label, false, false);
|
|
|
|
} else if (desc.integer_step || desc.enumeration) {
|
2016-06-12 10:43:21 -04:00
|
|
|
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 */
|
|
|
|
|
|
|
|
MeterInfo * info = new MeterInfo();
|
|
|
|
control_ui->meterinfo = info;
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-06-12 10:43:21 -04:00
|
|
|
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")
|
|
|
|
);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-06-12 10:43:21 -04:00
|
|
|
control_ui->label.set_angle(90);
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2016-06-12 10:43:21 -04:00
|
|
|
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->hbox = manage (new HBox);
|
|
|
|
control_ui->hbox->pack_start (*center, true, false);
|
|
|
|
|
|
|
|
// horizontally center this hbox in the vbox
|
|
|
|
control_ui->vbox->pack_start (*control_ui->hbox, false, false);
|
|
|
|
|
|
|
|
control_ui->meterinfo->meter->show_all();
|
|
|
|
control_ui->meterinfo->packed = true;
|
|
|
|
control_ui->vbox->pack_start (*control_ui->display, false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
control_ui->pack_start (*control_ui->vbox);
|
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
|
|
|
|
2011-04-04 09:19:09 -04:00
|
|
|
if (mcontrol) {
|
2016-07-28 17:07:44 -04:00
|
|
|
mcontrol->Changed.connect(control_connections, invalidator(*this),
|
|
|
|
boost::bind(&GenericPluginUI::ui_parameter_changed,
|
|
|
|
this, control_ui),
|
|
|
|
gui_context());
|
2011-04-04 09:19:09 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
return control_ui;
|
|
|
|
}
|
|
|
|
|
2016-08-20 12:12:49 -04:00
|
|
|
void
|
|
|
|
GenericPluginUI::knob_size_request(Gtk::Requisition* req, ControlUI* cui) {
|
|
|
|
Gtk::Requisition astate_req (cui->automate_button.size_request());
|
|
|
|
const int size = (int) (astate_req.height * 1.5);
|
|
|
|
req->width = max(req->width, size);
|
|
|
|
req->height = max(req->height, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-17 15:14:47 -04:00
|
|
|
bool
|
|
|
|
GenericPluginUI::astate_button_event (GdkEventButton* ev, ControlUI* cui)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2022-04-04 14:48:56 -04:00
|
|
|
assert (_pi);
|
2016-08-17 15:14:47 -04:00
|
|
|
if (ev->button != 1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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");
|
2016-08-08 10:33:29 -04:00
|
|
|
automation_menu->set_reserve_toggle_size(false);
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
|
|
|
|
MenuList& items (automation_menu->items());
|
|
|
|
|
|
|
|
items.clear ();
|
2019-10-31 10:55:46 -04:00
|
|
|
items.push_back (MenuElem (GainMeterBase::astate_string (ARDOUR::Off),
|
2012-02-07 12:43:55 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) ARDOUR::Off, cui)));
|
2019-10-31 10:55:46 -04:00
|
|
|
items.push_back (MenuElem (GainMeterBase::astate_string (Play),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Play, cui)));
|
2019-10-31 10:55:46 -04:00
|
|
|
items.push_back (MenuElem (GainMeterBase::astate_string (Write),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Write, cui)));
|
2019-10-31 10:55:46 -04:00
|
|
|
items.push_back (MenuElem (GainMeterBase::astate_string (Touch),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Touch, cui)));
|
2019-10-31 10:55:46 -04:00
|
|
|
items.push_back (MenuElem (GainMeterBase::astate_string (Latch),
|
2017-07-25 10:10:38 -04:00
|
|
|
sigc::bind (sigc::mem_fun(*this, &GenericPluginUI::set_automation_state), (AutoState) Latch, cui)));
|
2006-08-10 23:24:57 -04:00
|
|
|
|
2019-10-31 10:55:46 -04:00
|
|
|
anchored_menu_popup (automation_menu, &cui->automate_button,
|
2022-04-04 14:48:56 -04:00
|
|
|
GainMeterBase::astate_string (_pi->get_parameter_automation_state (cui->parameter())),
|
2019-10-31 10:55:46 -04:00
|
|
|
1, ev->time);
|
2016-08-17 15:14:47 -04:00
|
|
|
|
|
|
|
return true;
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
void
|
2014-11-14 17:14:48 -05:00
|
|
|
GenericPluginUI::set_all_automation (AutoState as)
|
2014-11-11 18:05:27 -05:00
|
|
|
{
|
2014-11-14 20:34:05 -05:00
|
|
|
for (vector<ControlUI*>::iterator i = input_controls_with_automation.begin(); i != input_controls_with_automation.end(); ++i) {
|
2016-08-25 13:20:17 -04:00
|
|
|
set_automation_state (as, (*i));
|
2014-11-14 17:14:48 -05:00
|
|
|
}
|
2014-11-11 18:05:27 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2022-04-04 14:48:56 -04:00
|
|
|
if (_pi) {
|
|
|
|
_pi->set_parameter_automation_state (cui->parameter(), state);
|
|
|
|
}
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-19 18:11:01 -05:00
|
|
|
GenericPluginUI::ui_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
|
|
|
|
2016-07-08 12:17:21 -04:00
|
|
|
PBD::Unwinder<bool> (cui->ignore_change, true);
|
2009-04-15 14:04:23 -04:00
|
|
|
|
2012-03-21 12:38:53 -04:00
|
|
|
if (cui->combo && cui->scale_points) {
|
2014-10-31 23:48:27 -04:00
|
|
|
for (ARDOUR::ScalePoints::iterator it = cui->scale_points->begin(); it != cui->scale_points->end(); ++it) {
|
2006-08-10 23:24:57 -04:00
|
|
|
if (it->second == val) {
|
2016-07-28 08:25:40 -04:00
|
|
|
cui->combo->set_text(it->first);
|
2006-08-10 23:24:57 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
} else if (cui->button) {
|
2016-07-03 18:19:13 -04:00
|
|
|
// AutomationController handles this
|
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
|
|
|
}
|
|
|
|
|
2016-07-28 20:06:55 -04:00
|
|
|
void
|
|
|
|
GenericPluginUI::update_input_displays ()
|
|
|
|
{
|
|
|
|
/* XXX This is a workaround for AutomationControl not knowing about preset loads */
|
|
|
|
for (vector<ControlUI*>::iterator i = input_controls.begin();
|
|
|
|
i != input_controls.end();
|
|
|
|
++i) {
|
|
|
|
update_control_display(*i);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-10 23:24:57 -04:00
|
|
|
void
|
2016-07-28 08:25:40 -04:00
|
|
|
GenericPluginUI::control_combo_changed (ControlUI* cui, float value)
|
2006-08-10 23:24:57 -04:00
|
|
|
{
|
2016-07-28 08:25:40 -04:00
|
|
|
if (!cui->ignore_change) {
|
2022-04-04 14:48:56 -04:00
|
|
|
cui->combo->get_controllable ()->set_value (value, Controllable::NoGroup);
|
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();
|
2014-12-25 10:02:00 -05:00
|
|
|
screen_update_connection = Timers::super_rapid_connect (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
|
|
|
{
|
|
|
|
if (output_controls.size() > 0 ) {
|
|
|
|
screen_update_connection.disconnect();
|
|
|
|
}
|
|
|
|
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) {
|
2014-11-02 13:02:54 -05:00
|
|
|
float val = plugin->get_parameter ((*i)->parameter().id());
|
2006-08-10 23:24:57 -04:00
|
|
|
char buf[32];
|
2022-04-04 14:48:56 -04:00
|
|
|
boost::shared_ptr<ReadOnlyControl> c = _pib->control_output ((*i)->parameter().id());
|
2017-05-25 07:48:55 -04:00
|
|
|
const std::string& str = ARDOUR::value_as_string(c->desc(), Variant(val));
|
|
|
|
size_t len = str.copy(buf, 31);
|
|
|
|
buf[len] = '\0';
|
2006-08-10 23:24:57 -04:00
|
|
|
(*i)->display_label->set_text (buf);
|
|
|
|
|
|
|
|
if ((*i)->meterinfo && (*i)->meterinfo->packed) {
|
2017-06-19 10:51:17 -04:00
|
|
|
(*i)->meterinfo->meter->set (c->desc().to_interface (val));
|
2006-08-10 23:24:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-30 22:26:47 -04:00
|
|
|
void
|
2016-07-28 13:43:43 -04:00
|
|
|
GenericPluginUI::set_path_property (const ParameterDescriptor& desc,
|
|
|
|
Gtk::FileChooserButton* widget)
|
2014-10-30 22:26:47 -04:00
|
|
|
{
|
2014-10-31 20:44:02 -04:00
|
|
|
plugin->set_property(desc.key, Variant(Variant::PATH, widget->get_filename()));
|
2014-10-30 22:26:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-07-28 13:43:43 -04:00
|
|
|
GenericPluginUI::path_property_changed (uint32_t key, const Variant& value)
|
2014-10-30 22:26:47 -04:00
|
|
|
{
|
2016-07-28 13:43:43 -04:00
|
|
|
FilePathControls::iterator c = _filepath_controls.find(key);
|
|
|
|
if (c != _filepath_controls.end()) {
|
2014-10-31 20:44:02 -04:00
|
|
|
c->second->set_filename(value.get_path());
|
|
|
|
} else {
|
|
|
|
std::cerr << "warning: property change for property with no control" << std::endl;
|
|
|
|
}
|
2014-10-30 22:26:47 -04:00
|
|
|
}
|
2017-09-08 16:56:18 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
GenericPluginUI::toggle_pianokeyboard ()
|
|
|
|
{
|
|
|
|
if (_plugin_pianokeyboard_expander.get_expanded()) {
|
|
|
|
_plugin_pianokeyboard_expander.add (_pianobox);
|
|
|
|
_pianobox.show_all ();
|
|
|
|
} else {
|
|
|
|
const int child_height = _plugin_pianokeyboard_expander.get_child ()->get_height ();
|
|
|
|
_plugin_pianokeyboard_expander.get_child ()->hide ();
|
|
|
|
_plugin_pianokeyboard_expander.remove ();
|
|
|
|
|
|
|
|
Gtk::Window *toplevel = (Gtk::Window*) _plugin_pianokeyboard_expander.get_ancestor (GTK_TYPE_WINDOW);
|
|
|
|
if (toplevel) {
|
|
|
|
Gtk::Requisition wr;
|
|
|
|
toplevel->get_size (wr.width, wr.height);
|
|
|
|
wr.height -= child_height;
|
|
|
|
toplevel->resize (wr.width, wr.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-10-24 13:43:46 -04:00
|
|
|
GenericPluginUI::note_on_event_handler (int note, int)
|
2017-09-08 16:56:18 -04:00
|
|
|
{
|
2022-04-04 14:48:56 -04:00
|
|
|
MidiTrack* mt = _pi ? dynamic_cast<MidiTrack*> (_pi->owner()) : NULL;
|
2019-10-24 13:43:46 -04:00
|
|
|
_piano->grab_focus ();
|
2017-09-08 16:56:18 -04:00
|
|
|
uint8_t channel = _piano_channel.get_value_as_int () - 1;
|
|
|
|
uint8_t event[3];
|
|
|
|
event[0] = (MIDI_CMD_NOTE_ON | channel);
|
|
|
|
event[1] = note;
|
|
|
|
event[2] = _piano_velocity.get_value_as_int ();
|
2017-09-08 20:24:51 -04:00
|
|
|
if (mt) {
|
2020-09-19 18:59:23 -04:00
|
|
|
mt->write_immediate_event (Evoral::MIDI_EVENT, 3, event);
|
2017-09-08 20:24:51 -04:00
|
|
|
} else {
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->write_immediate_event (Evoral::MIDI_EVENT, 3, event);
|
2017-09-08 20:24:51 -04:00
|
|
|
}
|
2017-09-08 16:56:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GenericPluginUI::note_off_event_handler (int note)
|
|
|
|
{
|
2022-04-04 14:48:56 -04:00
|
|
|
MidiTrack* mt = _pi ? dynamic_cast<MidiTrack*> (_pi->owner()) : NULL;
|
2017-09-08 16:56:18 -04:00
|
|
|
uint8_t channel = _piano_channel.get_value_as_int () - 1;
|
|
|
|
uint8_t event[3];
|
|
|
|
event[0] = (MIDI_CMD_NOTE_OFF | channel);
|
|
|
|
event[1] = note;
|
|
|
|
event[2] = 0;
|
2017-09-08 20:24:51 -04:00
|
|
|
if (mt) {
|
2020-09-19 18:59:23 -04:00
|
|
|
mt->write_immediate_event (Evoral::MIDI_EVENT, 3, event);
|
2017-09-08 20:24:51 -04:00
|
|
|
} else {
|
2022-04-04 14:48:56 -04:00
|
|
|
_pib->write_immediate_event (Evoral::MIDI_EVENT, 3, event);
|
2017-09-08 20:24:51 -04:00
|
|
|
}
|
2017-09-08 16:56:18 -04:00
|
|
|
}
|