More c++ tidying.
[dcpomatic.git] / src / wx / timecode.cc
1 /*
2     Copyright (C) 2013-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 "timecode.h"
22 #include "wx_util.h"
23 #include "dcpomatic_button.h"
24 #include "lib/util.h"
25 #include <iostream>
26
27 using std::string;
28 using std::cout;
29
30 TimecodeBase::TimecodeBase (wxWindow* parent, bool set_button)
31         : wxPanel (parent)
32         , _set_button (0)
33 {
34         auto const s = TimecodeBase::size (parent);
35
36         wxTextValidator validator (wxFILTER_INCLUDE_CHAR_LIST);
37         wxArrayString list;
38
39         wxString n (wxT ("0123456789"));
40         for (size_t i = 0; i < n.Length(); ++i) {
41                 list.Add (n[i]);
42         }
43
44         validator.SetIncludes (list);
45
46         _sizer = new wxBoxSizer (wxHORIZONTAL);
47
48         _editable = new wxPanel (this);
49         auto editable_sizer = new wxBoxSizer (wxHORIZONTAL);
50         _hours = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator);
51         _hours->SetMaxLength (2);
52         editable_sizer->Add (_hours);
53         add_label_to_sizer (editable_sizer, _editable, wxT(":"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
54         _minutes = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator);
55         _minutes->SetMaxLength (2);
56         editable_sizer->Add (_minutes);
57         add_label_to_sizer (editable_sizer, _editable, wxT (":"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
58         _seconds = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator);
59         _seconds->SetMaxLength (2);
60         editable_sizer->Add (_seconds);
61         add_label_to_sizer (editable_sizer, _editable, wxT (":"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
62         _frames = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator);
63         _frames->SetMaxLength (2);
64         editable_sizer->Add (_frames);
65
66         if (set_button) {
67                 _set_button = new Button (_editable, _("Set"), wxDefaultPosition, small_button_size(parent, _("Set")));
68                 editable_sizer->Add (_set_button, 0, wxLEFT | wxRIGHT, 8);
69         }
70         _editable->SetSizerAndFit (editable_sizer);
71         _sizer->Add (_editable);
72
73         _fixed = add_label_to_sizer (_sizer, this, wxT ("42"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
74
75         _hours->Bind      (wxEVT_TEXT,   boost::bind (&TimecodeBase::changed, this));
76         _minutes->Bind    (wxEVT_TEXT,   boost::bind (&TimecodeBase::changed, this));
77         _seconds->Bind    (wxEVT_TEXT,   boost::bind (&TimecodeBase::changed, this));
78         _frames->Bind     (wxEVT_TEXT,   boost::bind (&TimecodeBase::changed, this));
79         if (_set_button) {
80                 _set_button->Bind (wxEVT_BUTTON, boost::bind (&TimecodeBase::set_clicked, this));
81                 _set_button->Enable (false);
82         }
83
84         set_editable (true);
85
86         SetSizerAndFit (_sizer);
87 }
88
89 void
90 TimecodeBase::set_focus ()
91 {
92         _hours->SetFocus ();
93 }
94
95 void
96 TimecodeBase::clear ()
97 {
98         checked_set (_hours, wxT (""));
99         checked_set (_minutes, wxT (""));
100         checked_set (_seconds, wxT (""));
101         checked_set (_frames, wxT (""));
102         checked_set (_fixed, wxT (""));
103 }
104
105 void
106 TimecodeBase::changed ()
107 {
108         if (_set_button) {
109                 _set_button->Enable (true);
110         }
111 }
112
113 void
114 TimecodeBase::set_clicked ()
115 {
116         Changed ();
117         if (_set_button) {
118                 _set_button->Enable (false);
119         }
120 }
121
122 void
123 TimecodeBase::set_editable (bool e)
124 {
125         _editable->Show (e);
126         _fixed->Show (!e);
127         _sizer->Layout ();
128 }
129
130 wxSize
131 TimecodeBase::size (wxWindow* parent)
132 {
133         wxClientDC dc (parent);
134         auto size = dc.GetTextExtent(wxT("9999"));
135         size.SetHeight (-1);
136         return size;
137 }