Merge remote-tracking branch 'origin/main' into v2.17.x
[dcpomatic.git] / src / wx / kdm_timing_panel.h
1 /*
2     Copyright (C) 2015-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
22 #include "wx_util.h"
23 #include <dcp/utc_offset.h>
24 #include <dcp/warnings.h>
25 LIBDCP_DISABLE_WARNINGS
26 #include <wx/wx.h>
27 LIBDCP_ENABLE_WARNINGS
28 #include <boost/date_time/posix_time/posix_time.hpp>
29 #include <boost/signals2.hpp>
30
31
32 class Choice;
33 class TimePicker;
34 class wxDatePickerCtrl;
35
36
37 class KDMTimingPanel : public wxPanel
38 {
39 public:
40         explicit KDMTimingPanel (wxWindow* parent);
41
42         dcp::LocalTime from() const;
43         dcp::LocalTime until() const;
44
45         bool valid () const;
46
47         boost::signals2::signal<void ()> TimingChanged;
48
49 private:
50         void changed () const;
51         dcp::UTCOffset utc_offset() const;
52
53         static dcp::LocalTime local_time(wxDatePickerCtrl *, TimePicker *, dcp::UTCOffset offset);
54
55         wxDatePickerCtrl* _from_date;
56         wxDatePickerCtrl* _until_date;
57         TimePicker* _from_time;
58         TimePicker* _until_time;
59         Choice* _utc_offset;
60         wxStaticText* _warning;
61         std::vector<Offset> _offsets;
62 };