Final tweaks and removal of Film::playlist().
[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 "content_menu.h"
21 #include "timeline_content_view.h"
22 #include "lib/util.h"
23 #include "lib/rect.h"
24 #include "lib/film.h"
25 #include <wx/wx.h>
26 #include <boost/shared_ptr.hpp>
27 #include <boost/weak_ptr.hpp>
28 #include <boost/signals2.hpp>
29
30 class Film;
31 class ContentPanel;
32 class TimelineView;
33 class TimelineTimeAxisView;
34
35 class Timeline : public wxPanel
36 {
37 public:
38         Timeline (wxWindow *, ContentPanel *, boost::shared_ptr<Film>);
39
40         boost::shared_ptr<const Film> film () const;
41
42         void force_redraw (dcpomatic::Rect<int> const &);
43
44         int x_offset () const {
45                 return 8;
46         }
47
48         int width () const {
49                 return GetSize().GetWidth ();
50         }
51
52         int track_height () const {
53                 return 48;
54         }
55
56         boost::optional<double> pixels_per_second () const {
57                 return _pixels_per_second;
58         }
59
60         Position<int> tracks_position () const {
61                 return Position<int> (8, 8);
62         }
63
64         int tracks () const;
65
66         void setup_pixels_per_second ();
67
68         void set_snap (bool s) {
69                 _snap = s;
70         }
71
72         bool snap () const {
73                 return _snap;
74         }
75
76 private:
77         void paint ();
78         void left_down (wxMouseEvent &);
79         void left_up (wxMouseEvent &);
80         void right_down (wxMouseEvent &);
81         void mouse_moved (wxMouseEvent &);
82         void film_changed (Film::Property);
83         void film_content_changed (int);
84         void resized ();
85         void assign_tracks ();
86         void set_position_from_event (wxMouseEvent &);
87         void clear_selection ();
88         void recreate_views ();
89
90         boost::shared_ptr<TimelineView> event_to_view (wxMouseEvent &);
91         TimelineContentViewList selected_views () const;
92         ContentList selected_content () const;
93         void maybe_snap (DCPTime a, DCPTime b, boost::optional<DCPTime>& nearest_distance) const;
94
95         ContentPanel* _content_panel;
96         boost::weak_ptr<Film> _film;
97         TimelineViewList _views;
98         boost::shared_ptr<TimelineTimeAxisView> _time_axis_view;
99         int _tracks;
100         boost::optional<double> _pixels_per_second;
101         bool _left_down;
102         wxPoint _down_point;
103         boost::shared_ptr<TimelineContentView> _down_view;
104         DCPTime _down_view_position;
105         bool _first_move;
106         ContentMenu _menu;
107         bool _snap;
108
109         boost::signals2::scoped_connection _film_changed_connection;
110         boost::signals2::scoped_connection _film_content_changed_connection;
111 };