6665ef39878d8bdba0de7301629495f12ce9ab3e
[dcpomatic.git] / src / wx / screen_dialog.h
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "editable_list.h"
22 #include "lib/screen.h"
23 #include <dcp/certificate.h>
24 #include <wx/wx.h>
25 #include <boost/optional.hpp>
26
27 class Progress;
28 class TrustedDeviceDialog;
29
30 class ScreenDialog : public wxDialog
31 {
32 public:
33         ScreenDialog (
34                 wxWindow *,
35                 wxString,
36                 std::string name = "",
37                 std::string notes = "",
38                 boost::optional<dcp::Certificate> c = boost::optional<dcp::Certificate> (),
39                 std::vector<TrustedDevice> d = std::vector<TrustedDevice>()
40                 );
41
42         std::string name () const;
43         std::string notes () const;
44         boost::optional<dcp::Certificate> recipient () const;
45         std::vector<TrustedDevice> trusted_devices () {
46                 return _trusted_devices;
47         }
48
49 private:
50         void get_recipient_from_file ();
51         void load_recipient (boost::filesystem::path);
52         void download_recipient ();
53         void setup_sensitivity ();
54         void set_recipient (boost::optional<dcp::Certificate>);
55
56         void set_trusted_devices (std::vector<TrustedDevice> d) {
57                 _trusted_devices = d;
58         }
59
60         wxGridBagSizer* _sizer;
61         wxTextCtrl* _name;
62         wxTextCtrl* _notes;
63         wxStaticText* _recipient_thumbprint;
64         wxButton* _get_recipient_from_file;
65         wxButton* _download_recipient;
66         EditableList<TrustedDevice, TrustedDeviceDialog>* _trusted_device_list;
67
68         boost::optional<dcp::Certificate> _recipient;
69         std::vector<TrustedDevice> _trusted_devices;
70 };