summaryrefslogtreecommitdiff
path: root/src/wx/kdm_output_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-06 20:33:04 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-06 20:33:04 +0100
commit6654f028571db33d1e203ff36f85619d03a9f9fb (patch)
treee4cf16388a8515f699d02e726a178c9f1f64f1f0 /src/wx/kdm_output_panel.h
parent9ec7cefdc6738fc3e03d9bea01a567e64ec03a87 (diff)
Add advanced KDM options button containing switches for forensic marking.
Diffstat (limited to 'src/wx/kdm_output_panel.h')
-rw-r--r--src/wx/kdm_output_panel.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h
index b2f428252..ba947b714 100644
--- a/src/wx/kdm_output_panel.h
+++ b/src/wx/kdm_output_panel.h
@@ -41,6 +41,12 @@ public:
boost::filesystem::path directory () const;
dcp::Formulation formulation () const;
+ bool forensic_mark_video () const {
+ return _forensic_mark_video;
+ }
+ bool forensic_mark_audio () const {
+ return _forensic_mark_audio;
+ }
std::pair<boost::shared_ptr<Job>, int> make (
std::list<ScreenKDM> screen_kdms,
@@ -52,6 +58,7 @@ public:
private:
void kdm_write_type_changed ();
+ void advanced_clicked ();
wxChoice* _type;
NameFormatEditor* _container_name_format;
@@ -66,4 +73,6 @@ private:
wxRadioButton* _write_folder;
wxRadioButton* _write_zip;
wxCheckBox* _email;
+ bool _forensic_mark_video;
+ bool _forensic_mark_audio;
};