6f3c329b5388967171cf3a584b0a9fd0e5fe27e9
[dcpomatic.git] / src / wx / download_certificate_panel.h
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_DOWNLOAD_CERTIFICATE_PANEL_H
21 #define DCPOMATIC_DOWNLOAD_CERTIFICATE_PANEL_H
22
23 #include <dcp/certificate.h>
24 #include <wx/wx.h>
25 #include <boost/optional.hpp>
26
27 class DownloadCertificateDialog;
28
29 class DownloadCertificatePanel : public wxPanel
30 {
31 public:
32         DownloadCertificatePanel (wxWindow* parent, DownloadCertificateDialog* dialog);
33
34         /* Do any setup that may take a noticeable amount of time */
35         virtual void setup () {}
36         virtual bool ready_to_download () const = 0;
37         virtual void download (wxStaticText* message) = 0;
38
39         void load (boost::filesystem::path);
40         boost::optional<dcp::Certificate> certificate () const;
41
42 protected:
43         void layout ();
44
45         DownloadCertificateDialog* _dialog;
46         wxFlexGridSizer* _table;
47
48 private:
49         wxSizer* _overall_sizer;
50         boost::optional<dcp::Certificate> _certificate;
51 };
52
53 #endif