Merge remote-tracking branch 'origin/main' into v2.17.x
[dcpomatic.git] / src / wx / timecode.h
1 /*
2     Copyright (C) 2013-2021 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
22 #ifndef DCPOMATIC_WX_TIMECODE_H
23 #define DCPOMATIC_WX_TIMECODE_H
24
25
26 #include "wx_util.h"
27 #include "lib/dcpomatic_time.h"
28 #include <dcp/raw_convert.h>
29 #include <dcp/warnings.h>
30 LIBDCP_DISABLE_WARNINGS
31 #include <wx/wx.h>
32 LIBDCP_ENABLE_WARNINGS
33 #include <boost/signals2.hpp>
34
35
36 class TimecodeBase : public wxPanel
37 {
38 public:
39         TimecodeBase (wxWindow *, bool set_button);
40
41         void clear ();
42
43         void set_editable (bool);
44         void set_focus ();
45
46         boost::signals2::signal<void ()> Changed;
47
48         static wxSize size (wxWindow* parent);
49
50 protected:
51         void changed ();
52         void set_clicked ();
53         virtual bool valid() const = 0;
54
55         wxSizer* _sizer;
56         wxPanel* _editable;
57         wxTextCtrl* _hours;
58         wxTextCtrl* _minutes;
59         wxTextCtrl* _seconds;
60         wxTextCtrl* _frames;
61         wxButton* _set_button;
62         wxStaticText* _fixed;
63
64         bool _ignore_changed = false;
65 };
66
67
68 template <class T>
69 class Timecode : public TimecodeBase
70 {
71 public:
72         Timecode (wxWindow* parent, bool set_button = true)
73                 : TimecodeBase (parent, set_button)
74         {
75
76         }
77
78         void set (T t, float fps)
79         {
80                 auto const hmsf = t.split (fps);
81
82                 checked_set (_hours, dcp::raw_convert<std::string>(hmsf.h));
83                 checked_set (_minutes, dcp::raw_convert<std::string>(hmsf.m));
84                 checked_set (_seconds, dcp::raw_convert<std::string>(hmsf.s));
85                 checked_set (_frames, dcp::raw_convert<std::string>(hmsf.f));
86
87                 checked_set (_fixed, t.timecode (fps));
88         }
89
90         void set_hint (T t, float fps)
91         {
92                 auto hmsf = t.split (fps);
93
94                 _hours->SetHint (std_to_wx(dcp::raw_convert<std::string>(hmsf.h)));
95                 _minutes->SetHint (std_to_wx(dcp::raw_convert<std::string>(hmsf.m)));
96                 _seconds->SetHint (std_to_wx(dcp::raw_convert<std::string>(hmsf.s)));
97                 _frames->SetHint (std_to_wx(dcp::raw_convert<std::string>(hmsf.f)));
98         }
99
100         void set_maximum(dcpomatic::HMSF maximum)
101         {
102                 _maximum = std::move(maximum);
103         }
104
105         dcpomatic::HMSF get () const
106         {
107                 auto value_or_hint = [](wxTextCtrl const * t) {
108                         auto s = wx_to_std (t->GetValue().IsEmpty() ? t->GetHint() : t->GetValue());
109                         if (s.empty()) {
110                                 return 0;
111                         }
112                         return dcp::raw_convert<int>(s);
113                 };
114
115                 return { value_or_hint(_hours),
116                         value_or_hint(_minutes),
117                         value_or_hint(_seconds),
118                         value_or_hint(_frames) };
119         }
120
121         T get (float fps) const
122         {
123                 return T(get(), fps);
124         }
125
126 private:
127         bool valid() const override {
128                 return !_maximum || get() <= *_maximum;
129         }
130
131         boost::optional<dcpomatic::HMSF> _maximum;
132 };
133
134 #endif