/* Copyright (C) 2014-2021 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with DCP-o-matic. If not, see . */ #ifndef DCPOMATIC_DOWNLOAD_CERTIFICATE_PANEL_H #define DCPOMATIC_DOWNLOAD_CERTIFICATE_PANEL_H #include #include LIBDCP_DISABLE_WARNINGS #include LIBDCP_ENABLE_WARNINGS #include class DownloadCertificateDialog; class DownloadCertificatePanel : public wxPanel { public: DownloadCertificatePanel (DownloadCertificateDialog* dialog); virtual void do_download () = 0; virtual wxString name () const = 0; virtual bool ready_to_download () const; void download (); boost::optional load_certificate (boost::filesystem::path, std::string url); boost::optional load_certificate_from_chain (boost::filesystem::path, std::string url); boost::optional certificate () const; boost::optional url () const; protected: DownloadCertificateDialog* _dialog; wxFlexGridSizer* _table; wxTextCtrl* _serial; wxSizer* _overall_sizer; private: boost::optional _certificate; boost::optional _url; }; #endif