Move _state_timer into VideoView.
[dcpomatic.git] / src / wx / make_chain_dialog.cc
1 /*
2     Copyright (C) 2014-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 "make_chain_dialog.h"
22 #include "static_text.h"
23 #include <boost/algorithm/string.hpp>
24
25 using std::string;
26
27 MakeChainDialog::MakeChainDialog (
28         wxWindow* parent,
29         string organisation,
30         string organisational_unit_name,
31         string root_common_name,
32         string intermediate_common_name,
33         string leaf_common_name
34         )
35         : TableDialog (parent, _("Make certificate chain"), 2, 1, true)
36 {
37         wxTextValidator validator (wxFILTER_EXCLUDE_CHAR_LIST);
38         validator.SetCharExcludes (wxT ("/"));
39
40         if (boost::algorithm::starts_with (root_common_name, ".")) {
41                 root_common_name = root_common_name.substr (1);
42         }
43
44         if (boost::algorithm::starts_with (intermediate_common_name, ".")) {
45                 intermediate_common_name = intermediate_common_name.substr (1);
46         }
47
48         if (boost::algorithm::starts_with (leaf_common_name, "CS.")) {
49                 leaf_common_name = leaf_common_name.substr (3);
50         }
51
52         add (_("Organisation"), true);
53         add (_organisation = new wxTextCtrl (this, wxID_ANY, std_to_wx (organisation), wxDefaultPosition, wxSize (480, -1), 0, validator));
54         add (_("Organisational unit"), true);
55         add (_organisational_unit = new wxTextCtrl (this, wxID_ANY, std_to_wx (organisational_unit_name), wxDefaultPosition, wxDefaultSize, 0, validator));
56
57         add (_("Root common name"), true);
58
59         {
60                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
61                 s->Add (new StaticText (this, wxT (".")), 0, wxALIGN_CENTER_VERTICAL);
62                 s->Add (_root_common_name = new wxTextCtrl (
63                                 this, wxID_ANY, std_to_wx (root_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL
64                         );
65                 add (s);
66         }
67
68         add (_("Intermediate common name"), true);
69
70         {
71                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
72                 s->Add (new StaticText (this, wxT (".")), 0, wxALIGN_CENTER_VERTICAL);
73                 s->Add (_intermediate_common_name = new wxTextCtrl (
74                                 this, wxID_ANY, std_to_wx (intermediate_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL
75                         );
76                 add (s);
77         }
78
79         add (_("Leaf common name"), true);
80
81         {
82                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
83                 s->Add (new StaticText (this, wxT ("CS.")), 0, wxALIGN_CENTER_VERTICAL);
84                 s->Add (_leaf_common_name = new wxTextCtrl (
85                                 this, wxID_ANY, std_to_wx (leaf_common_name), wxDefaultPosition, wxDefaultSize, 0, validator), 1, wxALIGN_CENTER_VERTICAL
86                         );
87                 add (s);
88         }
89
90         layout ();
91 }