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