X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fplugin_ui.cc;h=cb00cff41ef79133a1e1babeccaa827d6b3a4441;hb=d9fcab88f01f7ada6f52482f1ee60fc41c91235c;hp=19dbee422fb8a08e074f0aa08d5a669ff2ac7954;hpb=336b2eb9a4a8634bae84a15e952d20335aa28c12;p=ardour.git diff --git a/gtk2_ardour/plugin_ui.cc b/gtk2_ardour/plugin_ui.cc index 19dbee422f..cb00cff41e 100644 --- a/gtk2_ardour/plugin_ui.cc +++ b/gtk2_ardour/plugin_ui.cc @@ -30,15 +30,15 @@ #include "pbd/xml++.h" #include "pbd/failed_constructor.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include "gtkmm/widget.h" +#include "gtkmm/box.h" + +#include "gtkmm2ext/utils.h" +#include "gtkmm2ext/doi.h" +#include "gtkmm2ext/application.h" + +#include "widgets/tooltips.h" +#include "widgets/fastmeter.h" #include "ardour/session.h" #include "ardour/plugin.h" @@ -52,32 +52,40 @@ #include "ardour/lxvst_plugin.h" #include "lxvst_plugin_ui.h" #endif +#ifdef MACVST_SUPPORT +#include "ardour/mac_vst_plugin.h" +#include "vst_plugin_ui.h" +#endif #ifdef LV2_SUPPORT #include "ardour/lv2_plugin.h" #include "lv2_plugin_ui.h" #endif #include "ardour_window.h" -#include "prompter.h" +#include "ardour_ui.h" #include "plugin_ui.h" #include "utils.h" #include "gui_thread.h" #include "public_editor.h" +#include "processor_box.h" #include "keyboard.h" #include "latency_gui.h" +#include "plugin_dspload_ui.h" #include "plugin_eq_gui.h" +#include "timers.h" #include "new_plugin_preset_dialog.h" -#include "tooltips.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace std; using namespace ARDOUR; using namespace ARDOUR_UI_UTILS; +using namespace ArdourWidgets; using namespace PBD; using namespace Gtkmm2ext; using namespace Gtk; + PluginUIWindow::PluginUIWindow ( boost::shared_ptr insert, bool scrollable, @@ -86,8 +94,8 @@ PluginUIWindow::PluginUIWindow ( , was_visible (false) , _keyboard_focused (false) #ifdef AUDIOUNIT_SUPPORT - , pre_deactivate_x (-1) - , pre_deactivate_y (-1) + , pre_deactivate_x (-1) + , pre_deactivate_y (-1) #endif { @@ -105,6 +113,10 @@ PluginUIWindow::PluginUIWindow ( have_gui = create_lxvst_editor (insert); break; + case ARDOUR::MacVST: + have_gui = create_mac_vst_editor (insert); + break; + case ARDOUR::AudioUnit: have_gui = create_audiounit_editor (insert); break; @@ -177,10 +189,10 @@ PluginUIWindow::on_show () } if (_pluginui) { -#if defined (HAVE_AUDIOUNITS) && defined(GTKOSX) - if (pre_deactivate_x >= 0) { - move (pre_deactivate_x, pre_deactivate_y); - } +#if defined (HAVE_AUDIOUNITS) && defined(__APPLE__) + if (pre_deactivate_x >= 0) { + move (pre_deactivate_x, pre_deactivate_y); + } #endif if (_pluginui->on_window_show (_title)) { @@ -192,8 +204,8 @@ PluginUIWindow::on_show () void PluginUIWindow::on_hide () { -#if defined (HAVE_AUDIOUNITS) && defined(GTKOSX) - get_position (pre_deactivate_x, pre_deactivate_y); +#if defined (HAVE_AUDIOUNITS) && defined(__APPLE__) + get_position (pre_deactivate_x, pre_deactivate_y); #endif Window::on_hide (); @@ -270,6 +282,35 @@ PluginUIWindow::create_lxvst_editor(boost::shared_ptr) #endif } +bool +#ifdef MACVST_SUPPORT +PluginUIWindow::create_mac_vst_editor (boost::shared_ptr insert) +#else +PluginUIWindow::create_mac_vst_editor (boost::shared_ptr) +#endif +{ +#ifndef MACVST_SUPPORT + return false; +#else + boost::shared_ptr mvst; + if ((mvst = boost::dynamic_pointer_cast (insert->plugin())) == 0) { + error << string_compose (_("unknown type of editor-supplying plugin (note: no MacVST support in this version of %1)"), PROGRAM_NAME) + << endmsg; + throw failed_constructor (); + } + VSTPluginUI* vpu = create_mac_vst_gui (insert); + _pluginui = vpu; + _pluginui->KeyboardFocused.connect (sigc::mem_fun (*this, &PluginUIWindow::keyboard_focused)); + add (*vpu); + vpu->package (*this); + + Application::instance()->ActivationChanged.connect (mem_fun (*this, &PluginUIWindow::app_activated)); + + return true; +#endif +} + + bool #ifdef AUDIOUNIT_SUPPORT PluginUIWindow::create_audiounit_editor (boost::shared_ptr insert) @@ -292,7 +333,7 @@ PluginUIWindow::create_audiounit_editor (boost::shared_ptr) } void -#ifdef GTKOSX +#ifdef __APPLE__ PluginUIWindow::app_activated (bool yn) #else PluginUIWindow::app_activated (bool) @@ -303,15 +344,15 @@ PluginUIWindow::app_activated (bool) if (yn) { if (was_visible) { _pluginui->activate (); - if (pre_deactivate_x >= 0) { - move (pre_deactivate_x, pre_deactivate_y); - } + if (pre_deactivate_x >= 0) { + move (pre_deactivate_x, pre_deactivate_y); + } present (); was_visible = true; } } else { was_visible = is_visible(); - get_position (pre_deactivate_x, pre_deactivate_y); + get_position (pre_deactivate_x, pre_deactivate_y); hide (); _pluginui->deactivate (); } @@ -361,27 +402,26 @@ PluginUIWindow::on_key_press_event (GdkEventKey* event) } } return true; - } else { - /* for us to be getting key press events, there really - MUST be a _pluginui, but just to be safe, check ... - */ + } + /* for us to be getting key press events, there really + MUST be a _pluginui, but just to be safe, check ... + */ - if (_pluginui) { - _pluginui->grab_focus(); - if (_pluginui->non_gtk_gui()) { - /* pass editor window as the window for the event - to be handled in, not this one, because there are - no widgets in this window that we want to have - key focus. - */ - return relay_key_press (event, &PublicEditor::instance()); - } else { - return relay_key_press (event, this); - } + if (_pluginui) { + _pluginui->grab_focus(); + if (_pluginui->non_gtk_gui()) { + /* pass main window as the window for the event + to be handled in, not this one, because there are + no widgets in this window that we want to have + key focus. + */ + return relay_key_press (event, &ARDOUR_UI::instance()->main_window()); } else { - return false; + return relay_key_press (event, this); } } + + return false; } bool @@ -392,12 +432,12 @@ PluginUIWindow::on_key_release_event (GdkEventKey *event) if (_pluginui->non_gtk_gui()) { _pluginui->forward_key_event (event); } - return true; } - return false; } else { - return true; + gtk_window_propagate_key_event (GTK_WINDOW(gobj()), event); } + /* don't forward releases */ + return true; } void @@ -420,11 +460,14 @@ PlugUIBase::PlugUIBase (boost::shared_ptr pi) , delete_button (_("Delete")) , reset_button (_("Reset")) , bypass_button (ArdourButton::led_default_elements) + , pin_management_button (_("Pinout")) , description_expander (_("Description")) , plugin_analysis_expander (_("Plugin analysis")) + , cpuload_expander (_("CPU Profile")) , latency_gui (0) , latency_dialog (0) , eqgui (0) + , stats_gui (0) { _preset_modified.set_size_request (16, -1); _preset_combo.set_text("(default)"); @@ -433,6 +476,7 @@ PlugUIBase::PlugUIBase (boost::shared_ptr pi) set_tooltip (save_button, _("Save the current preset")); set_tooltip (delete_button, _("Delete the current preset")); set_tooltip (reset_button, _("Reset parameters to default (if no parameters are in automation play mode)")); + set_tooltip (pin_management_button, _("Show Plugin Pin Management Dialog")); set_tooltip (bypass_button, _("Disable signal processing by the plugin")); _no_load_preset = 0; @@ -451,12 +495,14 @@ PlugUIBase::PlugUIBase (boost::shared_ptr pi) reset_button.set_name ("generic button"); reset_button.signal_clicked.connect (sigc::mem_fun (*this, &PlugUIBase::reset_plugin_parameters)); + pin_management_button.set_name ("generic button"); + pin_management_button.signal_clicked.connect (sigc::mem_fun (*this, &PlugUIBase::manage_pins)); insert->ActiveChanged.connect (active_connection, invalidator (*this), boost::bind (&PlugUIBase::processor_active_changed, this, boost::weak_ptr(insert)), gui_context()); bypass_button.set_name ("plugin bypass button"); bypass_button.set_text (_("Bypass")); - bypass_button.set_active (!pi->active()); + bypass_button.set_active (!pi->enabled ()); bypass_button.signal_button_release_event().connect (sigc::mem_fun(*this, &PlugUIBase::bypass_button_release), false); focus_button.add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK); @@ -479,6 +525,9 @@ PlugUIBase::PlugUIBase (boost::shared_ptr pi) plugin_analysis_expander.property_expanded().signal_changed().connect( sigc::mem_fun(*this, &PlugUIBase::toggle_plugin_analysis)); plugin_analysis_expander.set_expanded(false); + cpuload_expander.property_expanded().signal_changed().connect( sigc::mem_fun(*this, &PlugUIBase::toggle_cpuload_display)); + cpuload_expander.set_expanded(false); + insert->DropReferences.connect (death_connection, invalidator (*this), boost::bind (&PlugUIBase::plugin_going_away, this), gui_context()); plugin->PresetAdded.connect (*this, invalidator (*this), boost::bind (&PlugUIBase::preset_added_or_removed, this), gui_context ()); @@ -494,6 +543,7 @@ PlugUIBase::PlugUIBase (boost::shared_ptr pi) PlugUIBase::~PlugUIBase() { delete eqgui; + delete stats_gui; delete latency_gui; } @@ -508,8 +558,8 @@ PlugUIBase::plugin_going_away () void PlugUIBase::set_latency_label () { - framecnt_t const l = insert->effective_latency (); - framecnt_t const sr = insert->session().frame_rate (); + samplecnt_t const l = insert->effective_latency (); + samplecnt_t const sr = insert->session().sample_rate (); string t; @@ -526,7 +576,7 @@ void PlugUIBase::latency_button_clicked () { if (!latency_gui) { - latency_gui = new LatencyGUI (*(insert.get()), insert->session().frame_rate(), insert->session().get_block_size()); + latency_gui = new LatencyGUI (*(insert.get()), insert->session().sample_rate(), insert->session().get_block_size()); latency_dialog = new ArdourWindow (_("Edit Latency")); /* use both keep-above and transient for to try cover as many different WM's as possible. @@ -550,7 +600,7 @@ PlugUIBase::processor_active_changed (boost::weak_ptr weak_p) boost::shared_ptr p (weak_p.lock()); if (p) { - bypass_button.set_active (!p->active()); + bypass_button.set_active (!p->enabled ()); } } @@ -561,7 +611,7 @@ PlugUIBase::preset_selected (Plugin::PresetRecord preset) return; } if (!preset.label.empty()) { - plugin->load_preset (preset); + insert->load_preset (preset); } else { // blank selected = no preset plugin->clear_preset(); @@ -589,7 +639,7 @@ void PlugUIBase::add_plugin_setting () { #ifndef NO_PLUGIN_STATE - NewPluginPresetDialog d (plugin); + NewPluginPresetDialog d (plugin, _("New Preset")); switch (d.run ()) { case Gtk::RESPONSE_ACCEPT: @@ -658,17 +708,24 @@ PlugUIBase::reset_plugin_parameters () insert->reset_parameters_to_default (); } +void +PlugUIBase::manage_pins () +{ + PluginPinWindowProxy* proxy = insert->pinmgr_proxy (); + if (proxy) { + proxy->get (true); + proxy->present (); + proxy->get ()->raise(); + } +} + bool PlugUIBase::bypass_button_release (GdkEventButton*) { bool view_says_bypassed = (bypass_button.active_state() != 0); - if (view_says_bypassed != insert->active()) { - if (view_says_bypassed) { - insert->activate (); - } else { - insert->deactivate (); - } + if (view_says_bypassed != insert->enabled ()) { + insert->enable (view_says_bypassed); } return false; @@ -714,11 +771,21 @@ PlugUIBase::toggle_description() } if (!description_expander.get_expanded()) { + const int child_height = description_expander.get_child ()->get_height (); + description_expander.remove(); + + Gtk::Window *toplevel = (Gtk::Window*) description_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 PlugUIBase::toggle_plugin_analysis() { @@ -729,12 +796,6 @@ PlugUIBase::toggle_plugin_analysis() eqgui = new PluginEqGui (insert); } - Gtk::Window *toplevel = (Gtk::Window*) plugin_analysis_expander.get_ancestor (GTK_TYPE_WINDOW); - - if (toplevel) { - toplevel->get_size (pre_eq_size.width, pre_eq_size.height); - } - plugin_analysis_expander.add (*eqgui); plugin_analysis_expander.show_all (); eqgui->start_listening (); @@ -742,6 +803,7 @@ PlugUIBase::toggle_plugin_analysis() if (!plugin_analysis_expander.get_expanded()) { // Hide & remove from expander + const int child_height = plugin_analysis_expander.get_child ()->get_height (); eqgui->hide (); eqgui->stop_listening (); @@ -750,9 +812,43 @@ PlugUIBase::toggle_plugin_analysis() Gtk::Window *toplevel = (Gtk::Window*) plugin_analysis_expander.get_ancestor (GTK_TYPE_WINDOW); if (toplevel) { - toplevel->resize (pre_eq_size.width, pre_eq_size.height); + Gtk::Requisition wr; + toplevel->get_size (wr.width, wr.height); + wr.height -= child_height; + toplevel->resize (wr.width, wr.height); + } + } +} + +void +PlugUIBase::toggle_cpuload_display() +{ + if (cpuload_expander.get_expanded() && !cpuload_expander.get_child()) { + if (stats_gui == 0) { + stats_gui = new PluginLoadStatsGui (insert); } + cpuload_expander.add (*stats_gui); + cpuload_expander.show_all(); + stats_gui->start_updating (); } + + if (!cpuload_expander.get_expanded()) { + const int child_height = cpuload_expander.get_child ()->get_height (); + + stats_gui->hide (); + stats_gui->stop_updating (); + cpuload_expander.remove(); + + Gtk::Window *toplevel = (Gtk::Window*) cpuload_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