Hand-apply 39e9f0794349f44caf440db9568b8b15eb900381 from master; snap improvements...
[dcpomatic.git] / src / wx / timeline.h
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/shared_ptr.hpp>
21 #include <boost/weak_ptr.hpp>
22 #include <boost/signals2.hpp>
23 #include <wx/wx.h>
24 #include "lib/util.h"
25 #include "lib/rect.h"
26 #include "content_menu.h"
27
28 class Film;
29 class View;
30 class ContentView;
31 class ContentPanel;
32 class TimeAxisView;
33
34 class Timeline : public wxPanel
35 {
36 public:
37         Timeline (wxWindow *, ContentPanel *, boost::shared_ptr<Film>);
38
39         boost::shared_ptr<const Film> film () const;
40
41         void force_redraw (dcpomatic::Rect<int> const &);
42
43         int x_offset () const {
44                 return 8;
45         }
46
47         int width () const {
48                 return GetSize().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 Position<int> (8, 8);
61         }
62
63         int tracks () const;
64
65         void setup_pixels_per_second ();
66
67         void set_snap (bool s) {
68                 _snap = s;
69         }
70
71         bool snap () const {
72                 return _snap;
73         }
74
75 private:
76         void paint ();
77         void left_down (wxMouseEvent &);
78         void left_up (wxMouseEvent &);
79         void right_down (wxMouseEvent &);
80         void mouse_moved (wxMouseEvent &);
81         void playlist_changed ();
82         void playlist_content_changed (int);
83         void resized ();
84         void assign_tracks ();
85         void set_position_from_event (wxMouseEvent &);
86         void clear_selection ();
87
88         typedef std::vector<boost::shared_ptr<View> > ViewList;
89         typedef std::vector<boost::shared_ptr<ContentView> > ContentViewList;
90
91         boost::shared_ptr<View> event_to_view (wxMouseEvent &);
92         ContentViewList selected_views () const;
93         ContentList selected_content () const;
94         void maybe_snap (DCPTime a, DCPTime b, boost::optional<DCPTime>& nearest_distance) const;
95
96         ContentPanel* _content_panel;
97         boost::weak_ptr<Film> _film;
98         ViewList _views;
99         boost::shared_ptr<TimeAxisView> _time_axis_view;
100         int _tracks;
101         boost::optional<double> _pixels_per_second;
102         bool _left_down;
103         wxPoint _down_point;
104         boost::shared_ptr<ContentView> _down_view;
105         DCPTime _down_view_position;
106         bool _first_move;
107         ContentMenu _menu;
108         bool _snap;
109
110         boost::signals2::scoped_connection _playlist_changed_connection;
111         boost::signals2::scoped_connection _playlist_content_changed_connection;
112 };