Basics of multiple captions per content so that DCPContent can
[dcpomatic.git] / src / lib / content.h
index 519ff8907478d4459ac2ed1723098a5565d957e5..2a249011a55f4d889383b8a76702d8daaf71893d 100644 (file)
@@ -63,11 +63,10 @@ public:
 class Content : public boost::enable_shared_from_this<Content>, public Signaller, public boost::noncopyable
 {
 public:
-       Content (boost::shared_ptr<const Film>);
+       explicit Content (boost::shared_ptr<const Film>);
        Content (boost::shared_ptr<const Film>, DCPTime);
        Content (boost::shared_ptr<const Film>, boost::filesystem::path);
        Content (boost::shared_ptr<const Film>, cxml::ConstNodePtr);
-       Content (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
        virtual ~Content () {}
 
        /** Examine the content to establish digest, frame rates and any other
@@ -76,7 +75,7 @@ public:
         */
        virtual void examine (boost::shared_ptr<Job> job);
 
-       virtual void use_template (boost::shared_ptr<const Content> c);
+       virtual void take_settings_from (boost::shared_ptr<const Content> c);
 
        /** @return Quick one-line summary of the content, as will be presented in the
         *  film editor.
@@ -99,6 +98,7 @@ public:
        boost::shared_ptr<Content> clone () const;
 
        void set_path (boost::filesystem::path);
+       void set_paths (std::vector<boost::filesystem::path> paths);
 
        std::string path_summary () const;
 
@@ -121,7 +121,7 @@ public:
 
        /** @return Digest of the content's file(s).  Note: this is
         *  not a complete MD5-or-whatever hash, but a sort of poor
-        *  man's version (see comments in ::examine).
+        *  man's version (see comments in examine()).
         */
        std::string digest () const {
                boost::mutex::scoped_lock lm (_mutex);
@@ -165,6 +165,7 @@ public:
        }
 
        void set_video_frame_rate (double r);
+       void unset_video_frame_rate ();
 
        double active_video_frame_rate () const;
 
@@ -180,7 +181,10 @@ public:
 
        boost::shared_ptr<VideoContent> video;
        boost::shared_ptr<AudioContent> audio;
-       boost::shared_ptr<SubtitleContent> subtitle;
+       std::list<boost::shared_ptr<CaptionContent> > caption;
+
+       boost::shared_ptr<CaptionContent> only_caption () const;
+       boost::shared_ptr<CaptionContent> caption_of_original_type (CaptionType type) const;
 
        void signal_changed (int);