Fix a few warnings from Coverity; nothing dangerous, I don't think.
[dcpomatic.git] / src / wx / download_certificate_dialog.cc
1 /*
2     Copyright (C) 2014-2015 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         , _message (0)
30         , _download (0)
31 {
32
33 }
34
35 void
36 DownloadCertificateDialog::add_common_widgets ()
37 {
38         add_spacer ();
39         _download = add (new wxButton (this, wxID_ANY, _("Download")));
40
41         add_spacer ();
42         _message = add (new wxStaticText (this, wxID_ANY, wxT ("")));
43
44         wxFont font = _message->GetFont();
45         font.SetStyle (wxFONTSTYLE_ITALIC);
46         font.SetPointSize (font.GetPointSize() - 1);
47         _message->SetFont (font);
48         
49         _download->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&DownloadCertificateDialog::download, this));
50         _download->Enable (false);
51
52         layout ();
53 }