X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fkdm_output_panel.h;h=040815392d0036cd2a69b84a1643e65b2a00d827;hb=964cfede2ccf10f8af2c9dd83f24f790020c6162;hp=1f7373165c4e459da7dc06c21d4f5d069a3442dd;hpb=d9338a75602429347e36e5b393728c10cda731b3;p=dcpomatic.git diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h index 1f7373165..040815392 100644 --- a/src/wx/kdm_output_panel.h +++ b/src/wx/kdm_output_panel.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015-2017 Carl Hetherington + Copyright (C) 2015-2022 Carl Hetherington This file is part of DCP-o-matic. @@ -18,19 +18,25 @@ */ -#include "lib/kdm_with_metadata.h" + #include "wx_util.h" -#include "name_format_editor.h" +#include "lib/kdm_with_metadata.h" #include +#include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS #include -class wxRadioButton; -class wxDirPickerCtrl; + +class CheckBox; class DirPickerCtrl; -class KDMTimingPanel; class Job; -class Log; +class KDMChoice; +class NameFormatEditor; +class wxDirPickerCtrl; +class wxRadioButton; + class KDMOutputPanel : public wxPanel { @@ -52,7 +58,7 @@ public: } std::pair, int> make ( - std::list screen_kdms, + std::list screen_kdms, std::string name, std::function confirm_overwrite ); @@ -62,11 +68,12 @@ private: void advanced_clicked (); void write_to_changed (); void email_changed (); + void add_email_addresses_clicked (); - wxChoice* _type; + KDMChoice* _type; NameFormatEditor* _container_name_format; NameFormatEditor* _filename_format; - wxCheckBox* _write_to; + CheckBox* _write_to; #ifdef DCPOMATIC_USE_OWN_PICKER DirPickerCtrl* _folder; #else @@ -75,8 +82,9 @@ private: wxRadioButton* _write_flat; wxRadioButton* _write_folder; wxRadioButton* _write_zip; - wxCheckBox* _email; + CheckBox* _email; bool _forensic_mark_video; bool _forensic_mark_audio; boost::optional _forensic_mark_audio_up_to; + std::vector _extra_addresses; };