summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-02-10 02:44:56 +0000
committerCarl Hetherington <carl@carlh.net>2011-02-10 02:44:56 +0000
commit4569f40a3809ced81374550642bc053202211bc2 (patch)
treee9c0fc3b4eba8bd340e8d9352ec5989a57180480 /gtk2_ardour/processor_box.h
parent8ca49536e78b67c190036bcd17c0f26214ae36ff (diff)
Prevent erroneous splitting icons in the editor mixer strip's processor box.
git-svn-id: svn://localhost/ardour2/branches/3.0@8816 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/processor_box.h')
-rw-r--r--gtk2_ardour/processor_box.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk2_ardour/processor_box.h b/gtk2_ardour/processor_box.h
index a6395fc4ef..bd5f18b947 100644
--- a/gtk2_ardour/processor_box.h
+++ b/gtk2_ardour/processor_box.h
@@ -119,6 +119,9 @@ public:
void set_enum_width (Width);
virtual void set_pixel_width (int) {}
+ /** Hide any widgets that should be hidden */
+ virtual void hide_things () {}
+
protected:
virtual void setup_visuals ();
@@ -173,6 +176,8 @@ class PluginInsertProcessorEntry : public ProcessorEntry
public:
PluginInsertProcessorEntry (boost::shared_ptr<ARDOUR::PluginInsert>, Width);
+ void hide_things ();
+
private:
void setup_visuals ();
void plugin_insert_splitting_changed ();
@@ -206,6 +211,8 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
void select_all_inserts ();
void select_all_sends ();
+ void hide_things ();
+
Gtk::Window* get_processor_ui (boost::shared_ptr<ARDOUR::Processor>) const;
void toggle_edit_processor (boost::shared_ptr<ARDOUR::Processor>);