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