summaryrefslogtreecommitdiff
path: root/gtk2_ardour/selection.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-19 00:47:49 +0000
committerDavid Robillard <d@drobilla.net>2008-09-19 00:47:49 +0000
commitd357eca668044badcb4bab318e2e74cfffa9a0b0 (patch)
treeeab9bf33b194f9e37c20f84375e5caa748ee994a /gtk2_ardour/selection.h
parent3d976c5b727e4d55ce439b1d7c055a814477fa1a (diff)
Factor out sequencing related things into an independant new library: "evoral".
Anything related to the storage of events/values over a range of time lives in evoral. This includes MidiModel (Evoral::Sequence) and automation data (AutomationList (Evoral::ControlList), Automatable (Evoral::ControlSet), etc). libs/evoral synced with http://svn.drobilla.net/lad/trunk/evoral r1511. git-svn-id: svn://localhost/ardour2/branches/3.0@3754 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/selection.h')
-rw-r--r--gtk2_ardour/selection.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/gtk2_ardour/selection.h b/gtk2_ardour/selection.h
index 17862e127b..c6923e663c 100644
--- a/gtk2_ardour/selection.h
+++ b/gtk2_ardour/selection.h
@@ -47,6 +47,10 @@ namespace ARDOUR {
class AutomationList;
}
+namespace Evoral {
+ class ControlList;
+}
+
/// Lists of selected things
/** The Selection class holds lists of selected items (tracks, regions, etc. etc.). */
@@ -105,7 +109,7 @@ class Selection : public sigc::trackable
void set (RegionView*, bool also_clear_tracks = true);
void set (std::vector<RegionView*>&);
long set (TimeAxisView*, nframes_t, nframes_t);
- void set (ARDOUR::AutomationList*);
+ void set (boost::shared_ptr<Evoral::ControlList>);
void set (boost::shared_ptr<ARDOUR::Playlist>);
void set (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void set (AutomationSelectable*);
@@ -128,7 +132,7 @@ class Selection : public sigc::trackable
void add (RegionView*);
void add (std::vector<RegionView*>&);
long add (nframes_t, nframes_t);
- void add (ARDOUR::AutomationList*);
+ void add (boost::shared_ptr<Evoral::ControlList>);
void add (boost::shared_ptr<ARDOUR::Playlist>);
void add (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void add (Marker*);
@@ -139,7 +143,7 @@ class Selection : public sigc::trackable
void remove (RegionView*);
void remove (uint32_t selection_id);
void remove (nframes_t, nframes_t);
- void remove (ARDOUR::AutomationList*);
+ void remove (boost::shared_ptr<ARDOUR::AutomationList>);
void remove (boost::shared_ptr<ARDOUR::Playlist>);
void remove (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void remove (const list<Selectable*>&);