Add KDM directory configuration in player.
[dcpomatic.git] / src / lib / config.h
index d2829af0884bdf374b6c2c6847fd2c78862041c5..60e85c5f362dc1bfa2c0d8983458c758290342ef 100644 (file)
@@ -76,6 +76,7 @@ public:
                SOUND,
                SOUND_OUTPUT,
                INTERFACE_COMPLEXITY,
+               PLAYER_DCP_DIRECTORY,
                OTHER
        };
 
@@ -469,6 +470,26 @@ public:
                return _player_mode;
        }
 
+       int image_display () const {
+               return _image_display;
+       }
+
+       bool respect_kdm_validity_periods () const {
+               return _respect_kdm_validity_periods;
+       }
+
+       boost::optional<boost::filesystem::path> player_log_file () const {
+               return _player_log_file;
+       }
+
+       boost::optional<boost::filesystem::path> player_dcp_directory () const {
+               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) {
@@ -871,6 +892,50 @@ public:
                maybe_set (_player_mode, m);
        }
 
+       void set_image_display (int n) {
+               maybe_set (_image_display, n);
+       }
+
+       void set_respect_kdm_validity_periods (bool r) {
+               maybe_set (_respect_kdm_validity_periods, r);
+       }
+
+       void set_player_log_file (boost::filesystem::path p) {
+               maybe_set (_player_log_file, p);
+       }
+
+       void unset_player_log_file () {
+               if (!_player_log_file) {
+                       return;
+               }
+               _player_log_file = boost::none;
+               changed ();
+       }
+
+       void set_player_dcp_directory (boost::filesystem::path p) {
+               maybe_set (_player_dcp_directory, p, PLAYER_DCP_DIRECTORY);
+       }
+
+       void unset_player_dcp_directory () {
+               if (!_player_dcp_directory) {
+                       return;
+               }
+               _player_dcp_directory = boost::none;
+               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
@@ -1054,6 +1119,15 @@ private:
        boost::optional<std::string> _gdc_password;
        Interface _interface_complexity;
        PlayerMode _player_mode;
+       int _image_display;
+       bool _respect_kdm_validity_periods;
+       boost::optional<boost::filesystem::path> _player_log_file;
+       /** A directory containing DCPs whose contents are presented to the user
+           in the dual-screen player mode.  DCPs on the list can be loaded
+           for playback.
+       */
+       boost::optional<boost::filesystem::path> _player_dcp_directory;
+       boost::optional<boost::filesystem::path> _player_kdm_directory;
 
        static int const _current_version;