X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fscreen_dialog.h;h=fcb3fba5d651b00c6f1adb0c220cb24724efa051;hb=2fd641547b5fb795fc17e98e47f489fa82e8ff42;hp=913480d76be734e0b7febfb930b80bf904e4a02a;hpb=1e77753ef4119b6d7df7d2255b1a1d8d6af951de;p=dcpomatic.git diff --git a/src/wx/screen_dialog.h b/src/wx/screen_dialog.h index 913480d76..fcb3fba5d 100644 --- a/src/wx/screen_dialog.h +++ b/src/wx/screen_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2018 Carl Hetherington + Copyright (C) 2012-2022 Carl Hetherington This file is part of DCP-o-matic. @@ -18,16 +18,18 @@ */ + #include "editable_list.h" #include "lib/screen.h" #include #include -#include #include + class Progress; class TrustedDeviceDialog; + class ScreenDialog : public wxDialog { public: @@ -36,13 +38,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; } @@ -62,6 +66,7 @@ private: wxTextCtrl* _name; wxTextCtrl* _notes; wxStaticText* _recipient_thumbprint; + wxStaticText* _recipient_file; wxButton* _get_recipient_from_file; wxButton* _download_recipient; EditableList* _trusted_device_list;