summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-10-11 00:13:07 +0200
committerRobin Gareus <robin@gareus.org>2019-10-11 00:13:07 +0200
commit7a66b22428afa1a3a7105119e1e09c08d1612b0e (patch)
treeb51ae24d2e9ba124d4367a981a82fc7063aa332c /gtk2_ardour
parent71fa4fa75c8eebdc2f9c09306fb19900bb61d1cc (diff)
Show preset-browser button if annoted presets are available
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/au_pluginui.mm4
-rw-r--r--gtk2_ardour/generic_pluginui.cc3
-rw-r--r--gtk2_ardour/lv2_plugin_ui.cc3
-rw-r--r--gtk2_ardour/vst_plugin_ui.cc3
4 files changed, 12 insertions, 1 deletions
diff --git a/gtk2_ardour/au_pluginui.mm b/gtk2_ardour/au_pluginui.mm
index 1aebc10214..d4003550b5 100644
--- a/gtk2_ardour/au_pluginui.mm
+++ b/gtk2_ardour/au_pluginui.mm
@@ -431,7 +431,9 @@ AUPluginUI::AUPluginUI (boost::shared_ptr<PluginInsert> insert)
smaller_hbox->pack_start (add_button, false, false);
smaller_hbox->pack_start (save_button, false, false);
smaller_hbox->pack_start (delete_button, false, false);
-
+ if (has_descriptive_presets ()) {
+ smaller_hbox->pack_start (preset_browser_button, false, false);
+ }
#if 0
/* one day these might be useful with an AU plugin, but not yet */
smaller_hbox->pack_start (automation_mode_label, false, false);
diff --git a/gtk2_ardour/generic_pluginui.cc b/gtk2_ardour/generic_pluginui.cc
index 1fbe2278a8..29294a2af7 100644
--- a/gtk2_ardour/generic_pluginui.cc
+++ b/gtk2_ardour/generic_pluginui.cc
@@ -115,6 +115,9 @@ GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrol
smaller_hbox->pack_start (add_button, false, false);
smaller_hbox->pack_start (save_button, false, false);
smaller_hbox->pack_start (delete_button, false, false);
+ if (pi->controls().size() > 0 && has_descriptive_presets ()) {
+ smaller_hbox->pack_start (preset_browser_button, false, false);
+ }
if (pi->controls().size() > 0) {
smaller_hbox->pack_start (reset_button, false, false, 4);
}
diff --git a/gtk2_ardour/lv2_plugin_ui.cc b/gtk2_ardour/lv2_plugin_ui.cc
index ff2fc79b3b..7f37b8c8ca 100644
--- a/gtk2_ardour/lv2_plugin_ui.cc
+++ b/gtk2_ardour/lv2_plugin_ui.cc
@@ -305,6 +305,9 @@ LV2PluginUI::LV2PluginUI(boost::shared_ptr<PluginInsert> pi,
if (pi->controls().size() > 0) {
_ardour_buttons_box.pack_end (reset_button, false, false, 4);
}
+ if (has_descriptive_presets ()) {
+ _ardour_buttons_box.pack_end (preset_browser_button, false, false);
+ }
_ardour_buttons_box.pack_end (delete_button, false, false);
_ardour_buttons_box.pack_end (save_button, false, false);
_ardour_buttons_box.pack_end (add_button, false, false);
diff --git a/gtk2_ardour/vst_plugin_ui.cc b/gtk2_ardour/vst_plugin_ui.cc
index 4416a354cb..1055183be4 100644
--- a/gtk2_ardour/vst_plugin_ui.cc
+++ b/gtk2_ardour/vst_plugin_ui.cc
@@ -45,6 +45,9 @@ VSTPluginUI::VSTPluginUI (boost::shared_ptr<ARDOUR::PluginInsert> insert, boost:
if (insert->controls().size() > 0) {
box->pack_end (reset_button, false, false, 4);
}
+ if (has_descriptive_presets ()) {
+ box->pack_end (preset_browser_button, false, false);
+ }
box->pack_end (delete_button, false, false);
box->pack_end (save_button, false, false);
box->pack_end (add_button, false, false);