No-op; fix GPL address and use the explicit-program-name version.
[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 wxPanel
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 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 _tracks_position;
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         void set_selection (ContentList selection);
76
77 private:
78         void paint ();
79         void left_down (wxMouseEvent &);
80         void left_up (wxMouseEvent &);
81         void right_down (wxMouseEvent &);
82         void mouse_moved (wxMouseEvent &);
83         void film_changed (Film::Property);
84         void film_content_changed (int, bool frequent);
85         void resized ();
86         void assign_tracks ();
87         void set_position_from_event (wxMouseEvent &);
88         void clear_selection ();
89         void recreate_views ();
90
91         boost::shared_ptr<TimelineView> event_to_view (wxMouseEvent &);
92         TimelineContentViewList 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         TimelineViewList _views;
99         boost::shared_ptr<TimelineTimeAxisView> _time_axis_view;
100         boost::shared_ptr<TimelineReelsView> _reels_view;
101         boost::shared_ptr<TimelineLabelsView> _labels_view;
102         int _tracks;
103         boost::optional<double> _pixels_per_second;
104         bool _left_down;
105         wxPoint _down_point;
106         boost::shared_ptr<TimelineContentView> _down_view;
107         DCPTime _down_view_position;
108         bool _first_move;
109         ContentMenu _menu;
110         bool _snap;
111         std::list<DCPTime> _start_snaps;
112         std::list<DCPTime> _end_snaps;
113         Position<int> _tracks_position;
114
115         boost::signals2::scoped_connection _film_changed_connection;
116         boost::signals2::scoped_connection _film_content_changed_connection;
117 };