Allow editing of a screen's cinema / adding a new screen when
[dcpomatic.git] / src / wx / download_certificate_dialog.h
index 0df504975e6f904d0193cced64644203c703dbea..a5085e174fe2035945958b736719ba4004425dca 100644 (file)
 
 */
 
+#include "lib/warnings.h"
+#include <dcp/certificate.h>
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/wx.h>
 #include <wx/notebook.h>
+DCPOMATIC_ENABLE_WARNINGS
 
 class DownloadCertificatePanel;
 
@@ -30,9 +34,18 @@ 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 &);