Add free-text notes field to cinemas and screens.
[dcpomatic.git] / src / wx / screen_dialog.cc
1 /*
2     Copyright (C) 2012-2016 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 "screen_dialog.h"
21 #include "wx_util.h"
22 #include "file_dialog_wrapper.h"
23 #include "download_certificate_dialog.h"
24 #include "lib/compose.hpp"
25 #include "lib/util.h"
26 #include <dcp/exceptions.h>
27 #include <wx/filepicker.h>
28 #include <wx/validate.h>
29 #include <iostream>
30
31 using std::string;
32 using std::cout;
33 using std::vector;
34 using boost::optional;
35 using boost::bind;
36
37 static string
38 column (dcp::Certificate c)
39 {
40         return c.thumbprint ();
41 }
42
43 class CertificateFileDialogWrapper : public FileDialogWrapper<dcp::Certificate>
44 {
45 public:
46         CertificateFileDialogWrapper (wxWindow* parent)
47                 : FileDialogWrapper<dcp::Certificate> (parent, _("Select certificate file"))
48         {
49
50         }
51 };
52
53 ScreenDialog::ScreenDialog (
54         wxWindow* parent, wxString title, string name, string notes, optional<dcp::Certificate> recipient, vector<dcp::Certificate> trusted_devices
55         )
56         : wxDialog (parent, wxID_ANY, title)
57         , _recipient (recipient)
58         , _trusted_devices (trusted_devices)
59 {
60         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
61         SetSizer (overall_sizer);
62
63         _sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
64         int r = 0;
65
66         add_label_to_sizer (_sizer, this, _("Name"), true, wxGBPosition (r, 0));
67         _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1));
68         _sizer->Add (_name, wxGBPosition (r, 1));
69         ++r;
70
71         add_label_to_sizer (_sizer, this, _("Notes"), true, wxGBPosition (r, 0));
72         _notes = new wxTextCtrl (this, wxID_ANY, std_to_wx (notes), wxDefaultPosition, wxSize (320, -1));
73         _sizer->Add (_notes, wxGBPosition (r, 1));
74         ++r;
75
76         wxClientDC dc (this);
77         wxFont font = _name->GetFont ();
78         font.SetFamily (wxFONTFAMILY_TELETYPE);
79         dc.SetFont (font);
80         wxSize size = dc.GetTextExtent (wxT ("1234567890123456789012345678"));
81         size.SetHeight (-1);
82
83         add_label_to_sizer (_sizer, this, _("Recipient certificate"), true, wxGBPosition (r, 0));
84         wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
85         _recipient_thumbprint = new wxStaticText (this, wxID_ANY, wxT (""), wxDefaultPosition, size);
86         _recipient_thumbprint->SetFont (font);
87         set_recipient (recipient);
88         _get_recipient_from_file = new wxButton (this, wxID_ANY, _("Get from file..."));
89         _download_recipient = new wxButton (this, wxID_ANY, _("Download..."));
90         s->Add (_recipient_thumbprint, 1, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
91         s->Add (_get_recipient_from_file, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_X_GAP);
92         s->Add (_download_recipient, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_X_GAP);
93         _sizer->Add (s, wxGBPosition (r, 1));
94         ++r;
95
96         add_label_to_sizer (_sizer, this, _("Other trusted devices"), true, wxGBPosition (r, 0));
97         ++r;
98
99         vector<string> columns;
100         columns.push_back (wx_to_std (_("Thumbprint")));
101         _trusted_device_list = new EditableList<dcp::Certificate, CertificateFileDialogWrapper> (
102                 this,
103                 columns,
104                 bind (&ScreenDialog::trusted_devices, this),
105                 bind (&ScreenDialog::set_trusted_devices, this, _1),
106                 bind (&always_valid),
107                 bind (&column, _1),
108                 false
109                 );
110
111         _sizer->Add (_trusted_device_list, wxGBPosition (r, 0), wxGBSpan (1, 3), wxEXPAND);
112         ++r;
113
114         _name->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ScreenDialog::setup_sensitivity, this));
115         _get_recipient_from_file->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::get_recipient_from_file, this));
116         _download_recipient->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&ScreenDialog::download_recipient, this));
117
118         overall_sizer->Add (_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
119
120         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
121         if (buttons) {
122                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
123         }
124
125         overall_sizer->Layout ();
126         overall_sizer->SetSizeHints (this);
127
128         setup_sensitivity ();
129 }
130
131 string
132 ScreenDialog::name () const
133 {
134         return wx_to_std (_name->GetValue());
135 }
136
137 string
138 ScreenDialog::notes () const
139 {
140         return wx_to_std (_notes->GetValue());
141 }
142
143 optional<dcp::Certificate>
144 ScreenDialog::recipient () const
145 {
146         return _recipient;
147 }
148
149 void
150 ScreenDialog::load_recipient (boost::filesystem::path file)
151 {
152         try {
153                 set_recipient (dcp::Certificate (dcp::file_to_string (file)));
154         } catch (dcp::MiscError& e) {
155                 error_dialog (this, wxString::Format (_("Could not read certificate file (%s)"), std_to_wx(e.what()).data()));
156         }
157 }
158
159 void
160 ScreenDialog::get_recipient_from_file ()
161 {
162         wxFileDialog* d = new wxFileDialog (this, _("Select Certificate File"));
163         if (d->ShowModal () == wxID_OK) {
164                 load_recipient (boost::filesystem::path (wx_to_std (d->GetPath ())));
165         }
166         d->Destroy ();
167
168         setup_sensitivity ();
169 }
170
171 void
172 ScreenDialog::download_recipient ()
173 {
174         DownloadCertificateDialog* d = new DownloadCertificateDialog (this);
175         if (d->ShowModal() == wxID_OK) {
176                 set_recipient (d->certificate ());
177         }
178         d->Destroy ();
179         setup_sensitivity ();
180 }
181
182 void
183 ScreenDialog::setup_sensitivity ()
184 {
185         wxButton* ok = dynamic_cast<wxButton*> (FindWindowById (wxID_OK, this));
186         if (ok) {
187                 ok->Enable (static_cast<bool>(_recipient) && !_name->GetValue().IsEmpty());
188         }
189 }
190
191 void
192 ScreenDialog::set_recipient (optional<dcp::Certificate> r)
193 {
194         _recipient = r;
195
196         if (_recipient) {
197                 _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ()));
198                 _sizer->Layout ();
199         }
200 }