Optimise timeline view; speed up snapping and only set content panel selection on...
[dcpomatic.git] / src / wx / timeline.h
1 /*
2     Copyright (C) 2013-2015 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 #include "content_menu.h"
21 #include "timeline_content_view.h"
22 #include "lib/util.h"
23 #include "lib/rect.h"
24 #include "lib/film.h"
25 #include <wx/wx.h>
26 #include <boost/shared_ptr.hpp>
27 #include <boost/weak_ptr.hpp>
28 #include <boost/signals2.hpp>
29
30 class Film;
31 class ContentPanel;
32 class TimelineView;
33 class TimelineTimeAxisView;
34 class TimelineReelsView;
35
36 class Timeline : public wxPanel
37 {
38 public:
39         Timeline (wxWindow *, ContentPanel *, boost::shared_ptr<Film>);
40
41         boost::shared_ptr<const Film> film () const;
42
43         void force_redraw (dcpomatic::Rect<int> const &);
44
45         int x_offset () const {
46                 return 8;
47         }
48
49         int width () const {
50                 return GetSize().GetWidth ();
51         }
52
53         int track_height () const {
54                 return 48;
55         }
56
57         boost::optional<double> pixels_per_second () const {
58                 return _pixels_per_second;
59         }
60
61         Position<int> tracks_position () const {
62                 return Position<int> (8, 8);
63         }
64
65         int tracks () const;
66
67         void setup_pixels_per_second ();
68
69         void set_snap (bool s) {
70                 _snap = s;
71         }
72
73         bool snap () const {
74                 return _snap;
75         }
76
77         void set_selection (ContentList selection);
78
79 private:
80         void paint ();
81         void left_down (wxMouseEvent &);
82         void left_up (wxMouseEvent &);
83         void right_down (wxMouseEvent &);
84         void mouse_moved (wxMouseEvent &);
85         void film_changed (Film::Property);
86         void film_content_changed (int);
87         void resized ();
88         void assign_tracks ();
89         void set_position_from_event (wxMouseEvent &);
90         void clear_selection ();
91         void recreate_views ();
92
93         boost::shared_ptr<TimelineView> event_to_view (wxMouseEvent &);
94         TimelineContentViewList selected_views () const;
95         ContentList selected_content () const;
96         void maybe_snap (DCPTime a, DCPTime b, boost::optional<DCPTime>& nearest_distance) const;
97
98         ContentPanel* _content_panel;
99         boost::weak_ptr<Film> _film;
100         TimelineViewList _views;
101         boost::shared_ptr<TimelineTimeAxisView> _time_axis_view;
102         boost::shared_ptr<TimelineReelsView> _reels_view;
103         int _tracks;
104         boost::optional<double> _pixels_per_second;
105         bool _left_down;
106         wxPoint _down_point;
107         boost::shared_ptr<TimelineContentView> _down_view;
108         DCPTime _down_view_position;
109         bool _first_move;
110         ContentMenu _menu;
111         bool _snap;
112         std::list<DCPTime> _start_snaps;
113         std::list<DCPTime> _end_snaps;
114
115         boost::signals2::scoped_connection _film_changed_connection;
116         boost::signals2::scoped_connection _film_content_changed_connection;
117 };