summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-11-10 03:16:57 +0000
committerCarl Hetherington <carl@carlh.net>2009-11-10 03:16:57 +0000
commitdbb0b9ca4f82ea8e3829cfeb009b9746c3d6f0dc (patch)
tree2419b9eb122cf19a28940ea115c2d9630d0a22cc /gtk2_ardour/mixer_strip.h
parentda03bc931b4c82497fb4b02003804c18768c56b6 (diff)
Various adjustments to user bundle handling, with the general aim of allowing the user to create meaningful bundles with respect to their sound card an outboard setup, and having those user bundles take priority over ardour-generated ones.
git-svn-id: svn://localhost/ardour2/branches/3.0@6050 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/mixer_strip.h')
-rw-r--r--gtk2_ardour/mixer_strip.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/mixer_strip.h b/gtk2_ardour/mixer_strip.h
index ac68b505ef..fdcf85e1f3 100644
--- a/gtk2_ardour/mixer_strip.h
+++ b/gtk2_ardour/mixer_strip.h
@@ -187,10 +187,12 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
gint input_press (GdkEventButton *);
gint output_press (GdkEventButton *);
- Gtk::Menu input_menu;
+ Gtk::Menu input_menu;
+ std::list<boost::shared_ptr<ARDOUR::Bundle> > input_menu_bundles;
void maybe_add_bundle_to_input_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
Gtk::Menu output_menu;
+ std::list<boost::shared_ptr<ARDOUR::Bundle> > output_menu_bundles;
void maybe_add_bundle_to_output_menu (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::BundleList const &);
void bundle_input_toggled (boost::shared_ptr<ARDOUR::Bundle>);