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