Very basic player logging.
[dcpomatic.git] / src / lib / config.h
index d2829af0884bdf374b6c2c6847fd2c78862041c5..37c036587f4b75dad0992d057ba33cab1f98426e 100644 (file)
@@ -469,6 +469,14 @@ public:
                return _player_mode;
        }
 
+       bool respect_kdm_validity_periods () const {
+               return _respect_kdm_validity_periods;
+       }
+
+       boost::optional<boost::filesystem::path> player_log_file () const {
+               return _player_log_file;
+       }
+
        /* SET (mostly) */
 
        void set_master_encoding_threads (int n) {
@@ -871,6 +879,22 @@ public:
                maybe_set (_player_mode, m);
        }
 
+       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 changed (Property p = OTHER);
        boost::signals2::signal<void (Property)> Changed;
        /** Emitted if read() failed on an existing Config file.  There is nothing
@@ -1054,6 +1078,8 @@ private:
        boost::optional<std::string> _gdc_password;
        Interface _interface_complexity;
        PlayerMode _player_mode;
+       bool _respect_kdm_validity_periods;
+       boost::optional<boost::filesystem::path> _player_log_file;
 
        static int const _current_version;