summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-04 23:26:59 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-04 23:26:59 +0000
commit4a9f3173ee806f5e3955c30c1bacb60cdbcc1f96 (patch)
treecc943dccf9a9ae727f5e52138d8689d296d5573c /gtk2_ardour/processor_box.h
parenta7d465fcb7254ad4acdf25208976802553c0f6a5 (diff)
Highlight a send processor entry differently when it the mixer strip's fader is being used to control it. Fixes #3659.
git-svn-id: svn://localhost/ardour2/branches/3.0@8440 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/processor_box.h')
-rw-r--r--gtk2_ardour/processor_box.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/processor_box.h b/gtk2_ardour/processor_box.h
index 785809e142..6a9c1312ad 100644
--- a/gtk2_ardour/processor_box.h
+++ b/gtk2_ardour/processor_box.h
@@ -189,7 +189,8 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
MixerStrip* _parent_strip; // null if in RouteParamsUI
bool _owner_is_mixer;
bool ab_direction;
- PBD::ScopedConnectionList connections;
+ PBD::ScopedConnectionList _mixer_strip_connections;
+ PBD::ScopedConnectionList _route_connections;
boost::function<PluginSelector*()> _get_plugin_selector;
@@ -321,6 +322,8 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
bool one_processor_can_be_edited ();
bool processor_can_be_edited (boost::shared_ptr<ARDOUR::Processor>);
+
+ void mixer_strip_delivery_changed (boost::weak_ptr<ARDOUR::Delivery>);
};
#endif /* __ardour_gtk_processor_box__ */