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