Fix padding around preview in macOS dark mode (#1897).
[dcpomatic.git] / src / wx / simple_video_view.cc
1 /*
2     Copyright (C) 2019 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 "simple_video_view.h"
22 #include "film_viewer.h"
23 #include "wx_util.h"
24 #include "closed_captions_dialog.h"
25 #include "lib/image.h"
26 #include "lib/dcpomatic_log.h"
27 #include "lib/butler.h"
28 #include <dcp/util.h>
29 #include <wx/wx.h>
30 #include <boost/bind/bind.hpp>
31
32 using std::max;
33 using std::string;
34 using boost::optional;
35 using std::shared_ptr;
36 #if BOOST_VERSION >= 106100
37 using namespace boost::placeholders;
38 #endif
39 using namespace dcpomatic;
40
41
42 SimpleVideoView::SimpleVideoView (FilmViewer* viewer, wxWindow* parent)
43         : VideoView (viewer)
44 {
45         _panel = new wxPanel (parent);
46
47 #ifndef __WXOSX__
48         _panel->SetDoubleBuffered (true);
49 #endif
50
51         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
52         _panel->SetBackgroundColour (*wxBLACK);
53
54         _panel->Bind (wxEVT_PAINT, boost::bind (&SimpleVideoView::paint, this));
55         _panel->Bind (wxEVT_SIZE, boost::bind(boost::ref(Sized)));
56
57         _timer.Bind (wxEVT_TIMER, boost::bind(&SimpleVideoView::timer, this));
58 }
59
60 void
61 SimpleVideoView::paint ()
62 {
63         _state_timer.set("paint-panel");
64         wxPaintDC dc (_panel);
65
66         dcp::Size const out_size = _viewer->out_size ();
67         wxSize const panel_size = _panel->GetSize ();
68
69         if (!out_size.width || !out_size.height || !_image || out_size != _image->size()) {
70                 dc.Clear ();
71         } else {
72
73                 wxImage frame (out_size.width, out_size.height, _image->data()[0], true);
74                 wxBitmap frame_bitmap (frame);
75                 dc.DrawBitmap (frame_bitmap, 0, max(0, (panel_size.GetHeight() - out_size.height) / 2));
76         }
77
78         auto appearance = wxSystemSettings::GetAppearance();
79         auto const pad_colour = (_viewer->pad_black() || appearance.IsDark()) ? wxColour(0, 0, 0) : wxColour(240, 240, 240);
80
81         if (out_size.width < panel_size.GetWidth()) {
82                 wxPen   p (pad_colour);
83                 wxBrush b (pad_colour);
84                 dc.SetPen (p);
85                 dc.SetBrush (b);
86                 dc.DrawRectangle (out_size.width, 0, panel_size.GetWidth() - out_size.width, panel_size.GetHeight());
87         }
88
89         if (out_size.height < panel_size.GetHeight()) {
90                 wxPen   p (pad_colour);
91                 wxBrush b (pad_colour);
92                 dc.SetPen (p);
93                 dc.SetBrush (b);
94                 int const gap = (panel_size.GetHeight() - out_size.height) / 2;
95                 dc.DrawRectangle (0, 0, panel_size.GetWidth(), gap);
96                 dc.DrawRectangle (0, gap + out_size.height + 1, panel_size.GetWidth(), gap + 1);
97         }
98
99         if (_viewer->outline_content()) {
100                 wxPen p (wxColour (255, 0, 0), 2);
101                 dc.SetPen (p);
102                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
103                 dc.DrawRectangle (_inter_position.x, _inter_position.y + (panel_size.GetHeight() - out_size.height) / 2, _inter_size.width, _inter_size.height);
104         }
105
106         optional<dcpomatic::Rect<double> > subs = _viewer->outline_subtitles();
107         if (subs) {
108                 wxPen p (wxColour(0, 255, 0), 2);
109                 dc.SetPen (p);
110                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
111                 dc.DrawRectangle (subs->x * out_size.width, subs->y * out_size.height, subs->width * out_size.width, subs->height * out_size.height);
112         }
113
114         _state_timer.unset();
115 }
116
117 void
118 SimpleVideoView::refresh_panel ()
119 {
120         _state_timer.set ("refresh-panel");
121         _panel->Refresh ();
122         _panel->Update ();
123         _state_timer.unset ();
124 }
125
126 void
127 SimpleVideoView::timer ()
128 {
129         if (!_viewer->playing()) {
130                 return;
131         }
132
133         display_next_frame (false);
134         DCPTime const next = position() + _viewer->one_video_frame();
135
136         if (next >= length()) {
137                 _viewer->finished ();
138                 return;
139         }
140
141         LOG_DEBUG_VIDEO_VIEW("%1 -> %2; delay %3", next.seconds(), _viewer->time().seconds(), max((next.seconds() - _viewer->time().seconds()) * 1000, 1.0));
142         _timer.Start (max(1, time_until_next_frame().get_value_or(0)), wxTIMER_ONE_SHOT);
143
144         if (_viewer->butler()) {
145                 _viewer->butler()->rethrow ();
146         }
147 }
148
149 void
150 SimpleVideoView::start ()
151 {
152         VideoView::start ();
153         timer ();
154 }
155
156 /** Try to get a frame from the butler and display it.
157  *  @param non_blocking true to return false quickly if no video is available quickly (i.e. we are waiting for the butler).
158  *  false to ask the butler to block until it has video (unless it is suspended).
159  *  @return true on success, false if we did nothing because it would have taken too long.
160  */
161 VideoView::NextFrameResult
162 SimpleVideoView::display_next_frame (bool non_blocking)
163 {
164         NextFrameResult const r = get_next_frame (non_blocking);
165         if (r != SUCCESS) {
166                 return r;
167         }
168
169         update ();
170
171         try {
172                 _viewer->butler()->rethrow ();
173         } catch (DecodeError& e) {
174                 error_dialog (get(), e.what());
175         }
176
177         return SUCCESS;
178 }
179
180 void
181 SimpleVideoView::update ()
182 {
183         if (!player_video().first) {
184                 set_image (shared_ptr<Image>());
185                 refresh_panel ();
186                 return;
187         }
188
189         if (_viewer->playing() && (_viewer->time() - player_video().second) > one_video_frame()) {
190                 /* Too late; just drop this frame before we try to get its image (which will be the time-consuming
191                    part if this frame is J2K).
192                 */
193                 add_dropped ();
194                 return;
195         }
196
197         /* In an ideal world, what we would do here is:
198          *
199          * 1. convert to XYZ exactly as we do in the DCP creation path.
200          * 2. convert back to RGB for the preview display, compensating
201          *    for the monitor etc. etc.
202          *
203          * but this is inefficient if the source is RGB.  Since we don't
204          * (currently) care too much about the precise accuracy of the preview's
205          * colour mapping (and we care more about its speed) we try to short-
206          * circuit this "ideal" situation in some cases.
207          *
208          * The content's specified colour conversion indicates the colourspace
209          * which the content is in (according to the user).
210          *
211          * PlayerVideo::image (bound to PlayerVideo::force) will take the source
212          * image and convert it (from whatever the user has said it is) to RGB.
213          */
214
215         _state_timer.set ("get image");
216
217         set_image (
218                 player_video().first->image(bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24), VIDEO_RANGE_FULL, false, true)
219                 );
220
221         _state_timer.set ("ImageChanged");
222         _viewer->image_changed (player_video().first);
223         _state_timer.unset ();
224
225         _inter_position = player_video().first->inter_position ();
226         _inter_size = player_video().first->inter_size ();
227
228         refresh_panel ();
229 }