summaryrefslogtreecommitdiff
path: root/gtk2_ardour/selection.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-01-18 04:34:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-01-18 04:34:00 +0000
commit013ec977324d98d7c4b243ddad86d84b94abdc62 (patch)
tree8ef847eaab6b6df2bf406eba96370c9fd4bd9301 /gtk2_ardour/selection.h
parent143983948ecbdc9e9e4c4f3fe2541b2bea22be87 (diff)
make ctrl-rubber-band-select do something closer to the right thing
git-svn-id: svn://localhost/ardour2/trunk@1354 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/selection.h')
-rw-r--r--gtk2_ardour/selection.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/gtk2_ardour/selection.h b/gtk2_ardour/selection.h
index a2997cd7b5..5422888536 100644
--- a/gtk2_ardour/selection.h
+++ b/gtk2_ardour/selection.h
@@ -92,49 +92,52 @@ class Selection : public sigc::trackable
bool selected (TimeAxisView*);
bool selected (RegionView*);
- void set (list<Selectable*>&);
- void add (list<Selectable*>&);
+ void set (std::list<Selectable*>&);
+ void add (std::list<Selectable*>&);
+ void toggle (std::list<Selectable*>&);
void set (TimeAxisView*);
- void set (const list<TimeAxisView*>&);
+ void set (const std::list<TimeAxisView*>&);
void set (RegionView*);
void set (std::vector<RegionView*>&);
long set (TimeAxisView*, nframes_t, nframes_t);
void set (ARDOUR::AutomationList*);
void set (boost::shared_ptr<ARDOUR::Playlist>);
- void set (const list<boost::shared_ptr<ARDOUR::Playlist> >&);
+ void set (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void set (boost::shared_ptr<ARDOUR::Redirect>);
void set (AutomationSelectable*);
void toggle (TimeAxisView*);
- void toggle (const list<TimeAxisView*>&);
+ void toggle (const std::list<TimeAxisView*>&);
void toggle (RegionView*);
void toggle (std::vector<RegionView*>&);
long toggle (nframes_t, nframes_t);
void toggle (ARDOUR::AutomationList*);
void toggle (boost::shared_ptr<ARDOUR::Playlist>);
- void toggle (const list<boost::shared_ptr<ARDOUR::Playlist> >&);
+ void toggle (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void toggle (boost::shared_ptr<ARDOUR::Redirect>);
+ void toggle (const std::vector<AutomationSelectable*>&);
void add (TimeAxisView*);
- void add (const list<TimeAxisView*>&);
+ void add (const std::list<TimeAxisView*>&);
void add (RegionView*);
void add (std::vector<RegionView*>&);
long add (nframes_t, nframes_t);
void add (ARDOUR::AutomationList*);
void add (boost::shared_ptr<ARDOUR::Playlist>);
- void add (const list<boost::shared_ptr<ARDOUR::Playlist> >&);
+ void add (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void add (boost::shared_ptr<ARDOUR::Redirect>);
void remove (TimeAxisView*);
- void remove (const list<TimeAxisView*>&);
+ void remove (const std::list<TimeAxisView*>&);
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::Playlist>);
- void remove (const list<boost::shared_ptr<ARDOUR::Playlist> >&);
+ void remove (const std::list<boost::shared_ptr<ARDOUR::Playlist> >&);
void remove (boost::shared_ptr<ARDOUR::Redirect>);
+ void remove (const list<Selectable*>&);
void replace (uint32_t time_index, nframes_t start, nframes_t end);