X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fdownload_certificate_dialog.h;h=12873c9443a546bcc3963980501bf90ab883b2c6;hb=7d3b018675efdb8b1a4eeaf05c73f997977cb2e9;hp=dcb0a952ae1f014e63afad3d67d982b9e55493ad;hpb=a69d242f3f00207d6ea7320e6723775f4b0dbfb3;p=dcpomatic.git diff --git a/src/wx/download_certificate_dialog.h b/src/wx/download_certificate_dialog.h index dcb0a952a..12873c944 100644 --- a/src/wx/download_certificate_dialog.h +++ b/src/wx/download_certificate_dialog.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -18,8 +18,14 @@ */ + +#include +#include +LIBDCP_DISABLE_WARNINGS #include #include +LIBDCP_ENABLE_WARNINGS + class DownloadCertificatePanel; @@ -30,16 +36,24 @@ public: ~DownloadCertificateDialog (); dcp::Certificate certificate () const; + std::string url () const; void setup_sensitivity (); + wxNotebook* notebook () const { + return _notebook; + } + + wxStaticText* message () const { + return _message; + } + private: void download (); void page_changed (wxNotebookEvent &); wxNotebook* _notebook; std::vector _pages; - std::vector _setup; wxButton* _download; wxStaticText* _message; };