X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fscreen_dialog.h;h=51721866972bb2779152f130be3a9c2e98935937;hb=aa8bb6ae4fe4f3bb113a5d304429937f25e30191;hp=49e4d092a6721a747fecd1f548c2850975c827d1;hpb=cf65c2709664936940935996499ac87dc47515f0;p=dcpomatic.git diff --git a/src/wx/screen_dialog.h b/src/wx/screen_dialog.h index 49e4d092a..517218669 100644 --- a/src/wx/screen_dialog.h +++ b/src/wx/screen_dialog.h @@ -22,7 +22,10 @@ #include "editable_list.h" #include "lib/screen.h" #include +#include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS #include @@ -38,13 +41,15 @@ public: wxString, std::string name = "", std::string notes = "", - boost::optional c = boost::optional(), - std::vector d = std::vector() + boost::optional c = {}, + boost::optional f = {}, + std::vector d = {} ); std::string name () const; std::string notes () const; boost::optional recipient () const; + boost::optional recipient_file () const; std::vector trusted_devices () { return _trusted_devices; } @@ -64,6 +69,7 @@ private: wxTextCtrl* _name; wxTextCtrl* _notes; wxStaticText* _recipient_thumbprint; + wxStaticText* _recipient_file; wxButton* _get_recipient_from_file; wxButton* _download_recipient; EditableList* _trusted_device_list;