Merge master.
[dcpomatic.git] / src / wx / screen_dialog.cc
1 /*
2     Copyright (C) 2012-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 <wx/filepicker.h>
21 #include <wx/validate.h>
22 #include <dcp/exceptions.h>
23 #include "lib/compose.hpp"
24 #include "lib/util.h"
25 #include "screen_dialog.h"
26 #include "wx_util.h"
27 #include "doremi_certificate_dialog.h"
28 #include "dolby_certificate_dialog.h"
29
30 using std::string;
31 using std::cout;
32 using boost::shared_ptr;
33
34 ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, shared_ptr<dcp::Certificate> certificate)
35         : TableDialog (parent, std_to_wx (title), 2, true)
36         , _certificate (certificate)
37 {
38         add ("Name", true);
39         _name = add (new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1)));
40
41         add ("Server manufacturer", true);
42         _manufacturer = add (new wxChoice (this, wxID_ANY));
43
44         add (_("Certificate"), true);
45         wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
46         _load_certificate = new wxButton (this, wxID_ANY, _("Load from file..."));
47         _download_certificate = new wxButton (this, wxID_ANY, _("Download"));
48         s->Add (_load_certificate, 1, wxEXPAND);
49         s->Add (_download_certificate, 1, wxEXPAND);
50         add (s);
51
52         add_spacer ();
53         _certificate_text = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxSize (320, 256), wxTE_MULTILINE | wxTE_READONLY);
54         if (certificate) {
55                 _certificate_text->SetValue (certificate->certificate ());
56         }
57         wxFont font = wxSystemSettings::GetFont (wxSYS_ANSI_FIXED_FONT);
58         font.SetPointSize (font.GetPointSize() / 2);
59         _certificate_text->SetFont (font);
60         add (_certificate_text);
61
62         _manufacturer->Append (_("Unknown"));
63         _manufacturer->Append (_("Doremi"));
64         _manufacturer->Append (_("Dolby"));
65         _manufacturer->Append (_("Other"));
66         _manufacturer->SetSelection (0);
67
68         _load_certificate->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::select_certificate, this));
69         _download_certificate->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::download_certificate, this));
70         _manufacturer->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&ScreenDialog::setup_sensitivity, this));
71
72         setup_sensitivity ();
73         layout ();
74 }
75
76 string
77 ScreenDialog::name () const
78 {
79         return wx_to_std (_name->GetValue());
80 }
81
82 shared_ptr<dcp::Certificate>
83 ScreenDialog::certificate () const
84 {
85         return _certificate;
86 }
87
88 void
89 ScreenDialog::load_certificate (boost::filesystem::path file)
90 {
91         try {
92                 _certificate.reset (new dcp::Certificate (file));
93                 _certificate_text->SetValue (_certificate->certificate ());
94         } catch (dcp::MiscError& e) {
95                 error_dialog (this, String::compose ("Could not read certificate file (%1)", e.what()));
96         }
97 }
98
99 void
100 ScreenDialog::select_certificate ()
101 {
102         wxFileDialog* d = new wxFileDialog (this, _("Select Certificate File"));
103         if (d->ShowModal () == wxID_OK) {
104                 load_certificate (boost::filesystem::path (wx_to_std (d->GetPath ())));
105         }
106         d->Destroy ();
107
108         setup_sensitivity ();
109 }
110
111 void
112 ScreenDialog::download_certificate ()
113 {
114         if (_manufacturer->GetStringSelection() == _("Doremi")) {
115                 DownloadCertificateDialog* d = new DoremiCertificateDialog (this, boost::bind (&ScreenDialog::load_certificate, this, _1));
116                 d->ShowModal ();
117                 d->Destroy ();
118         } else if (_manufacturer->GetStringSelection() == _("Dolby")) {
119                 DownloadCertificateDialog* d = new DolbyCertificateDialog (this, boost::bind (&ScreenDialog::load_certificate, this, _1));
120                 d->ShowModal ();
121                 d->Destroy ();
122         }
123
124         setup_sensitivity ();
125 }
126
127 void
128 ScreenDialog::setup_sensitivity ()
129 {
130         wxButton* ok = dynamic_cast<wxButton*> (FindWindowById (wxID_OK, this));
131         ok->Enable (_certificate.get ());
132
133         _download_certificate->Enable (
134                 _manufacturer->GetStringSelection() == _("Doremi") ||
135                 _manufacturer->GetStringSelection() == _("Dolby")
136                 );
137 }