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