cac9318cca2eac486aee8ce30cb40c87f08a872f
[dcpomatic.git] / src / wx / timeline.cc
1 /*
2     Copyright (C) 2013-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 #include "film_editor.h"
22 #include "timeline.h"
23 #include "timeline_time_axis_view.h"
24 #include "timeline_reels_view.h"
25 #include "timeline_labels_view.h"
26 #include "timeline_video_content_view.h"
27 #include "timeline_audio_content_view.h"
28 #include "timeline_text_content_view.h"
29 #include "timeline_atmos_content_view.h"
30 #include "content_panel.h"
31 #include "wx_util.h"
32 #include "film_viewer.h"
33 #include "lib/film.h"
34 #include "lib/playlist.h"
35 #include "lib/image_content.h"
36 #include "lib/timer.h"
37 #include "lib/audio_content.h"
38 #include "lib/text_content.h"
39 #include "lib/video_content.h"
40 #include "lib/atmos_mxf_content.h"
41 #include <wx/graphics.h>
42 #include <boost/weak_ptr.hpp>
43 #include <boost/foreach.hpp>
44 #include <list>
45 #include <iterator>
46 #include <iostream>
47
48 using std::list;
49 using std::cout;
50 using std::min;
51 using std::max;
52 using std::abs;
53 using boost::shared_ptr;
54 using boost::weak_ptr;
55 using boost::dynamic_pointer_cast;
56 using boost::bind;
57 using boost::optional;
58 using namespace dcpomatic;
59
60 /* 3 hours in 640 pixels */
61 double const Timeline::_minimum_pixels_per_second = 640.0 / (60 * 60 * 3);
62 int const Timeline::_minimum_pixels_per_track = 16;
63
64 Timeline::Timeline (wxWindow* parent, ContentPanel* cp, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
65         : wxPanel (parent, wxID_ANY)
66         , _labels_canvas (new wxScrolledCanvas (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxFULL_REPAINT_ON_RESIZE))
67         , _main_canvas (new wxScrolledCanvas (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxFULL_REPAINT_ON_RESIZE))
68         , _content_panel (cp)
69         , _film (film)
70         , _viewer (viewer)
71         , _time_axis_view (new TimelineTimeAxisView (*this, 64))
72         , _reels_view (new TimelineReelsView (*this, 32))
73         , _labels_view (new TimelineLabelsView (*this))
74         , _tracks (0)
75         , _left_down (false)
76         , _down_view_position (0)
77         , _first_move (false)
78         , _menu (this)
79         , _snap (true)
80         , _tool (SELECT)
81         , _x_scroll_rate (16)
82         , _y_scroll_rate (16)
83         , _pixels_per_track (48)
84         , _first_resize (true)
85 {
86 #ifndef __WXOSX__
87         _labels_canvas->SetDoubleBuffered (true);
88         _main_canvas->SetDoubleBuffered (true);
89 #endif
90
91         wxSizer* sizer = new wxBoxSizer (wxHORIZONTAL);
92         sizer->Add (_labels_canvas, 0, wxEXPAND);
93         _labels_canvas->SetMinSize (wxSize (_labels_view->bbox().width, -1));
94         sizer->Add (_main_canvas, 1, wxEXPAND);
95         SetSizer (sizer);
96
97         _labels_canvas->Bind (wxEVT_PAINT,      boost::bind (&Timeline::paint_labels, this));
98         _main_canvas->Bind   (wxEVT_PAINT,      boost::bind (&Timeline::paint_main,   this));
99         _main_canvas->Bind   (wxEVT_LEFT_DOWN,  boost::bind (&Timeline::left_down,    this, _1));
100         _main_canvas->Bind   (wxEVT_LEFT_UP,    boost::bind (&Timeline::left_up,      this, _1));
101         _main_canvas->Bind   (wxEVT_RIGHT_DOWN, boost::bind (&Timeline::right_down,   this, _1));
102         _main_canvas->Bind   (wxEVT_MOTION,     boost::bind (&Timeline::mouse_moved,  this, _1));
103         _main_canvas->Bind   (wxEVT_SIZE,       boost::bind (&Timeline::resized,      this));
104         _main_canvas->Bind   (wxEVT_SCROLLWIN_TOP,        boost::bind (&Timeline::scrolled,     this, _1));
105         _main_canvas->Bind   (wxEVT_SCROLLWIN_BOTTOM,     boost::bind (&Timeline::scrolled,     this, _1));
106         _main_canvas->Bind   (wxEVT_SCROLLWIN_LINEUP,     boost::bind (&Timeline::scrolled,     this, _1));
107         _main_canvas->Bind   (wxEVT_SCROLLWIN_LINEDOWN,   boost::bind (&Timeline::scrolled,     this, _1));
108         _main_canvas->Bind   (wxEVT_SCROLLWIN_PAGEUP,     boost::bind (&Timeline::scrolled,     this, _1));
109         _main_canvas->Bind   (wxEVT_SCROLLWIN_PAGEDOWN,   boost::bind (&Timeline::scrolled,     this, _1));
110         _main_canvas->Bind   (wxEVT_SCROLLWIN_THUMBTRACK, boost::bind (&Timeline::scrolled,     this, _1));
111
112         film_change (CHANGE_TYPE_DONE, Film::CONTENT);
113
114         SetMinSize (wxSize (640, 4 * pixels_per_track() + 96));
115
116         _film_changed_connection = film->Change.connect (bind (&Timeline::film_change, this, _1, _2));
117         _film_content_change_connection = film->ContentChange.connect (bind (&Timeline::film_content_change, this, _1, _3, _4));
118
119         shared_ptr<FilmViewer> vp = viewer.lock ();
120         DCPOMATIC_ASSERT (vp);
121         _viewer_position_change_connection = vp->PositionChanged.connect (bind(&Timeline::position_change, this));
122
123         setup_scrollbars ();
124         _labels_canvas->ShowScrollbars (wxSHOW_SB_NEVER, wxSHOW_SB_NEVER);
125 }
126
127 void
128 Timeline::position_change ()
129 {
130         Refresh ();
131 }
132
133 void
134 Timeline::set_pixels_per_second (double pps)
135 {
136         _pixels_per_second = max (_minimum_pixels_per_second, pps);
137 }
138
139 void
140 Timeline::paint_labels ()
141 {
142         wxPaintDC dc (_labels_canvas);
143
144         wxGraphicsContext* gc = wxGraphicsContext::Create (dc);
145         if (!gc) {
146                 return;
147         }
148
149         int vsx, vsy;
150         _labels_canvas->GetViewStart (&vsx, &vsy);
151         gc->Translate (-vsx * _x_scroll_rate, -vsy * _y_scroll_rate + tracks_y_offset());
152
153         _labels_view->paint (gc, list<dcpomatic::Rect<int> >());
154
155         delete gc;
156 }
157
158 void
159 Timeline::paint_main ()
160 {
161         wxPaintDC dc (_main_canvas);
162         _main_canvas->DoPrepareDC (dc);
163
164         wxGraphicsContext* gc = wxGraphicsContext::Create (dc);
165         if (!gc) {
166                 return;
167         }
168
169         int vsx, vsy;
170         _main_canvas->GetViewStart (&vsx, &vsy);
171         gc->Translate (-vsx * _x_scroll_rate, -vsy * _y_scroll_rate);
172
173         gc->SetAntialiasMode (wxANTIALIAS_DEFAULT);
174
175         BOOST_FOREACH (shared_ptr<TimelineView> i, _views) {
176
177                 shared_ptr<TimelineContentView> ic = dynamic_pointer_cast<TimelineContentView> (i);
178
179                 /* Find areas of overlap with other content views, so that we can plot them */
180                 list<dcpomatic::Rect<int> > overlaps;
181                 BOOST_FOREACH (shared_ptr<TimelineView> j, _views) {
182                         shared_ptr<TimelineContentView> jc = dynamic_pointer_cast<TimelineContentView> (j);
183                         /* No overlap with non-content views, views no different tracks, audio views or non-active views */
184                         if (!ic || !jc || i == j || ic->track() != jc->track() || ic->track().get_value_or(2) >= 2 || !ic->active() || !jc->active()) {
185                                 continue;
186                         }
187
188                         optional<dcpomatic::Rect<int> > r = j->bbox().intersection (i->bbox());
189                         if (r) {
190                                 overlaps.push_back (r.get ());
191                         }
192                 }
193
194                 i->paint (gc, overlaps);
195         }
196
197         if (_zoom_point) {
198                 /* Translate back as _down_point and _zoom_point do not take scroll into account */
199                 gc->Translate (vsx * _x_scroll_rate, vsy * _y_scroll_rate);
200                 gc->SetPen (*wxBLACK_PEN);
201                 gc->SetBrush (*wxTRANSPARENT_BRUSH);
202                 gc->DrawRectangle (
203                         min (_down_point.x, _zoom_point->x),
204                         min (_down_point.y, _zoom_point->y),
205                         abs (_down_point.x - _zoom_point->x),
206                         abs (_down_point.y - _zoom_point->y)
207                         );
208         }
209
210         /* Playhead */
211
212         shared_ptr<FilmViewer> vp = _viewer.lock ();
213         DCPOMATIC_ASSERT (vp);
214
215         gc->SetPen (*wxRED_PEN);
216         wxGraphicsPath path = gc->CreatePath ();
217         double const ph = vp->position().seconds() * pixels_per_second().get_value_or(0);
218         path.MoveToPoint (ph, 0);
219         path.AddLineToPoint (ph, pixels_per_track() * _tracks + 32);
220         gc->StrokePath (path);
221
222         delete gc;
223 }
224
225 void
226 Timeline::film_change (ChangeType type, Film::Property p)
227 {
228         if (type != CHANGE_TYPE_DONE) {
229                 return;
230         }
231
232         if (p == Film::CONTENT || p == Film::REEL_TYPE || p == Film::REEL_LENGTH) {
233                 ensure_ui_thread ();
234                 recreate_views ();
235         } else if (p == Film::CONTENT_ORDER) {
236                 Refresh ();
237         }
238 }
239
240 void
241 Timeline::recreate_views ()
242 {
243         shared_ptr<const Film> film = _film.lock ();
244         if (!film) {
245                 return;
246         }
247
248         _views.clear ();
249         _views.push_back (_time_axis_view);
250         _views.push_back (_reels_view);
251
252         BOOST_FOREACH (shared_ptr<Content> i, film->content ()) {
253                 if (i->video) {
254                         _views.push_back (shared_ptr<TimelineView> (new TimelineVideoContentView (*this, i)));
255                 }
256
257                 if (i->audio && !i->audio->mapping().mapped_output_channels().empty ()) {
258                         _views.push_back (shared_ptr<TimelineView> (new TimelineAudioContentView (*this, i)));
259                 }
260
261                 BOOST_FOREACH (shared_ptr<TextContent> j, i->text) {
262                         _views.push_back (shared_ptr<TimelineView> (new TimelineTextContentView (*this, i, j)));
263                 }
264
265                 if (dynamic_pointer_cast<AtmosMXFContent> (i)) {
266                         _views.push_back (shared_ptr<TimelineView> (new TimelineAtmosContentView (*this, i)));
267                 }
268         }
269
270         assign_tracks ();
271         setup_scrollbars ();
272         Refresh ();
273 }
274
275 void
276 Timeline::film_content_change (ChangeType type, int property, bool frequent)
277 {
278         if (type != CHANGE_TYPE_DONE) {
279                 return;
280         }
281
282         ensure_ui_thread ();
283
284         if (property == AudioContentProperty::STREAMS || property == VideoContentProperty::FRAME_TYPE) {
285                 recreate_views ();
286         } else if (property == ContentProperty::POSITION || property == ContentProperty::LENGTH) {
287                 _reels_view->force_redraw ();
288         } else if (!frequent) {
289                 setup_scrollbars ();
290                 Refresh ();
291         }
292 }
293
294 template <class T>
295 int
296 place (shared_ptr<const Film> film, TimelineViewList& views, int& tracks)
297 {
298         int const base = tracks;
299
300         BOOST_FOREACH (shared_ptr<TimelineView> i, views) {
301                 if (!dynamic_pointer_cast<T>(i)) {
302                         continue;
303                 }
304
305                 shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (i);
306
307                 int t = base;
308
309                 shared_ptr<Content> content = cv->content();
310                 DCPTimePeriod const content_period (content->position(), content->end(film));
311
312                 while (true) {
313                         TimelineViewList::iterator j = views.begin();
314                         while (j != views.end()) {
315                                 shared_ptr<T> test = dynamic_pointer_cast<T> (*j);
316                                 if (!test) {
317                                         ++j;
318                                         continue;
319                                 }
320
321                                 shared_ptr<Content> test_content = test->content();
322                                 if (
323                                         test->track() && test->track().get() == t &&
324                                         content_period.overlap(DCPTimePeriod(test_content->position(), test_content->end(film)))) {
325                                         /* we have an overlap on track `t' */
326                                         ++t;
327                                         break;
328                                 }
329
330                                 ++j;
331                         }
332
333                         if (j == views.end ()) {
334                                 /* no overlap on `t' */
335                                 break;
336                         }
337                 }
338
339                 cv->set_track (t);
340                 tracks = max (tracks, t + 1);
341         }
342
343         return tracks - base;
344 }
345
346 /** Compare the mapped output channels of two TimelineViews, so we can into
347  *  order of first mapped DCP channel.
348  */
349 struct AudioMappingComparator {
350         bool operator()(shared_ptr<TimelineView> a, shared_ptr<TimelineView> b) {
351                 int la = -1;
352                 shared_ptr<TimelineAudioContentView> cva = dynamic_pointer_cast<TimelineAudioContentView>(a);
353                 if (cva) {
354                         list<int> oc = cva->content()->audio->mapping().mapped_output_channels();
355                         la = *min_element(boost::begin(oc), boost::end(oc));
356                 }
357                 int lb = -1;
358                 shared_ptr<TimelineAudioContentView> cvb = dynamic_pointer_cast<TimelineAudioContentView>(b);
359                 if (cvb) {
360                         list<int> oc = cvb->content()->audio->mapping().mapped_output_channels();
361                         lb = *min_element(boost::begin(oc), boost::end(oc));
362                 }
363                 return la < lb;
364         }
365 };
366
367 void
368 Timeline::assign_tracks ()
369 {
370         /* Tracks are:
371            Video (mono or left-eye)
372            Video (right-eye)
373            Text 1
374            Text 2
375            Text N
376            Atmos
377            Audio 1
378            Audio 2
379            Audio N
380         */
381
382         shared_ptr<const Film> film = _film.lock ();
383         DCPOMATIC_ASSERT (film);
384
385         _tracks = 0;
386
387         for (TimelineViewList::iterator i = _views.begin(); i != _views.end(); ++i) {
388                 shared_ptr<TimelineContentView> c = dynamic_pointer_cast<TimelineContentView> (*i);
389                 if (c) {
390                         c->unset_track ();
391                 }
392         }
393
394         /* Video */
395
396         bool have_3d = false;
397         BOOST_FOREACH (shared_ptr<TimelineView> i, _views) {
398                 shared_ptr<TimelineVideoContentView> cv = dynamic_pointer_cast<TimelineVideoContentView> (i);
399                 if (!cv) {
400                         continue;
401                 }
402
403                 /* Video on tracks 0 and maybe 1 (left and right eye) */
404                 if (cv->content()->video->frame_type() == VIDEO_FRAME_TYPE_3D_RIGHT) {
405                         cv->set_track (1);
406                         _tracks = max (_tracks, 2);
407                         have_3d = true;
408                 } else {
409                         cv->set_track (0);
410                 }
411         }
412
413         _tracks = max (_tracks, 1);
414
415         /* Texts */
416
417         int const text_tracks = place<TimelineTextContentView> (film, _views, _tracks);
418
419         /* Atmos */
420
421         bool have_atmos = false;
422         BOOST_FOREACH (shared_ptr<TimelineView> i, _views) {
423                 shared_ptr<TimelineVideoContentView> cv = dynamic_pointer_cast<TimelineVideoContentView> (i);
424                 if (!cv) {
425                         continue;
426                 }
427                 if (dynamic_pointer_cast<TimelineAtmosContentView> (i)) {
428                         cv->set_track (_tracks - 1);
429                         have_atmos = true;
430                 }
431         }
432
433         if (have_atmos) {
434                 ++_tracks;
435         }
436
437         /* Audio.  We're sorting the views so that we get the audio views in order of increasing
438            DCP channel index.
439         */
440
441         TimelineViewList views = _views;
442         sort(views.begin(), views.end(), AudioMappingComparator());
443         int const audio_tracks = place<TimelineAudioContentView> (film, views, _tracks);
444
445         _labels_view->set_3d (have_3d);
446         _labels_view->set_audio_tracks (audio_tracks);
447         _labels_view->set_text_tracks (text_tracks);
448         _labels_view->set_atmos (have_atmos);
449
450         _time_axis_view->set_y (tracks());
451         _reels_view->set_y (8);
452 }
453
454 int
455 Timeline::tracks () const
456 {
457         return _tracks;
458 }
459
460 void
461 Timeline::setup_scrollbars ()
462 {
463         shared_ptr<const Film> film = _film.lock ();
464         if (!film || !_pixels_per_second) {
465                 return;
466         }
467
468         int const h = tracks() * pixels_per_track() + tracks_y_offset() + _time_axis_view->bbox().height;
469
470         _labels_canvas->SetVirtualSize (_labels_view->bbox().width, h);
471         _labels_canvas->SetScrollRate (_x_scroll_rate, _y_scroll_rate);
472         _main_canvas->SetVirtualSize (*_pixels_per_second * film->length().seconds(), h);
473         _main_canvas->SetScrollRate (_x_scroll_rate, _y_scroll_rate);
474 }
475
476 shared_ptr<TimelineView>
477 Timeline::event_to_view (wxMouseEvent& ev)
478 {
479         /* Search backwards through views so that we find the uppermost one first */
480         TimelineViewList::reverse_iterator i = _views.rbegin();
481         Position<int> const p (ev.GetX(), ev.GetY());
482         while (i != _views.rend() && !(*i)->bbox().contains (p)) {
483                 shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i);
484                 ++i;
485         }
486
487         if (i == _views.rend ()) {
488                 return shared_ptr<TimelineView> ();
489         }
490
491         return *i;
492 }
493
494 void
495 Timeline::left_down (wxMouseEvent& ev)
496 {
497         _left_down = true;
498         _down_point = ev.GetPosition ();
499
500         switch (_tool) {
501         case SELECT:
502                 left_down_select (ev);
503                 break;
504         case ZOOM:
505         case ZOOM_ALL:
506         case SNAP:
507         case SEQUENCE:
508                 /* Nothing to do */
509                 break;
510         }
511 }
512
513 void
514 Timeline::left_down_select (wxMouseEvent& ev)
515 {
516         shared_ptr<TimelineView> view = event_to_view (ev);
517         shared_ptr<TimelineContentView> content_view = dynamic_pointer_cast<TimelineContentView> (view);
518
519         _down_view.reset ();
520
521         if (content_view) {
522                 _down_view = content_view;
523                 _down_view_position = content_view->content()->position ();
524         }
525
526         for (TimelineViewList::iterator i = _views.begin(); i != _views.end(); ++i) {
527                 shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i);
528                 if (!cv) {
529                         continue;
530                 }
531
532                 if (!ev.ShiftDown ()) {
533                         cv->set_selected (view == *i);
534                 }
535         }
536
537         if (content_view && ev.ShiftDown ()) {
538                 content_view->set_selected (!content_view->selected ());
539         }
540
541         _first_move = false;
542
543         if (_down_view) {
544                 /* Pre-compute the points that we might snap to */
545                 for (TimelineViewList::iterator i = _views.begin(); i != _views.end(); ++i) {
546                         shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i);
547                         if (!cv || cv == _down_view || cv->content() == _down_view->content()) {
548                                 continue;
549                         }
550
551                         shared_ptr<Film> film = _film.lock ();
552                         DCPOMATIC_ASSERT (film);
553
554                         _start_snaps.push_back (cv->content()->position());
555                         _end_snaps.push_back (cv->content()->position());
556                         _start_snaps.push_back (cv->content()->end(film));
557                         _end_snaps.push_back (cv->content()->end(film));
558
559                         BOOST_FOREACH (DCPTime i, cv->content()->reel_split_points(film)) {
560                                 _start_snaps.push_back (i);
561                         }
562                 }
563
564                 /* Tell everyone that things might change frequently during the drag */
565                 _down_view->content()->set_change_signals_frequent (true);
566         }
567 }
568
569 void
570 Timeline::left_up (wxMouseEvent& ev)
571 {
572         _left_down = false;
573
574         switch (_tool) {
575         case SELECT:
576                 left_up_select (ev);
577                 break;
578         case ZOOM:
579                 left_up_zoom (ev);
580                 break;
581         case ZOOM_ALL:
582         case SNAP:
583         case SEQUENCE:
584                 break;
585         }
586 }
587
588 void
589 Timeline::left_up_select (wxMouseEvent& ev)
590 {
591         if (_down_view) {
592                 _down_view->content()->set_change_signals_frequent (false);
593         }
594
595         _content_panel->set_selection (selected_content ());
596         /* Since we may have just set change signals back to `not-frequent', we have to
597            make sure this position change is signalled, even if the position value has
598            not changed since the last time it was set (with frequent=true).  This is
599            a bit of a hack.
600         */
601         set_position_from_event (ev, true);
602
603         /* Clear up up the stuff we don't do during drag */
604         assign_tracks ();
605         setup_scrollbars ();
606         Refresh ();
607
608         _start_snaps.clear ();
609         _end_snaps.clear ();
610 }
611
612 void
613 Timeline::left_up_zoom (wxMouseEvent& ev)
614 {
615         _zoom_point = ev.GetPosition ();
616
617         int vsx, vsy;
618         _main_canvas->GetViewStart (&vsx, &vsy);
619
620         wxPoint top_left(min(_down_point.x, _zoom_point->x), min(_down_point.y, _zoom_point->y));
621         wxPoint bottom_right(max(_down_point.x, _zoom_point->x), max(_down_point.y, _zoom_point->y));
622
623         if ((bottom_right.x - top_left.x) < 8 || (bottom_right.y - top_left.y) < 8) {
624                 /* Very small zoom rectangle: we assume it wasn't intentional */
625                 return;
626         }
627
628         DCPTime const time_left = DCPTime::from_seconds((top_left.x + vsx) / *_pixels_per_second);
629         DCPTime const time_right = DCPTime::from_seconds((bottom_right.x + vsx) / *_pixels_per_second);
630         set_pixels_per_second (double(GetSize().GetWidth()) / (time_right.seconds() - time_left.seconds()));
631
632         double const tracks_top = double(top_left.y - tracks_y_offset()) / _pixels_per_track;
633         double const tracks_bottom = double(bottom_right.y - tracks_y_offset()) / _pixels_per_track;
634         set_pixels_per_track (lrint(GetSize().GetHeight() / (tracks_bottom - tracks_top)));
635
636         setup_scrollbars ();
637         int const y = (tracks_top * _pixels_per_track + tracks_y_offset()) / _y_scroll_rate;
638         _main_canvas->Scroll (time_left.seconds() * *_pixels_per_second / _x_scroll_rate, y);
639         _labels_canvas->Scroll (0, y);
640
641         _zoom_point = optional<wxPoint> ();
642         Refresh ();
643 }
644
645 void
646 Timeline::set_pixels_per_track (int h)
647 {
648         _pixels_per_track = max(_minimum_pixels_per_track, h);
649 }
650
651 void
652 Timeline::mouse_moved (wxMouseEvent& ev)
653 {
654         switch (_tool) {
655         case SELECT:
656                 mouse_moved_select (ev);
657                 break;
658         case ZOOM:
659                 mouse_moved_zoom (ev);
660                 break;
661         case ZOOM_ALL:
662         case SNAP:
663         case SEQUENCE:
664                 break;
665         }
666 }
667
668 void
669 Timeline::mouse_moved_select (wxMouseEvent& ev)
670 {
671         if (!_left_down) {
672                 return;
673         }
674
675         set_position_from_event (ev);
676 }
677
678 void
679 Timeline::mouse_moved_zoom (wxMouseEvent& ev)
680 {
681         if (!_left_down) {
682                 return;
683         }
684
685         _zoom_point = ev.GetPosition ();
686         Refresh ();
687 }
688
689 void
690 Timeline::right_down (wxMouseEvent& ev)
691 {
692         switch (_tool) {
693         case SELECT:
694                 right_down_select (ev);
695                 break;
696         case ZOOM:
697                 /* Zoom out */
698                 set_pixels_per_second (*_pixels_per_second / 2);
699                 set_pixels_per_track (_pixels_per_track / 2);
700                 setup_scrollbars ();
701                 Refresh ();
702                 break;
703         case ZOOM_ALL:
704         case SNAP:
705         case SEQUENCE:
706                 break;
707         }
708 }
709
710 void
711 Timeline::right_down_select (wxMouseEvent& ev)
712 {
713         shared_ptr<TimelineView> view = event_to_view (ev);
714         shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (view);
715         if (!cv) {
716                 return;
717         }
718
719         if (!cv->selected ()) {
720                 clear_selection ();
721                 cv->set_selected (true);
722         }
723
724         _menu.popup (_film, selected_content (), selected_views (), ev.GetPosition ());
725 }
726
727 void
728 Timeline::maybe_snap (DCPTime a, DCPTime b, optional<DCPTime>& nearest_distance) const
729 {
730         DCPTime const d = a - b;
731         if (!nearest_distance || d.abs() < nearest_distance.get().abs()) {
732                 nearest_distance = d;
733         }
734 }
735
736 void
737 Timeline::set_position_from_event (wxMouseEvent& ev, bool force_emit)
738 {
739         if (!_pixels_per_second) {
740                 return;
741         }
742
743         double const pps = _pixels_per_second.get ();
744
745         wxPoint const p = ev.GetPosition();
746
747         if (!_first_move) {
748                 /* We haven't moved yet; in that case, we must move the mouse some reasonable distance
749                    before the drag is considered to have started.
750                 */
751                 int const dist = sqrt (pow (p.x - _down_point.x, 2) + pow (p.y - _down_point.y, 2));
752                 if (dist < 8) {
753                         return;
754                 }
755                 _first_move = true;
756         }
757
758         if (!_down_view) {
759                 return;
760         }
761
762         DCPTime new_position = _down_view_position + DCPTime::from_seconds ((p.x - _down_point.x) / pps);
763
764         shared_ptr<Film> film = _film.lock ();
765         DCPOMATIC_ASSERT (film);
766
767         if (_snap) {
768                 DCPTime const new_end = new_position + _down_view->content()->length_after_trim(film);
769                 /* Signed `distance' to nearest thing (i.e. negative is left on the timeline,
770                    positive is right).
771                 */
772                 optional<DCPTime> nearest_distance;
773
774                 /* Find the nearest snap point */
775
776                 BOOST_FOREACH (DCPTime i, _start_snaps) {
777                         maybe_snap (i, new_position, nearest_distance);
778                 }
779
780                 BOOST_FOREACH (DCPTime i, _end_snaps) {
781                         maybe_snap (i, new_end, nearest_distance);
782                 }
783
784                 if (nearest_distance) {
785                         /* Snap if it's close; `close' means within a proportion of the time on the timeline */
786                         if (nearest_distance.get().abs() < DCPTime::from_seconds ((width() / pps) / 64)) {
787                                 new_position += nearest_distance.get ();
788                         }
789                 }
790         }
791
792         if (new_position < DCPTime ()) {
793                 new_position = DCPTime ();
794         }
795
796         _down_view->content()->set_position (film, new_position, force_emit);
797
798         film->set_sequence (false);
799 }
800
801 void
802 Timeline::force_redraw (dcpomatic::Rect<int> const & r)
803 {
804         _main_canvas->RefreshRect (wxRect (r.x, r.y, r.width, r.height), false);
805 }
806
807 shared_ptr<const Film>
808 Timeline::film () const
809 {
810         return _film.lock ();
811 }
812
813 void
814 Timeline::resized ()
815 {
816         if (_main_canvas->GetSize().GetWidth() > 0 && _first_resize) {
817                 zoom_all ();
818                 _first_resize = false;
819         }
820         setup_scrollbars ();
821 }
822
823 void
824 Timeline::clear_selection ()
825 {
826         for (TimelineViewList::iterator i = _views.begin(); i != _views.end(); ++i) {
827                 shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i);
828                 if (cv) {
829                         cv->set_selected (false);
830                 }
831         }
832 }
833
834 TimelineContentViewList
835 Timeline::selected_views () const
836 {
837         TimelineContentViewList sel;
838
839         for (TimelineViewList::const_iterator i = _views.begin(); i != _views.end(); ++i) {
840                 shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i);
841                 if (cv && cv->selected()) {
842                         sel.push_back (cv);
843                 }
844         }
845
846         return sel;
847 }
848
849 ContentList
850 Timeline::selected_content () const
851 {
852         ContentList sel;
853         TimelineContentViewList views = selected_views ();
854
855         for (TimelineContentViewList::const_iterator i = views.begin(); i != views.end(); ++i) {
856                 sel.push_back ((*i)->content ());
857         }
858
859         return sel;
860 }
861
862 void
863 Timeline::set_selection (ContentList selection)
864 {
865         for (TimelineViewList::iterator i = _views.begin(); i != _views.end(); ++i) {
866                 shared_ptr<TimelineContentView> cv = dynamic_pointer_cast<TimelineContentView> (*i);
867                 if (cv) {
868                         cv->set_selected (find (selection.begin(), selection.end(), cv->content ()) != selection.end ());
869                 }
870         }
871 }
872
873 int
874 Timeline::tracks_y_offset () const
875 {
876         return _reels_view->bbox().height + 4;
877 }
878
879 int
880 Timeline::width () const
881 {
882         return _main_canvas->GetVirtualSize().GetWidth();
883 }
884
885 void
886 Timeline::scrolled (wxScrollWinEvent& ev)
887 {
888         if (ev.GetOrientation() == wxVERTICAL) {
889                 int x, y;
890                 _main_canvas->GetViewStart (&x, &y);
891                 _labels_canvas->Scroll (0, y);
892         }
893         ev.Skip ();
894 }
895
896 void
897 Timeline::tool_clicked (Tool t)
898 {
899         switch (t) {
900         case ZOOM:
901         case SELECT:
902                 _tool = t;
903                 break;
904         case ZOOM_ALL:
905                 zoom_all ();
906                 break;
907         case SNAP:
908         case SEQUENCE:
909                 break;
910         }
911 }
912
913 void
914 Timeline::zoom_all ()
915 {
916         shared_ptr<Film> film = _film.lock ();
917         DCPOMATIC_ASSERT (film);
918         set_pixels_per_second ((_main_canvas->GetSize().GetWidth() - 32) / film->length().seconds());
919         set_pixels_per_track ((_main_canvas->GetSize().GetHeight() - tracks_y_offset() - _time_axis_view->bbox().height - 32) / _tracks);
920         setup_scrollbars ();
921         _main_canvas->Scroll (0, 0);
922         _labels_canvas->Scroll (0, 0);
923         Refresh ();
924 }