summaryrefslogtreecommitdiff
path: root/src/lib/variant.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-04-19 14:27:41 +0200
committerCarl Hetherington <cth@carlh.net>2024-04-21 22:07:15 +0200
commit76a84e2661ba288fc6accc01c939e1b9bc891579 (patch)
treeab464c5e6e1c88e5c242b108cba8f90e067b7aa9 /src/lib/variant.cc
parentb83cd733adf565f5e7e96e226d447a1beeef9a39 (diff)
Bring some more branding into the variant.
Diffstat (limited to 'src/lib/variant.cc')
-rw-r--r--src/lib/variant.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/variant.cc b/src/lib/variant.cc
index e69d94012..4434993b1 100644
--- a/src/lib/variant.cc
+++ b/src/lib/variant.cc
@@ -36,6 +36,10 @@ static char const* _dcpomatic_playlist_editor = "DCP-o-matic Playlist Editor";
static char const* _dcpomatic_combiner = "DCP-o-matic Combiner";
static char const* _dcpomatic_batch_converter = "DCP-o-matic Batch Converter";
+static bool const _show_splash = true;
+static bool const _show_tagline = true;
+static bool const _show_dcpomatic_website = true;
+
std::string
variant::dcpomatic()
@@ -133,3 +137,21 @@ variant::dcpomatic_player_app()
return _dcpomatic_player_app;
}
+bool
+variant::show_splash()
+{
+ return _show_splash;
+}
+
+bool
+variant::show_tagline()
+{
+ return _show_tagline;
+}
+
+bool
+variant::show_dcpomatic_website()
+{
+ return _show_dcpomatic_website;
+}
+