Basic zoom.
[dcpomatic.git] / src / wx / timeline.h
1 /*
2     Copyright (C) 2013-2015 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 wxScrolledCanvas
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                 return GetVirtualSize().GetWidth ();
49         }
50
51         int track_height () const {
52                 return 48;
53         }
54
55         boost::optional<double> pixels_per_second () const {
56                 return _pixels_per_second;
57         }
58
59         Position<int> tracks_position () const {
60                 return _tracks_position;
61         }
62
63         int tracks () const;
64
65         void set_snap (bool s) {
66                 _snap = s;
67         }
68
69         bool snap () const {
70                 return _snap;
71         }
72
73         void set_selection (ContentList selection);
74
75         enum Tool {
76                 SELECT,
77                 ZOOM
78         };
79
80         void set_tool (Tool t) {
81                 _tool = t;
82         }
83
84 private:
85         void paint ();
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_changed (Film::Property);
97         void film_content_changed (int, bool frequent);
98         void resized ();
99         void assign_tracks ();
100         void set_position_from_event (wxMouseEvent &);
101         void clear_selection ();
102         void recreate_views ();
103         void setup_scrollbars ();
104
105         boost::shared_ptr<TimelineView> event_to_view (wxMouseEvent &);
106         TimelineContentViewList selected_views () const;
107         ContentList selected_content () const;
108         void maybe_snap (DCPTime a, DCPTime b, boost::optional<DCPTime>& nearest_distance) const;
109
110         ContentPanel* _content_panel;
111         boost::weak_ptr<Film> _film;
112         TimelineViewList _views;
113         boost::shared_ptr<TimelineTimeAxisView> _time_axis_view;
114         boost::shared_ptr<TimelineReelsView> _reels_view;
115         boost::shared_ptr<TimelineLabelsView> _labels_view;
116         int _tracks;
117         boost::optional<double> _pixels_per_second;
118         bool _left_down;
119         wxPoint _down_point;
120         boost::optional<wxPoint> _zoom_point;
121         boost::shared_ptr<TimelineContentView> _down_view;
122         DCPTime _down_view_position;
123         bool _first_move;
124         ContentMenu _menu;
125         bool _snap;
126         std::list<DCPTime> _start_snaps;
127         std::list<DCPTime> _end_snaps;
128         Position<int> _tracks_position;
129         Tool _tool;
130         int _x_scroll_rate;
131         int _y_scroll_rate;
132
133         boost::signals2::scoped_connection _film_changed_connection;
134         boost::signals2::scoped_connection _film_content_changed_connection;
135 };