Add KDM directory configuration in player.
[dcpomatic.git] / src / lib / config.h
index 814f078f049b0c71ee725a81a079dd7a6ee2f567..60e85c5f362dc1bfa2c0d8983458c758290342ef 100644 (file)
@@ -486,6 +486,10 @@ public:
                return _player_dcp_directory;
        }
 
+       boost::optional<boost::filesystem::path> player_kdm_directory () const {
+               return _player_kdm_directory;
+       }
+
        /* SET (mostly) */
 
        void set_master_encoding_threads (int n) {
@@ -920,6 +924,18 @@ 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 ();
+       }
+
        void changed (Property p = OTHER);
        boost::signals2::signal<void (Property)> Changed;
        /** Emitted if read() failed on an existing Config file.  There is nothing
@@ -1111,6 +1127,7 @@ private:
            for playback.
        */
        boost::optional<boost::filesystem::path> _player_dcp_directory;
+       boost::optional<boost::filesystem::path> _player_kdm_directory;
 
        static int const _current_version;