mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
many changes associated with rationalizing selection flow
This commit is contained in:
parent
2047ee527c
commit
da7d7f9502
33 changed files with 272 additions and 199 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue