summaryrefslogtreecommitdiff
path: root/src/wx/kdm_output_panel.h
diff options
context:
space:
mode:
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;
};