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