Work around strange build error on Ubuntu 18.04
[dcpomatic.git] / src / wx / timeline_reels_view.cc
1 /*
2     Copyright (C) 2015-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 #include "timeline.h"
23 #include "timeline_reels_view.h"
24 #include <dcp/warnings.h>
25 LIBDCP_DISABLE_WARNINGS
26 #include <wx/graphics.h>
27 #include <wx/wx.h>
28 LIBDCP_ENABLE_WARNINGS
29
30
31 using std::min;
32 using std::list;
33 using namespace dcpomatic;
34
35
36 TimelineReelsView::TimelineReelsView (Timeline& tl, int y)
37         : TimelineView (tl)
38         , _y (y)
39 {
40
41 }
42
43
44 dcpomatic::Rect<int>
45 TimelineReelsView::bbox () const
46 {
47         return dcpomatic::Rect<int> (0, _y - 4, _timeline.width(), 24);
48 }
49
50
51 void
52 TimelineReelsView::set_y (int y)
53 {
54         _y = y;
55         force_redraw ();
56 }
57
58
59 void
60 TimelineReelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int>>)
61 {
62         if (!_timeline.pixels_per_second()) {
63                 return;
64         }
65
66         double const pps = _timeline.pixels_per_second().get ();
67
68         gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 255), 1, wxPENSTYLE_SOLID));
69
70         auto path = gc->CreatePath ();
71         path.MoveToPoint (time_x (DCPTime (0)), _y);
72         path.AddLineToPoint (time_x (_timeline.film()->length()), _y);
73         gc->StrokePath (path);
74
75         gc->SetFont (gc->CreateFont (*wxNORMAL_FONT, wxColour (0, 0, 255)));
76
77         int reel = 1;
78         for (auto i: _timeline.film()->reels()) {
79                 int const size = min (8.0, i.duration().seconds() * pps / 2);
80
81                 auto path = gc->CreatePath ();
82                 path.MoveToPoint (time_x (i.from) + size, _y + size / 2);
83                 path.AddLineToPoint (time_x (i.from), _y);
84                 path.AddLineToPoint (time_x (i.from) + size, _y - size / 2);
85                 gc->StrokePath (path);
86
87                 path = gc->CreatePath ();
88                 path.MoveToPoint (time_x (i.to) - size, _y + size / 2);
89                 path.AddLineToPoint (time_x (i.to), _y);
90                 path.AddLineToPoint (time_x (i.to) - size, _y - size / 2);
91                 gc->StrokePath (path);
92
93                 auto str = wxString::Format (_("Reel %d"), reel++);
94                 wxDouble str_width;
95                 wxDouble str_height;
96                 wxDouble str_descent;
97                 wxDouble str_leading;
98                 gc->GetTextExtent (str, &str_width, &str_height, &str_descent, &str_leading);
99
100                 int const available_width = time_x(DCPTime(i.to.get())) - time_x(DCPTime(i.from.get()));
101
102                 if (available_width > str_width) {
103                         gc->DrawText (str, time_x(DCPTime(i.from.get())) + (available_width - str_width) / 2, _y + 4);
104                 }
105         }
106 }