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