C++11 tidying.
[dcpomatic.git] / src / wx / send_i18n_dialog.cc
1 /*
2     Copyright (C) 2018-2021 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 "i18n_hook.h"
23 #include "send_i18n_dialog.h"
24 #include "wx_util.h"
25 #include <wx/listctrl.h>
26
27
28 using std::string;
29 using std::map;
30
31
32 SendI18NDialog::SendI18NDialog (wxWindow* parent)
33         : wxDialog (parent, wxID_ANY, _("Send translations"))
34 {
35         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
36
37         auto table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
38         table->AddGrowableCol (1, 1);
39
40         add_label_to_sizer (table, this, _("Your name"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL);
41         _name = new wxTextCtrl (this, wxID_ANY);
42         table->Add (_name, 0, wxEXPAND);
43
44         add_label_to_sizer (table, this, _("Your email"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL);
45         _email = new wxTextCtrl (this, wxID_ANY);
46         table->Add (_email, 0, wxEXPAND);
47
48         add_label_to_sizer (table, this, _("Language"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL);
49         _language = new wxTextCtrl (this, wxID_ANY);
50         table->Add (_language, 0, wxEXPAND);
51
52         auto list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize(800, -1), wxLC_REPORT | wxLC_NO_HEADER);
53         list->AppendColumn(wxT(""), wxLIST_FORMAT_LEFT, 400);
54         list->AppendColumn(wxT(""), wxLIST_FORMAT_LEFT, 400);
55
56         auto translations = I18NHook::translations ();
57         int N = 0;
58         for (auto const& i: translations) {
59                 wxListItem it;
60                 it.SetId(N);
61                 it.SetColumn(0);
62                 it.SetText(std_to_wx(i.first));
63                 list->InsertItem(it);
64                 it.SetColumn(1);
65                 it.SetText(std_to_wx(i.second));
66                 list->SetItem(it);
67                 ++N;
68         }
69
70         overall_sizer->Add (table, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
71         overall_sizer->Add (list, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
72
73         auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
74         if (buttons) {
75                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
76         }
77
78         SetSizerAndFit (overall_sizer);
79 }