Start of Dolby certificate download.
[dcpomatic.git] / src / wx / download_certificate_dialog.cc
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 #include <boost/bind.hpp>
21 #include "download_certificate_dialog.h"
22 #include "wx_util.h"
23
24 using boost::function;
25
26 DownloadCertificateDialog::DownloadCertificateDialog (wxWindow* parent, function<void (boost::filesystem::path)> load)
27         : wxDialog (parent, wxID_ANY, _("Download certificate"))
28         , _load (load)
29 {
30         _overall_sizer = new wxBoxSizer (wxVERTICAL);
31 }
32
33 void
34 DownloadCertificateDialog::add_common_widgets ()
35 {
36         _download = new wxButton (this, wxID_ANY, _("Download"));
37         _overall_sizer->Add (_download, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
38         _gauge = new wxGauge (this, wxID_ANY, 100);
39         _overall_sizer->Add (_gauge, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
40         _message = new wxStaticText (this, wxID_ANY, wxT (""));
41         _overall_sizer->Add (_message, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_X_GAP);
42         
43         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
44         if (buttons) {
45                 _overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
46         }
47
48         SetSizer (_overall_sizer);
49         _overall_sizer->Layout ();
50         _overall_sizer->SetSizeHints (this);
51
52         _download->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&DownloadCertificateDialog::download, this));
53         _download->Enable (false);
54 }