Hide warnings triggered by Ubuntu 20.04's gcc.
[dcpomatic.git] / src / wx / kdm_timing_panel.cc
1 /*
2     Copyright (C) 2015-2020 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 "kdm_timing_panel.h"
22 #include "wx_util.h"
23 #include "time_picker.h"
24 #include "static_text.h"
25 #include "lib/warnings.h"
26 DCPOMATIC_DISABLE_WARNINGS
27 #include <wx/datectrl.h>
28 #include <wx/dateevt.h>
29 DCPOMATIC_ENABLE_WARNINGS
30
31 using std::cout;
32 using boost::bind;
33
34 KDMTimingPanel::KDMTimingPanel (wxWindow* parent)
35         : wxPanel (parent, wxID_ANY)
36 {
37         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
38
39 #ifdef __WXGTK3__
40         /* wxDatePickerCtrl is too small with the GTK3 backend so we need to make it bigger with some fudge factors */
41         wxClientDC dc (parent);
42         wxSize size = dc.GetTextExtent (wxT("99/99/9999"));
43         size.SetWidth (size.GetWidth() * 1.75);
44         size.SetHeight (-1);
45 #else
46         wxSize size = wxDefaultSize;
47 #endif
48
49         wxSizer* table = new wxBoxSizer (wxHORIZONTAL);
50         add_label_to_sizer (table, this, _("From"), true);
51         wxDateTime from;
52         from.SetToCurrent ();
53         _from_date = new wxDatePickerCtrl (this, wxID_ANY, from, wxDefaultPosition, size);
54         table->Add (_from_date, 0, wxALIGN_CENTER_VERTICAL);
55
56 #ifdef __WXGTK3__
57         _from_time = new TimePickerText (this, from);
58 #else
59         _from_time = new TimePickerSpin (this, from);
60 #endif
61
62 #ifdef DCPOMATIC_OSX
63         /* Hack to tweak alignment, which I can't get right by "proper" means for some reason */
64         table->Add (_from_time, 0, wxALIGN_CENTER_VERTICAL | wxTOP, 4);
65 #else
66         table->Add (_from_time, 0, wxALIGN_CENTER_VERTICAL);
67 #endif
68
69         add_label_to_sizer (table, this, _("until"), true);
70         wxDateTime to = from;
71         /* 1 week from now */
72         to.Add (wxDateSpan (0, 0, 1, 0));
73         _until_date = new wxDatePickerCtrl (this, wxID_ANY, to, wxDefaultPosition, size);
74         table->Add (_until_date, 0, wxALIGN_CENTER_VERTICAL);
75
76 #ifdef __WXGTK3__
77         _until_time = new TimePickerText (this, to);
78 #else
79         _until_time = new TimePickerSpin (this, to);
80 #endif
81
82 #ifdef DCPOMATIC_OSX
83         table->Add (_until_time, 0, wxALIGN_CENTER_VERTICAL | wxTOP, 4);
84 #else
85         table->Add (_until_time, 0, wxALIGN_CENTER_VERTICAL);
86 #endif
87
88         overall_sizer->Add (table);
89
90         _warning = new StaticText (this, wxT(""));
91         overall_sizer->Add (_warning, 0, wxTOP, DCPOMATIC_SIZER_GAP);
92         wxFont font = _warning->GetFont();
93         font.SetStyle(wxFONTSTYLE_ITALIC);
94         font.SetPointSize(font.GetPointSize() - 1);
95         _warning->SetForegroundColour (wxColour (255, 0, 0));
96         _warning->SetFont(font);
97
98         /* I said I've been to the year 3000.  Not much has changed but they live underwater.  And your In-in-in-interop DCP
99            is pretty fine.
100          */
101         _from_date->SetRange(wxDateTime(1, wxDateTime::Jan, 1900, 0, 0, 0, 0), wxDateTime(31, wxDateTime::Dec, 3000, 0, 0, 0, 0));
102         _until_date->SetRange(wxDateTime(1, wxDateTime::Jan, 1900, 0, 0, 0, 0), wxDateTime(31, wxDateTime::Dec, 3000, 0, 0, 0, 0));
103
104         _from_date->Bind (wxEVT_DATE_CHANGED, bind (&KDMTimingPanel::changed, this));
105         _until_date->Bind (wxEVT_DATE_CHANGED, bind (&KDMTimingPanel::changed, this));
106         _from_time->Changed.connect (bind (&KDMTimingPanel::changed, this));
107         _until_time->Changed.connect (bind (&KDMTimingPanel::changed, this));
108
109         SetSizer (overall_sizer);
110 }
111
112 boost::posix_time::ptime
113 KDMTimingPanel::from () const
114 {
115         return posix_time (_from_date, _from_time);
116 }
117
118 boost::posix_time::ptime
119 KDMTimingPanel::posix_time (wxDatePickerCtrl* date_picker, TimePicker* time_picker)
120 {
121         wxDateTime const date = date_picker->GetValue ();
122         return boost::posix_time::ptime (
123                 boost::gregorian::date (date.GetYear(), date.GetMonth() + 1, date.GetDay()),
124                 boost::posix_time::time_duration (time_picker->hours(), time_picker->minutes(), 0)
125                 );
126 }
127
128 boost::posix_time::ptime
129 KDMTimingPanel::until () const
130 {
131         return posix_time (_until_date, _until_time);
132 }
133
134 bool
135 KDMTimingPanel::valid () const
136 {
137         return until() > from();
138 }
139
140 void
141 KDMTimingPanel::changed () const
142 {
143         if (valid ()) {
144                 _warning->SetLabel (wxT (""));
145         } else {
146                 _warning->SetLabel (_("The 'until' time must be after the 'from' time."));
147         }
148
149         TimingChanged ();
150 }