Basics of timeline track labels.
[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 class TimelineReelsView;
35 class TimelineLabelsView;
36
37 class Timeline : public wxPanel
38 {
39 public:
40         Timeline (wxWindow *, ContentPanel *, boost::shared_ptr<Film>);
41
42         boost::shared_ptr<const Film> film () const;
43
44         void force_redraw (dcpomatic::Rect<int> const &);
45
46         int width () const {
47                 return GetSize().GetWidth ();
48         }
49
50         int track_height () const {
51                 return 48;
52         }
53
54         boost::optional<double> pixels_per_second () const {
55                 return _pixels_per_second;
56         }
57
58         Position<int> tracks_position () const {
59                 return _tracks_position;
60         }
61
62         int tracks () const;
63
64         void setup_pixels_per_second ();
65
66         void set_snap (bool s) {
67                 _snap = s;
68         }
69
70         bool snap () const {
71                 return _snap;
72         }
73
74         void set_selection (ContentList selection);
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, bool frequent);
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         boost::shared_ptr<TimelineReelsView> _reels_view;
100         boost::shared_ptr<TimelineLabelsView> _labels_view;
101         int _tracks;
102         boost::optional<double> _pixels_per_second;
103         bool _left_down;
104         wxPoint _down_point;
105         boost::shared_ptr<TimelineContentView> _down_view;
106         DCPTime _down_view_position;
107         bool _first_move;
108         ContentMenu _menu;
109         bool _snap;
110         std::list<DCPTime> _start_snaps;
111         std::list<DCPTime> _end_snaps;
112         Position<int> _tracks_position;
113
114         boost::signals2::scoped_connection _film_changed_connection;
115         boost::signals2::scoped_connection _film_content_changed_connection;
116 };