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