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