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