Use libdcp's warnings.h
[dcpomatic.git] / src / wx / download_certificate_dialog.h
index 0df504975e6f904d0193cced64644203c703dbea..12873c9443a546bcc3963980501bf90ab883b2c6 100644 (file)
 
 */
 
+
+#include <dcp/certificate.h>
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
 #include <wx/notebook.h>
+LIBDCP_ENABLE_WARNINGS
+
 
 class DownloadCertificatePanel;
 
@@ -30,9 +36,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 &);