Move reel markers to the top of the timeline (#846).
[dcpomatic.git] / src / wx / timeline_labels_view.cc
1 /*
2     Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20
21 #include "timeline_labels_view.h"
22 #include "timeline.h"
23 #include <wx/wx.h>
24 #include <wx/graphics.h>
25
26 using std::list;
27 using std::min;
28 using std::max;
29
30 TimelineLabelsView::TimelineLabelsView (Timeline& tl)
31         : TimelineView (tl)
32 {
33         wxString labels[] = {
34                 _("Video"),
35                 _("Audio"),
36                 _("Subtitles")
37         };
38
39         _width = 0;
40
41         wxClientDC dc (&_timeline);
42         for (int i = 0; i < 3; ++i) {
43                 wxSize size = dc.GetTextExtent (labels[i]);
44                 _width = max (_width, size.GetWidth());
45         }
46
47         _width += 16;
48 }
49
50 dcpomatic::Rect<int>
51 TimelineLabelsView::bbox () const
52 {
53         return dcpomatic::Rect<int> (0, 0, _width, _timeline.tracks() * _timeline.track_height());
54 }
55
56 void
57 TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> >)
58 {
59         int const h = _timeline.track_height ();
60         gc->SetFont (gc->CreateFont(wxNORMAL_FONT->Bold(), wxColour (0, 0, 0)));
61         gc->DrawText (_("Video"),     0, _timeline.tracks_position().y + h - 8);
62         gc->DrawText (_("Subtitles"), 0, _timeline.tracks_position().y + 5 * h / 2 - 8);
63         gc->DrawText (_("Audio"),     0, _timeline.tracks_position().y + (3 + max (_timeline.tracks(), 3)) * h / 2 - 8);
64 }