Disable preferences menu if the config can't be written.
[dcpomatic.git] / src / lib / config.h
index 814f078f049b0c71ee725a81a079dd7a6ee2f567..80bb48d32cfb3a15d68acfb786721fca71ba7143 100644 (file)
@@ -77,6 +77,10 @@ public:
                SOUND_OUTPUT,
                INTERFACE_COMPLEXITY,
                PLAYER_DCP_DIRECTORY,
+#ifdef DCPOMATIC_VARIANT_SWAROOP
+               PLAYER_BACKGROUND_IMAGE,
+               PLAYER_WATERMARK,
+#endif
                OTHER
        };
 
@@ -486,6 +490,24 @@ public:
                return _player_dcp_directory;
        }
 
+       boost::optional<boost::filesystem::path> player_kdm_directory () const {
+               return _player_kdm_directory;
+       }
+
+#ifdef DCPOMATIC_VARIANT_SWAROOP
+       boost::optional<boost::filesystem::path> player_background_image () const {
+               return _player_background_image;
+       }
+
+       std::string kdm_server_url () const {
+               return _kdm_server_url;
+       }
+
+       boost::optional<boost::filesystem::path> player_watermark () const {
+               return _player_watermark;
+       }
+#endif
+
        /* SET (mostly) */
 
        void set_master_encoding_threads (int n) {
@@ -920,6 +942,48 @@ public:
                changed (PLAYER_DCP_DIRECTORY);
        }
 
+       void set_player_kdm_directory (boost::filesystem::path p) {
+               maybe_set (_player_kdm_directory, p);
+       }
+
+       void unset_player_kdm_directory () {
+               if (!_player_kdm_directory) {
+                       return;
+               }
+               _player_kdm_directory = boost::none;
+               changed ();
+       }
+
+#ifdef DCPOMATIC_VARIANT_SWAROOP
+       void set_player_background_image (boost::filesystem::path p) {
+               maybe_set (_player_background_image, p, PLAYER_BACKGROUND_IMAGE);
+       }
+
+       void unset_player_background_image () {
+               if (!_player_background_image) {
+                       return;
+               }
+               _player_background_image = boost::none;
+               changed (PLAYER_BACKGROUND_IMAGE);
+       }
+
+       void set_kdm_server_url (std::string s) {
+               maybe_set (_kdm_server_url, s);
+       }
+
+       void set_player_watermark (boost::filesystem::path p) {
+               maybe_set (_player_watermark, p, PLAYER_WATERMARK);
+       }
+
+       void unset_player_watermark () {
+               if (!_player_watermark) {
+                       return;
+               }
+               _player_watermark = boost::none;
+               changed (PLAYER_WATERMARK);
+       }
+#endif
+
        void changed (Property p = OTHER);
        boost::signals2::signal<void (Property)> Changed;
        /** Emitted if read() failed on an existing Config file.  There is nothing
@@ -938,6 +1002,7 @@ public:
        void write_cinemas () const;
        void link (boost::filesystem::path new_file) const;
        void copy_and_link (boost::filesystem::path new_file) const;
+       bool have_write_permission () const;
 
        void save_template (boost::shared_ptr<const Film> film, std::string name) const;
        bool existing_template (std::string name) const;
@@ -1111,6 +1176,12 @@ private:
            for playback.
        */
        boost::optional<boost::filesystem::path> _player_dcp_directory;
+       boost::optional<boost::filesystem::path> _player_kdm_directory;
+#ifdef DCPOMATIC_VARIANT_SWAROOP
+       boost::optional<boost::filesystem::path> _player_background_image;
+       std::string _kdm_server_url;
+       boost::optional<boost::filesystem::path> _player_watermark;
+#endif
 
        static int const _current_version;