diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-06 12:26:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-06 12:26:12 +0100 |
| commit | 1bff0990433ab0ce588acaef7c589fa623bd998b (patch) | |
| tree | 65cba435e949deb6359bbf75866b52684116df06 /src/lib/playlist.h | |
| parent | 3429cf48ff2ce056413588be4151be82c8114861 (diff) | |
Add interface to set up still image lengths.
Diffstat (limited to 'src/lib/playlist.h')
| -rw-r--r-- | src/lib/playlist.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h index 29a52d433..1a24a0227 100644 --- a/src/lib/playlist.h +++ b/src/lib/playlist.h @@ -84,12 +84,19 @@ public: std::list<boost::shared_ptr<const SndfileContent> > sndfile () const { return _sndfile; } + + mutable boost::signals2::signal<void ()> Changed; + mutable boost::signals2::signal<void (boost::weak_ptr<Content>, int)> ContentChanged; private: + void content_changed (boost::weak_ptr<Content>, int); + VideoFrom _video_from; AudioFrom _audio_from; boost::shared_ptr<const FFmpegContent> _ffmpeg; std::list<boost::shared_ptr<const ImageMagickContent> > _imagemagick; std::list<boost::shared_ptr<const SndfileContent> > _sndfile; + + std::list<boost::signals2::connection> _content_connections; }; |
