diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-10-15 22:18:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-10-15 22:18:00 +0100 |
| commit | 6b35b4764ac5446c845a1dde9a01e0401862d835 (patch) | |
| tree | f8053ff11fcd290b07ffee4a41cf9ca3668514ca /src/lib/playlist.h | |
| parent | f3c8a0a8d45df52ec449aa1d3e02d308a2c36b42 (diff) | |
Restore up/down buttons for simple content movements.
Diffstat (limited to 'src/lib/playlist.h')
| -rw-r--r-- | src/lib/playlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h index 7dbf41604..05928ee57 100644 --- a/src/lib/playlist.h +++ b/src/lib/playlist.h @@ -61,6 +61,8 @@ public: void add (boost::shared_ptr<Content>); void remove (boost::shared_ptr<Content>); void remove (ContentList); + void move_earlier (boost::shared_ptr<Content>); + void move_later (boost::shared_ptr<Content>); bool has_subtitles () const; @@ -86,6 +88,7 @@ private: void content_changed (boost::weak_ptr<Content>, int, bool); void reconnect (); + /** List of content. Kept sorted in position order. */ ContentList _content; bool _sequence_video; bool _sequencing_video; |
