diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-23 01:41:46 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-23 01:41:46 +0100 |
| commit | ed2731617eb2c3db15cb3c57e880ecd39c375751 (patch) | |
| tree | 530b471ce48758767e10937b39201fd656953cf4 /src/lib/config.h | |
| parent | 69e46a5803c9c015f3da4153340b3d4554deea2e (diff) | |
Add player DCP directory to config.
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index 02295725b..fc5d820f9 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -481,6 +481,10 @@ public: return _player_log_file; } + boost::optional<boost::filesystem::path> player_dcp_directory () const { + return _player_dcp_directory; + } + /* SET (mostly) */ void set_master_encoding_threads (int n) { @@ -903,6 +907,18 @@ public: changed (); } + void set_player_dcp_directory (boost::filesystem::path p) { + maybe_set (_player_dcp_directory, p); + } + + void unset_player_dcp_directory () { + if (!_player_dcp_directory) { + return; + } + _player_dcp_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 @@ -1089,6 +1105,11 @@ private: 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; static int const _current_version; |
