Basics of Atmos content support; can be added to project and appears in timeline.
[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         , _threed (true)
33         , _subtitle (true)
34         , _atmos (true)
35 {
36         wxString labels[] = {
37                 _("Video"),
38                 _("Audio"),
39                 _("Subtitles"),
40                 _("Atmos")
41         };
42
43         _width = 0;
44
45         wxClientDC dc (&_timeline);
46         for (int i = 0; i < 3; ++i) {
47                 wxSize size = dc.GetTextExtent (labels[i]);
48                 _width = max (_width, size.GetWidth());
49         }
50
51         _width += 16;
52 }
53
54 dcpomatic::Rect<int>
55 TimelineLabelsView::bbox () const
56 {
57         return dcpomatic::Rect<int> (0, 0, _width, _timeline.tracks() * _timeline.track_height());
58 }
59
60 void
61 TimelineLabelsView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> >)
62 {
63         int const h = _timeline.track_height ();
64         gc->SetFont (gc->CreateFont(wxNORMAL_FONT->Bold(), wxColour (0, 0, 0)));
65
66         int fy = 0;
67         int ty = _threed ? 2 * h : h;
68         gc->DrawText (_("Video"),     0, _timeline.tracks_position().y + (ty + fy) / 2 - 8);
69         fy = ty;
70
71         if (_subtitle) {
72                 ty = fy + h;
73                 gc->DrawText (_("Subtitles"), 0, _timeline.tracks_position().y + (ty + fy) / 2 - 8);
74                 fy = ty;
75         }
76
77         if (_atmos) {
78                 ty = fy + h;
79                 gc->DrawText (_("Atmos"), 0, _timeline.tracks_position().y + (ty + fy) / 2 - 8);
80                 fy = ty;
81         }
82
83         ty = _timeline.tracks() * h;
84         gc->DrawText (_("Audio"), 0, _timeline.tracks_position().y + (ty + fy) / 2 - 8);
85 }
86
87 void
88 TimelineLabelsView::set_3d (bool s)
89 {
90         _threed = s;
91 }
92
93 void
94 TimelineLabelsView::set_subtitle (bool s)
95 {
96         _subtitle = s;
97 }
98
99 void
100 TimelineLabelsView::set_atmos (bool s)
101 {
102         _atmos = s;
103 }