summaryrefslogtreecommitdiff
path: root/src/lib/config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-05-11 23:29:45 +0100
committerCarl Hetherington <cth@carlh.net>2018-05-27 23:05:45 +0100
commit8449388da769c45ef8a441bccdeb062bc96d27ae (patch)
treec21cbcb15406808c3fce176e21497b7db4e2ae1f /src/lib/config.cc
parentc2dc55e06e47d2ff0771af37ce3cd5acb01c914d (diff)
Simple and optional messagebox notification when jobs finish.
Diffstat (limited to 'src/lib/config.cc')
-rw-r--r--src/lib/config.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index e2f2bbeb9..026c92c83 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -147,6 +147,7 @@ Config::set_defaults ()
*/
_frames_in_memory_multiplier = 3;
_decode_reduction = optional<int>();
+ _default_notify = false;
_allowed_dcp_frame_rates.clear ();
_allowed_dcp_frame_rates.push_back (24);
@@ -429,6 +430,7 @@ try
}
_frames_in_memory_multiplier = f.optional_number_child<int>("FramesInMemoryMultiplier").get_value_or(3);
_decode_reduction = f.optional_number_child<int>("DecodeReduction");
+ _default_notify = f.optional_bool_child("DefaultNotify").get_value_or(false);
/* Replace any cinemas from config.xml with those from the configured file */
if (boost::filesystem::exists (_cinemas_file)) {
@@ -745,6 +747,9 @@ Config::write_config () const
root->add_child("DecodeReduction")->add_child_text(raw_convert<string>(_decode_reduction.get()));
}
+ /* [XML] DefaultNotify 1 to default jobs to notify when complete, otherwise 0 */
+ root->add_child("DefaultNotify")->add_child_text(_default_notify ? "1" : "0");
+
try {
doc.write_to_file_formatted(config_file().string());
} catch (xmlpp::exception& e) {