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 #include "content_menu.h"
22 #include "timeline_content_view.h"
23 #include "lib/film.h"
24 #include "lib/rect.h"
25 #include "lib/util.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 private:
86         void paint_labels ();
87         void paint_main ();
88         void left_down (wxMouseEvent &);
89         void left_down_select (wxMouseEvent &);
90         void left_up (wxMouseEvent &);
91         void left_up_select (wxMouseEvent &);
92         void left_up_zoom (wxMouseEvent &);
93         void right_down (wxMouseEvent &);
94         void right_down_select (wxMouseEvent &);
95         void mouse_moved (wxMouseEvent &);
96         void mouse_moved_select (wxMouseEvent &);
97         void mouse_moved_zoom (wxMouseEvent &);
98         void film_change (ChangeType type, Film::Property);
99         void film_content_change (ChangeType type, int, bool frequent);
100         void resized ();
101         void assign_tracks ();
102         void set_position_from_event (wxMouseEvent& ev, bool force_emit = false);
103         void clear_selection ();
104         void recreate_views ();
105         void setup_scrollbars ();
106         void scrolled (wxScrollWinEvent& ev);
107         void set_pixels_per_second (double pps);
108         void set_pixels_per_track (int h);
109         void zoom_all ();
110         void update_playhead ();
111
112         std::shared_ptr<TimelineView> event_to_view (wxMouseEvent &);
113         TimelineContentViewList selected_views () const;
114         ContentList selected_content () const;
115         void maybe_snap (dcpomatic::DCPTime a, dcpomatic::DCPTime b, boost::optional<dcpomatic::DCPTime>& nearest_distance) const;
116
117         wxScrolledCanvas* _labels_canvas;
118         wxScrolledCanvas* _main_canvas;
119         ContentPanel* _content_panel;
120         std::weak_ptr<Film> _film;
121         FilmViewer& _viewer;
122         TimelineViewList _views;
123         std::shared_ptr<TimelineTimeAxisView> _time_axis_view;
124         std::shared_ptr<TimelineReelsView> _reels_view;
125         std::shared_ptr<TimelineLabelsView> _labels_view;
126         int _tracks;
127         boost::optional<double> _pixels_per_second;
128         bool _left_down;
129         wxPoint _down_point;
130         boost::optional<wxPoint> _zoom_point;
131         std::shared_ptr<TimelineContentView> _down_view;
132         dcpomatic::DCPTime _down_view_position;
133         bool _first_move;
134         ContentMenu _menu;
135         bool _snap;
136         std::list<dcpomatic::DCPTime> _start_snaps;
137         std::list<dcpomatic::DCPTime> _end_snaps;
138         Tool _tool;
139         int _x_scroll_rate;
140         int _y_scroll_rate;
141         int _pixels_per_track;
142         bool _first_resize;
143         wxTimer _timer;
144
145         static double const _minimum_pixels_per_second;
146         static int const _minimum_pixels_per_track;
147
148         boost::signals2::scoped_connection _film_changed_connection;
149         boost::signals2::scoped_connection _film_content_change_connection;
150 };