summaryrefslogtreecommitdiff
path: root/src/lib/config.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-27 11:25:21 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-27 11:25:21 +0100
commitf76453d0b78e5b71abbd9b4fcfda9e8eb0b61ad0 (patch)
tree2e486b2c2724d6a2d3ec10c6f0855e82aa7fbf5b /src/lib/config.h
parentf169ad6ed7d4061c40802c7dea2e1abb04cdeb4b (diff)
Untested watermarking.
Diffstat (limited to 'src/lib/config.h')
-rw-r--r--src/lib/config.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/config.h b/src/lib/config.h
index 378272ff0..bcc46f8fa 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -79,6 +79,7 @@ public:
PLAYER_DCP_DIRECTORY,
#ifdef DCPOMATIC_VARIANT_SWAROOP
PLAYER_BACKGROUND_IMAGE,
+ PLAYER_WATERMARK,
#endif
OTHER
};
@@ -501,6 +502,10 @@ public:
std::string kdm_server_url () const {
return _kdm_server_url;
}
+
+ boost::optional<boost::filesystem::path> player_watermark () const {
+ return _player_watermark;
+ }
#endif
/* SET (mostly) */
@@ -965,6 +970,18 @@ public:
void set_kdm_server_url (std::string s) {
maybe_set (_kdm_server_url, s);
}
+
+ void set_player_watermark (boost::filesystem::path p) {
+ maybe_set (_player_watermark, p, PLAYER_WATERMARK);
+ }
+
+ void unset_player_watermark () {
+ if (!_player_watermark) {
+ return;
+ }
+ _player_watermark = boost::none;
+ changed (PLAYER_WATERMARK);
+ }
#endif
void changed (Property p = OTHER);
@@ -1162,6 +1179,7 @@ private:
#ifdef DCPOMATIC_VARIANT_SWAROOP
boost::optional<boost::filesystem::path> _player_background_image;
std::string _kdm_server_url;
+ boost::optional<boost::filesystem::path> _player_watermark;
#endif
static int const _current_version;