C++11 tidying.
[dcpomatic.git] / src / wx / name_format_editor.cc
1 /*
2     Copyright (C) 2016-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 "name_format_editor.h"
23 #include "wx_util.h"
24 #include "static_text.h"
25 #include "lib/util.h"
26
27
28 using std::string;
29
30
31 NameFormatEditor::NameFormatEditor (wxWindow* parent, dcp::NameFormat name, dcp::NameFormat::Map titles, dcp::NameFormat::Map examples, string suffix)
32         : _panel (new wxPanel(parent))
33         , _example (new StaticText(_panel, ""))
34         , _sizer (new wxBoxSizer(wxVERTICAL))
35         , _specification (new wxTextCtrl(_panel, wxID_ANY, ""))
36         , _name (name)
37         , _examples (examples)
38         , _suffix (suffix)
39 {
40         _sizer->Add (_specification, 0, wxEXPAND, DCPOMATIC_SIZER_Y_GAP);
41         if (!_examples.empty ()) {
42                 _sizer->Add (_example, 0, wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
43         }
44         _panel->SetSizer (_sizer);
45
46         for (auto const& i: titles) {
47                 auto t = new StaticText (_panel, std_to_wx (String::compose ("%%%1 %2", i.first, i.second)));
48                 _sizer->Add (t);
49                 auto font = t->GetFont();
50                 font.SetStyle (wxFONTSTYLE_ITALIC);
51                 font.SetPointSize (font.GetPointSize() - 1);
52                 t->SetFont (font);
53                 t->SetForegroundColour (wxColour (0, 0, 204));
54         }
55
56         _specification->SetValue (std_to_wx (_name.specification()));
57         _specification->Bind (wxEVT_TEXT, boost::bind(&NameFormatEditor::changed, this));
58
59         update_example ();
60 }
61
62
63 void
64 NameFormatEditor::changed ()
65 {
66         update_example ();
67         Changed ();
68 }
69
70
71 void
72 NameFormatEditor::update_example ()
73 {
74         if (_examples.empty ()) {
75                 return;
76         }
77
78         _name.set_specification (careful_string_filter(wx_to_std(_specification->GetValue())));
79
80         auto example = wxString::Format (_("e.g. %s"), std_to_wx (_name.get (_examples, _suffix)));
81         wxString wrapped;
82         for (size_t i = 0; i < example.Length(); ++i) {
83                 if (i > 0 && (i % 40) == 0) {
84                         wrapped += "\n";
85                 }
86                 wrapped += example[i];
87         }
88
89         _example->SetLabel (wrapped);
90 }