From 03356464b29ff84f72d252efb22502754f55cfce Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 23 Feb 2016 15:09:55 +0000 Subject: [PATCH] Put video on 0, subtitles on 1, audio on 2 and up. --- src/wx/timeline.cc | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index a964ea98d..62b812c8b 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -170,13 +170,28 @@ Timeline::assign_tracks () } shared_ptr content = cv->content(); + + if (dynamic_pointer_cast (content)) { + /* Video on track 0 */ + cv->set_track (0); + _tracks = max (_tracks, 1); + continue; + } else if (dynamic_pointer_cast (content)) { + /* Subtitles on track 1 */ + cv->set_track (1); + _tracks = max (_tracks, 2); + continue; + } + + /* Audio on tracks 2 and up */ + int t = 2; + DCPTimePeriod content_period (content->position(), content->end()); - int t = 0; while (true) { TimelineViewList::iterator j = _views.begin(); while (j != _views.end()) { - shared_ptr test = dynamic_pointer_cast (*j); + shared_ptr test = dynamic_pointer_cast (*j); if (!test) { ++j; continue; @@ -229,13 +244,15 @@ Timeline::setup_pixels_per_second () shared_ptr Timeline::event_to_view (wxMouseEvent& ev) { - TimelineViewList::iterator i = _views.begin(); + /* Search backwards through views so that we find the uppermost one first */ + TimelineViewList::reverse_iterator i = _views.rbegin(); Position const p (ev.GetX(), ev.GetY()); - while (i != _views.end() && !(*i)->bbox().contains (p)) { + while (i != _views.rend() && !(*i)->bbox().contains (p)) { + shared_ptr cv = dynamic_pointer_cast (*i); ++i; } - if (i == _views.end ()) { + if (i == _views.rend ()) { return shared_ptr (); } -- 2.30.2