summaryrefslogtreecommitdiff
path: root/gtk2_ardour/axis_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/axis_view.h')
-rw-r--r--gtk2_ardour/axis_view.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/gtk2_ardour/axis_view.h b/gtk2_ardour/axis_view.h
index bc16aed06b..2a7c378197 100644
--- a/gtk2_ardour/axis_view.h
+++ b/gtk2_ardour/axis_view.h
@@ -37,10 +37,13 @@
namespace ARDOUR {
class Session;
+ class Stripable;
+ class PresentationInfo;
}
/**
- * AxisView defines the abstract base class for time-axis trackviews and routes.
+ * AxisView defines the abstract base class for horizontal and vertical
+ * presentations of Stripables.
*
*/
class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR::SessionHandlePtr, public virtual Selectable
@@ -53,6 +56,8 @@ class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR
sigc::signal<void> Hiding;
+ virtual boost::shared_ptr<ARDOUR::Stripable> stripable() const = 0;
+
virtual std::string state_id() const = 0;
/* for now, we always return properties in string form.
*/
@@ -72,6 +77,8 @@ class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR
property_hashtable.clear ();
}
+ void set_selected (bool yn);
+
virtual bool marked_for_display () const;
virtual bool set_marked_for_display (bool);