Supporters update.
[dcpomatic.git] / src / wx / timeline.h
1 /*
2     Copyright (C) 2013-2019 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
22 #include "content_menu.h"
23 #include "timeline_content_view.h"
24 #include "lib/film_property.h"
25 #include "lib/rect.h"
26 #include <dcp/warnings.h>
27 LIBDCP_DISABLE_WARNINGS
28 #include <wx/wx.h>
29 LIBDCP_ENABLE_WARNINGS
30 #include <boost/signals2.hpp>
31
32
33 class ContentPanel;
34 class Film;
35 class FilmViewer;
36 class TimelineLabelsView;
37 class TimelineReelsView;
38 class TimelineTimeAxisView;
39 class TimelineView;
40
41
42 class Timeline : public wxPanel
43 {
44 public:
45         Timeline (wxWindow *, ContentPanel *, std::shared_ptr<Film>, FilmViewer& viewer);
46
47         std::shared_ptr<const Film> film () const;
48
49         void force_redraw (dcpomatic::Rect<int> const &);
50
51         int width () const;
52
53         int pixels_per_track () const {
54                 return _pixels_per_track;
55         }
56
57         boost::optional<double> pixels_per_second () const {
58                 return _pixels_per_second;
59         }
60
61         int tracks () const;
62
63         void set_snap (bool s) {
64                 _snap = s;
65         }
66
67         bool snap () const {
68                 return _snap;
69         }
70
71         void set_selection (ContentList selection);
72
73         enum Tool {
74                 SELECT,
75                 ZOOM,
76                 ZOOM_ALL,
77                 SNAP,
78                 SEQUENCE
79         };
80
81         void tool_clicked (Tool t);
82
83         int tracks_y_offset () const;
84
85         void keypress(wxKeyEvent const &);
86
87 private:
88         void paint_labels ();
89         void paint_main ();
90         void left_down (wxMouseEvent &);
91         void left_down_select (wxMouseEvent &);
92         void left_up (wxMouseEvent &);
93         void left_up_select (wxMouseEvent &);
94         void left_up_zoom (wxMouseEvent &);
95         void right_down (wxMouseEvent &);
96         void right_down_select (wxMouseEvent &);
97         void mouse_moved (wxMouseEvent &);
98         void mouse_moved_select (wxMouseEvent &);
99         void mouse_moved_zoom (wxMouseEvent &);
100         void film_change(ChangeType type, FilmProperty);
101         void film_content_change (ChangeType type, int, bool frequent);
102         void resized ();
103         void assign_tracks ();
104         void set_position_from_event (wxMouseEvent& ev, bool force_emit = false);
105         void clear_selection ();
106         void recreate_views ();
107         void setup_scrollbars ();
108         void scrolled (wxScrollWinEvent& ev);
109         void set_pixels_per_second (double pps);
110         void set_pixels_per_track (int h);
111         void zoom_all ();
112         void update_playhead ();
113         void mouse_wheel_turned(wxMouseEvent& event);
114
115         std::shared_ptr<TimelineView> event_to_view (wxMouseEvent &);
116         TimelineContentViewList selected_views () const;
117         ContentList selected_content () const;
118         void maybe_snap (dcpomatic::DCPTime a, dcpomatic::DCPTime b, boost::optional<dcpomatic::DCPTime>& nearest_distance) const;
119
120         wxScrolledCanvas* _labels_canvas;
121         wxScrolledCanvas* _main_canvas;
122         ContentPanel* _content_panel;
123         std::weak_ptr<Film> _film;
124         FilmViewer& _viewer;
125         TimelineViewList _views;
126         std::shared_ptr<TimelineTimeAxisView> _time_axis_view;
127         std::shared_ptr<TimelineReelsView> _reels_view;
128         std::shared_ptr<TimelineLabelsView> _labels_view;
129         int _tracks;
130         boost::optional<double> _pixels_per_second;
131         bool _left_down;
132         wxPoint _down_point;
133         boost::optional<wxPoint> _zoom_point;
134         std::shared_ptr<TimelineContentView> _down_view;
135         dcpomatic::DCPTime _down_view_position;
136         bool _first_move;
137         ContentMenu _menu;
138         bool _snap;
139         std::list<dcpomatic::DCPTime> _start_snaps;
140         std::list<dcpomatic::DCPTime> _end_snaps;
141         Tool _tool;
142         int _x_scroll_rate;
143         int _y_scroll_rate;
144         int _pixels_per_track;
145         bool _first_resize;
146         wxTimer _timer;
147         boost::optional<int> _last_mouse_wheel_x;
148         boost::optional<double> _last_mouse_wheel_time;
149
150         static double const _minimum_pixels_per_second;
151         static int const _minimum_pixels_per_track;
152
153         boost::signals2::scoped_connection _film_changed_connection;
154         boost::signals2::scoped_connection _film_content_change_connection;
155 };