X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fconfig.h;h=37c036587f4b75dad0992d057ba33cab1f98426e;hb=18fbb7b578eb0626c269bbb90de205c2d8fc3326;hp=c5ce59fbfe1342db479098b55fe90d5a2f623f74;hpb=40755a826d9f28be8ac69cfbab48a5ad1ad18961;p=dcpomatic.git diff --git a/src/lib/config.h b/src/lib/config.h index c5ce59fbf..37c036587 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -459,6 +459,24 @@ public: return _interface_complexity; } + enum PlayerMode { + PLAYER_MODE_WINDOW, + PLAYER_MODE_FULL, + PLAYER_MODE_DUAL + }; + + PlayerMode player_mode () const { + return _player_mode; + } + + bool respect_kdm_validity_periods () const { + return _respect_kdm_validity_periods; + } + + boost::optional player_log_file () const { + return _player_log_file; + } + /* SET (mostly) */ void set_master_encoding_threads (int n) { @@ -857,6 +875,26 @@ public: maybe_set (_interface_complexity, i, INTERFACE_COMPLEXITY); } + void set_player_mode (PlayerMode m) { + 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 Changed; /** Emitted if read() failed on an existing Config file. There is nothing @@ -1039,6 +1077,9 @@ private: boost::optional _gdc_username; boost::optional _gdc_password; Interface _interface_complexity; + PlayerMode _player_mode; + bool _respect_kdm_validity_periods; + boost::optional _player_log_file; static int const _current_version;