Cleanup of various dialogs by inherting TableDialog.
[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         : TableDialog (parent, _("Download certificate"), 2, true)
28         , _load (load)
29 {
30
31 }
32
33 void
34 DownloadCertificateDialog::add_common_widgets ()
35 {
36         add_spacer ();
37         _download = add (new wxButton (this, wxID_ANY, _("Download")));
38
39         add_spacer ();
40         _gauge = add (new wxGauge (this, wxID_ANY, 100));
41
42         add_spacer ();
43         _message = add (new wxStaticText (this, wxID_ANY, wxT ("")));
44         
45         _download->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&DownloadCertificateDialog::download, this));
46         _download->Enable (false);
47
48         layout ();
49 }