std::shared_ptr
[dcpomatic.git] / src / wx / recipient_dialog.h
1 /*
2     Copyright (C) 2012-2020 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 "email_dialog.h"
23 #include "wx_util.h"
24 #include "lib/screen.h"
25 #include <dcp/certificate.h>
26 #include <wx/wx.h>
27 #include <boost/optional.hpp>
28
29 class Progress;
30 class TrustedDeviceDialog;
31
32 class RecipientDialog : public wxDialog
33 {
34 public:
35         RecipientDialog (
36                 wxWindow *,
37                 wxString,
38                 std::string name = "",
39                 std::string notes = "",
40                 std::list<std::string> emails = std::list<std::string>(),
41                 int utc_offset_hour = 0,
42                 int utc_offset_minute = 0,
43                 boost::optional<dcp::Certificate> c = boost::optional<dcp::Certificate>()
44                 );
45
46         std::string name () const;
47         std::string notes () const;
48         boost::optional<dcp::Certificate> recipient () const;
49         std::list<std::string> emails () const;
50         int utc_offset_hour () const;
51         int utc_offset_minute () const;
52
53 private:
54         void get_recipient_from_file ();
55         void load_recipient (boost::filesystem::path);
56         void setup_sensitivity ();
57         void set_recipient (boost::optional<dcp::Certificate>);
58         std::vector<std::string> get_emails () const;
59         void set_emails (std::vector<std::string>);
60
61         wxGridBagSizer* _sizer;
62         wxTextCtrl* _name;
63         wxTextCtrl* _notes;
64         wxStaticText* _recipient_thumbprint;
65         wxButton* _get_recipient_from_file;
66         EditableList<std::string, EmailDialog>* _email_list;
67         std::vector<std::string> _emails;
68         wxChoice* _utc_offset;
69         std::vector<Offset> _offsets;
70
71         boost::optional<dcp::Certificate> _recipient;
72 };