X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Ftimeline_labels_view.cc;h=d3aa02afcc68b20b981a3029499721f5d40de0c6;hp=3d0b4265173419e2cd55b9c6629ed355b4961edc;hb=386e25f3b9d3fa59cbdeed458d9b3e0d21e338b8;hpb=aaaa51f6d9eda60ab3b3d182c6d2a7a5bda375aa diff --git a/src/wx/timeline_labels_view.cc b/src/wx/timeline_labels_view.cc index 3d0b42651..d3aa02afc 100644 --- a/src/wx/timeline_labels_view.cc +++ b/src/wx/timeline_labels_view.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -31,13 +31,14 @@ using std::max; TimelineLabelsView::TimelineLabelsView (Timeline& tl) : TimelineView (tl) , _threed (true) - , _subtitle_tracks (0) + , _audio_tracks (0) + , _text_tracks (0) , _atmos (true) { wxString labels[] = { _("Video"), _("Audio"), - _("Subtitles"), + _("Subtitles/captions"), _("Atmos") }; @@ -49,7 +50,7 @@ TimelineLabelsView::TimelineLabelsView (Timeline& tl) _width = max (_width, size.GetWidth()); } - _width += 16; + _width += 24; } dcpomatic::Rect @@ -69,9 +70,9 @@ TimelineLabelsView::do_paint (wxGraphicsContext* gc, list > gc->DrawText (_("Video"), 0, (ty + fy) / 2 - 8); fy = ty; - if (_subtitle_tracks) { - ty = fy + _subtitle_tracks * h; - gc->DrawText (_("Subtitles"), 0, (ty + fy) / 2 - 8); + if (_text_tracks) { + ty = fy + _text_tracks * h; + gc->DrawText (_("Subtitles/captions"), 0, (ty + fy) / 2 - 8); fy = ty; } @@ -81,8 +82,10 @@ TimelineLabelsView::do_paint (wxGraphicsContext* gc, list > fy = ty; } - ty = _timeline.tracks() * h; - gc->DrawText (_("Audio"), 0, (ty + fy) / 2 - 8); + if (_audio_tracks) { + ty = _timeline.tracks() * h; + gc->DrawText (_("Audio"), 0, (ty + fy) / 2 - 8); + } } void @@ -92,9 +95,15 @@ TimelineLabelsView::set_3d (bool s) } void -TimelineLabelsView::set_subtitle_tracks (int n) +TimelineLabelsView::set_audio_tracks (int n) +{ + _audio_tracks = n; +} + +void +TimelineLabelsView::set_text_tracks (int n) { - _subtitle_tracks = n; + _text_tracks = n; } void