Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / wx / make_chain_dialog.h
1 /*
2     Copyright (C) 2014-2015 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 "table_dialog.h"
21 #include "wx_util.h"
22
23 class MakeChainDialog : public TableDialog
24 {
25 public:
26         MakeChainDialog (
27                 wxWindow* parent,
28                 std::string organisation,
29                 std::string organisational_unit_name,
30                 std::string root_common_name,
31                 std::string intermediate_common_name,
32                 std::string leaf_common_name
33                 );
34
35         std::string organisation () const {
36                 return wx_to_std (_organisation->GetValue ());
37         }
38
39         std::string organisational_unit () const {
40                 return wx_to_std (_organisational_unit->GetValue ());
41         }
42
43         std::string root_common_name () const {
44                 return "." + wx_to_std (_root_common_name->GetValue ());
45         }
46
47         std::string intermediate_common_name () const {
48                 return "." + wx_to_std (_intermediate_common_name->GetValue ());
49         }
50
51         std::string leaf_common_name () const {
52                 return "CS." + wx_to_std (_leaf_common_name->GetValue ());
53         }
54
55
56 private:
57         wxTextCtrl* _organisation;
58         wxTextCtrl* _organisational_unit;
59         wxTextCtrl* _root_common_name;
60         wxTextCtrl* _intermediate_common_name;
61         wxTextCtrl* _leaf_common_name;
62 };