summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-06-20 17:15:33 +0000
committerCarl Hetherington <carl@carlh.net>2009-06-20 17:15:33 +0000
commitbe3aff4bdabbf5ced06db66d7bea4cd6b7ec3572 (patch)
treee076e6648bd3c871481ae89c1e50d2ca54cefd81 /gtk2_ardour/mixer_strip.h
parent9dfa933c6e225bc0b244cabd04fec15e95e37f2b (diff)
Mix group tabs in the mixer.
git-svn-id: svn://localhost/ardour2/branches/3.0@5228 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/mixer_strip.h')
-rw-r--r--gtk2_ardour/mixer_strip.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/gtk2_ardour/mixer_strip.h b/gtk2_ardour/mixer_strip.h
index 43c2e197fd..ced789f3ef 100644
--- a/gtk2_ardour/mixer_strip.h
+++ b/gtk2_ardour/mixer_strip.h
@@ -84,9 +84,9 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
MixerStrip (Mixer_UI&, ARDOUR::Session&, bool in_mixer = true);
~MixerStrip ();
- void set_width (Width, void* owner);
- Width get_width() const { return _width; }
- void* width_owner() const { return _width_owner; }
+ void set_width_enum (Width, void* owner);
+ Width get_width_enum () const { return _width; }
+ void* width_owner () const { return _width_owner; }
GainMeter& gain_meter() { return gpm; }
PannerUI& panner_ui() { return panners; }
@@ -257,6 +257,8 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
boost::shared_ptr<ARDOUR::Delivery> _current_delivery;
void revert_to_default_display ();
+ void set_mix_group_to_new ();
+
static int scrollbar_height;
};