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