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