Work around strange build error on Ubuntu 18.04
[dcpomatic.git] / src / wx / timeline_labels_view.cc
1 /*
2     Copyright (C) 2016-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_labels_view.h"
24 #include <dcp/warnings.h>
25 LIBDCP_DISABLE_WARNINGS
26 #include <wx/graphics.h>
27 #include <wx/wx.h>
28 LIBDCP_ENABLE_WARNINGS
29
30
31 using std::list;
32 using std::max;
33 using std::min;
34
35
36 TimelineLabelsView::TimelineLabelsView (Timeline& tl)
37         : TimelineView (tl)
38 {
39         wxString labels[] = {
40                 _("Video"),
41                 _("Audio"),
42                 _("Subtitles/captions"),
43                 _("Atmos")
44         };
45
46         wxClientDC dc (&_timeline);
47         for (int i = 0; i < 3; ++i) {
48                 auto size = dc.GetTextExtent (labels[i]);
49                 _width = max (_width, size.GetWidth());
50         }
51
52         _width += 24;
53 }
54
55
56 dcpomatic::Rect<int>
57 TimelineLabelsView::bbox () const
58 {
59         return dcpomatic::Rect<int> (0, 0, _width, _timeline.tracks() * _timeline.pixels_per_track());
60 }
61
62
63 void
64 TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int>>)
65 {
66         int const h = _timeline.pixels_per_track ();
67         gc->SetFont (gc->CreateFont(wxNORMAL_FONT->Bold(), wxColour(0, 0, 0)));
68
69         int fy = 0;
70         if (_video_tracks) {
71                 int ty = fy + _video_tracks * h;
72                 gc->DrawText (_("Video"), 0, (ty + fy) / 2 - 8);
73                 fy = ty;
74         }
75
76         if (_text_tracks) {
77                 int ty = fy + _text_tracks * h;
78                 gc->DrawText (_("Subtitles/captions"), 0, (ty + fy) / 2 - 8);
79                 fy = ty;
80         }
81
82         if (_atmos) {
83                 int ty = fy + h;
84                 gc->DrawText (_("Atmos"), 0, (ty + fy) / 2 - 8);
85                 fy = ty;
86         }
87
88         if (_audio_tracks) {
89                 int ty = _timeline.tracks() * h;
90                 gc->DrawText (_("Audio"), 0, (ty + fy) / 2 - 8);
91         }
92 }
93
94
95 void
96 TimelineLabelsView::set_video_tracks (int n)
97 {
98         _video_tracks = n;
99 }
100
101
102 void
103 TimelineLabelsView::set_audio_tracks (int n)
104 {
105         _audio_tracks = n;
106 }
107
108
109 void
110 TimelineLabelsView::set_text_tracks (int n)
111 {
112         _text_tracks = n;
113 }
114
115
116 void
117 TimelineLabelsView::set_atmos (bool s)
118 {
119         _atmos = s;
120 }