Rename Subtitle -> Text
[dcpomatic.git] / src / lib / content.h
index d0a0466af5c58880eb7b1cd82319987c38233f75..63d03fd713121cdf3fadebe17390158e32fa9284 100644 (file)
@@ -63,7 +63,7 @@ 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);
@@ -76,7 +76,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.
@@ -166,6 +166,7 @@ public:
        }
 
        void set_video_frame_rate (double r);
+       void unset_video_frame_rate ();
 
        double active_video_frame_rate () const;
 
@@ -181,7 +182,7 @@ public:
 
        boost::shared_ptr<VideoContent> video;
        boost::shared_ptr<AudioContent> audio;
-       boost::shared_ptr<SubtitleContent> subtitle;
+       boost::shared_ptr<TextContent> subtitle;
 
        void signal_changed (int);