summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2007-05-17 10:41:14 +0000
committerCarl Hetherington <carl@carlh.net>2007-05-17 10:41:14 +0000
commitef65fd251023378699c3ef3842fc55e93a92d04a (patch)
tree0b8c18d48355c9e5048a3ab6ea303b7268d9d1c5 /gtk2_ardour/automation_line.h
parent06fd14b0850c8d043ae568c3d1f34460218d879f (diff)
Add stacked lanes mode which displays regions on different layers at different positions in the view.
git-svn-id: svn://localhost/ardour2/trunk@1855 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/automation_line.h')
-rw-r--r--gtk2_ardour/automation_line.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/automation_line.h b/gtk2_ardour/automation_line.h
index 76afff5097..2637a0c554 100644
--- a/gtk2_ardour/automation_line.h
+++ b/gtk2_ardour/automation_line.h
@@ -127,13 +127,14 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulThingWithGoin
string name() const { return _name; }
bool visible() const { return _visible; }
guint32 height() const { return _height; }
+ guint32 y_position() const { return _y_position; }
void set_line_color (uint32_t);
uint32_t get_line_color() const { return _line_color; }
void show ();
void hide ();
- void set_height (guint32);
+ void set_y_position_and_height (uint32_t, uint32_t);
void set_verbose_cursor_uses_gain_mapping (bool yn);
TimeAxisView& trackview;
@@ -164,6 +165,7 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulThingWithGoin
protected:
string _name;
+ guint32 _y_position;
guint32 _height;
uint32_t _line_color;
ARDOUR::AutomationList& alist;