Move _state_timer into VideoView.
[dcpomatic.git] / src / wx / timecode.h
1 /*
2     Copyright (C) 2013-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 #ifndef DCPOMATIC_WX_TIMECODE_H
22 #define DCPOMATIC_WX_TIMECODE_H
23
24 #include "wx_util.h"
25 #include "lib/types.h"
26 #include <wx/wx.h>
27 #include <boost/signals2.hpp>
28 #include <boost/lexical_cast.hpp>
29
30 class TimecodeBase : public wxPanel
31 {
32 public:
33         TimecodeBase (wxWindow *, bool set_button);
34
35         void clear ();
36
37         void set_editable (bool);
38         void set_focus ();
39
40         boost::signals2::signal<void ()> Changed;
41
42         static wxSize size (wxWindow* parent);
43
44 protected:
45         void changed ();
46         void set_clicked ();
47
48         wxSizer* _sizer;
49         wxPanel* _editable;
50         wxTextCtrl* _hours;
51         wxTextCtrl* _minutes;
52         wxTextCtrl* _seconds;
53         wxTextCtrl* _frames;
54         wxButton* _set_button;
55         wxStaticText* _fixed;
56 };
57
58 template <class T>
59 class Timecode : public TimecodeBase
60 {
61 public:
62         Timecode (wxWindow* parent, bool set_button = true)
63                 : TimecodeBase (parent, set_button)
64         {
65
66         }
67
68         void set (T t, float fps)
69         {
70                 int h;
71                 int m;
72                 int s;
73                 int f;
74                 t.split (fps, h, m, s, f);
75
76                 checked_set (_hours, boost::lexical_cast<std::string> (h));
77                 checked_set (_minutes, boost::lexical_cast<std::string> (m));
78                 checked_set (_seconds, boost::lexical_cast<std::string> (s));
79                 checked_set (_frames, boost::lexical_cast<std::string> (f));
80
81                 checked_set (_fixed, t.timecode (fps));
82         }
83
84         T get (float fps) const
85         {
86                 T t;
87                 std::string const h = wx_to_std (_hours->GetValue ());
88                 t += T::from_seconds (boost::lexical_cast<int> (h.empty() ? "0" : h) * 3600);
89                 std::string const m = wx_to_std (_minutes->GetValue());
90                 t += T::from_seconds (boost::lexical_cast<int> (m.empty() ? "0" : m) * 60);
91                 std::string const s = wx_to_std (_seconds->GetValue());
92                 t += T::from_seconds (boost::lexical_cast<int> (s.empty() ? "0" : s));
93                 std::string const f = wx_to_std (_frames->GetValue());
94                 t += T::from_seconds (boost::lexical_cast<double> (f.empty() ? "0" : f) / fps);
95
96                 return t;
97         }
98 };
99
100 #endif