Fix crash on cancelling the download certificate dialogue.
[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 "doremi_certificate_panel.h"
21 #include "dolby_certificate_panel.h"
22 #include "download_certificate_dialog.h"
23 #include "wx_util.h"
24
25 using boost::optional;
26
27 DownloadCertificateDialog::DownloadCertificateDialog (wxWindow* parent)
28         : wxDialog (parent, wxID_ANY, _("Download certificate"))
29 {
30         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
31
32         _notebook = new wxNotebook (this, wxID_ANY);
33         sizer->Add (_notebook, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
34
35         _pages.push_back (new DoremiCertificatePanel (_notebook, this));
36         _setup.push_back (false);
37         _notebook->AddPage (_pages.back(), _("Doremi"), true);
38         _pages.push_back (new DolbyCertificatePanel (_notebook, this));
39         _setup.push_back (false);
40         _notebook->AddPage (_pages.back(), _("Dolby"), false);
41
42         _download = new wxButton (this, wxID_ANY, _("Download"));
43         sizer->Add (_download, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
44
45         _message = new wxStaticText (this, wxID_ANY, wxT (""));
46         sizer->Add (_message, 0, wxALL, DCPOMATIC_SIZER_GAP);
47         wxFont font = _message->GetFont();
48         font.SetStyle (wxFONTSTYLE_ITALIC);
49         font.SetPointSize (font.GetPointSize() - 1);
50         _message->SetFont (font);
51
52         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
53         if (buttons) {
54                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
55         }
56
57         SetSizerAndFit (sizer);
58
59         _notebook->Bind (wxEVT_NOTEBOOK_PAGE_CHANGED, &DownloadCertificateDialog::page_changed, this);
60         _download->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&DownloadCertificateDialog::download, this));
61         _download->Enable (false);
62
63         wxNotebookEvent ev;
64         page_changed (ev);
65 }
66
67 DownloadCertificateDialog::~DownloadCertificateDialog ()
68 {
69         _notebook->Unbind (wxEVT_NOTEBOOK_PAGE_CHANGED, &DownloadCertificateDialog::page_changed, this);
70 }
71
72 void
73 DownloadCertificateDialog::download ()
74 {
75         _pages[_notebook->GetSelection()]->download (_message);
76 }
77
78 dcp::Certificate
79 DownloadCertificateDialog::certificate () const
80 {
81         optional<dcp::Certificate> c = _pages[_notebook->GetSelection()]->certificate ();
82         DCPOMATIC_ASSERT (c);
83         return c.get ();
84 }
85
86 void
87 DownloadCertificateDialog::setup_sensitivity ()
88 {
89         DownloadCertificatePanel* p = _pages[_notebook->GetSelection()];
90         _download->Enable (p->ready_to_download ());
91         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
92         if (ok) {
93                 ok->Enable (static_cast<bool>(p->certificate ()));
94         }
95
96 }
97
98 void
99 DownloadCertificateDialog::page_changed (wxNotebookEvent &)
100 {
101         int const n = _notebook->GetSelection();
102         if (!_setup[n]) {
103                 _pages[n]->setup ();
104                 _setup[n] = true;
105         }
106
107         setup_sensitivity ();
108 }