Merge branch 'prefs' of ssh://carlh.dyndns.org/home/carl/git/dcpomatic into prefs
[dcpomatic.git] / src / wx / timeline.h
1 /*
2     Copyright (C) 2013 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 FilmEditor;
32 class TimeAxisView;
33
34 class Timeline : public wxPanel
35 {
36 public:
37         Timeline (wxWindow *, FilmEditor *, 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         double pixels_per_time_unit () const {
56                 return _pixels_per_time_unit;
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_time_unit ();
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 resized ();
83         void assign_tracks ();
84         void set_position_from_event (wxMouseEvent &);
85         void clear_selection ();
86
87         typedef std::vector<boost::shared_ptr<View> > ViewList;
88         typedef std::vector<boost::shared_ptr<ContentView> > ContentViewList;
89
90         boost::shared_ptr<View> event_to_view (wxMouseEvent &);
91         ContentViewList selected_views () const;
92         ContentList selected_content () const;
93
94         FilmEditor* _film_editor;
95         boost::weak_ptr<Film> _film;
96         ViewList _views;
97         boost::shared_ptr<TimeAxisView> _time_axis_view;
98         int _tracks;
99         double _pixels_per_time_unit;
100         bool _left_down;
101         wxPoint _down_point;
102         boost::shared_ptr<ContentView> _down_view;
103         Time _down_view_position;
104         bool _first_move;
105         ContentMenu _menu;
106         bool _snap;
107
108         boost::signals2::scoped_connection _playlist_connection;
109 };