Use a bold font for track labels.
[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::max;
28
29 TimelineLabelsView::TimelineLabelsView (Timeline& tl)
30         : TimelineView (tl)
31 {
32         wxString labels[] = {
33                 _("Video"),
34                 _("Audio"),
35                 _("Subtitles")
36         };
37
38         _width = 0;
39
40         wxClientDC dc (&_timeline);
41         for (int i = 0; i < 3; ++i) {
42                 wxSize size = dc.GetTextExtent (labels[i]);
43                 _width = max (_width, size.GetWidth());
44         }
45
46         _width += 16;
47 }
48
49 dcpomatic::Rect<int>
50 TimelineLabelsView::bbox () const
51 {
52         return dcpomatic::Rect<int> (0, 0, _width, _timeline.tracks() * _timeline.track_height());
53 }
54
55 void
56 TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> >)
57 {
58         int const h = _timeline.track_height ();
59         gc->SetFont (gc->CreateFont(wxNORMAL_FONT->Bold(), wxColour (0, 0, 0)));
60         gc->DrawText (_("Video"), 0, h / 2);
61         gc->DrawText (_("Subtitles"), 0, 3 * h / 2);
62         gc->DrawText (_("Audio"), 0, h + _timeline.tracks() * h / 2);
63 }