Handle multiple audio streams in a single piece of content
[dcpomatic.git] / src / wx / download_certificate_dialog.h
index 11f1afe424a55591f67699b7b1e3226f1b870632..40e11de45619bbaec1b8b960c77316a50fd1688d 100644 (file)
 #include <wx/wx.h>
 #include <boost/function.hpp>
 #include <boost/filesystem.hpp>
+#include "table_dialog.h"
 
-class DownloadCertificateDialog : public wxDialog
+class DownloadCertificateDialog : public TableDialog
 {
 public:
        DownloadCertificateDialog (wxWindow *, boost::function<void (boost::filesystem::path)>);
-       virtual void setup () {}
 
 protected:
        void add_common_widgets ();
+       void downloaded (bool done);
        
        boost::function<void (boost::filesystem::path)> _load;
-       wxSizer* _overall_sizer;
-       wxGauge* _gauge;
        wxStaticText* _message;
        wxButton* _download;