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