Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
[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 "util.h"
25 #include "rect.h"
26
27 class Film;
28 class View;
29 class ContentView;
30 class FilmEditor;
31 class TimeAxisView;
32
33 class Timeline : public wxPanel
34 {
35 public:
36         Timeline (wxWindow *, FilmEditor *, boost::shared_ptr<Film>);
37
38         boost::shared_ptr<const Film> film () const;
39
40         void force_redraw (dcpomatic::Rect<int> const &);
41
42         int x_offset () const {
43                 return 8;
44         }
45
46         int width () const {
47                 return GetSize().GetWidth ();
48         }
49
50         int track_height () const {
51                 return 48;
52         }
53
54         double pixels_per_time_unit () const {
55                 return _pixels_per_time_unit;
56         }
57
58         Position<int> tracks_position () const {
59                 return Position<int> (8, 8);
60         }
61
62         int tracks () const;
63
64 private:
65         void paint (wxPaintEvent &);
66         void left_down (wxMouseEvent &);
67         void mouse_moved (wxMouseEvent &);
68         void left_up (wxMouseEvent &);
69         void playlist_changed ();
70         void setup_pixels_per_time_unit ();
71         void resized (wxSizeEvent &);
72         void assign_tracks ();
73
74         FilmEditor* _film_editor;
75         boost::weak_ptr<Film> _film;
76         std::list<boost::shared_ptr<View> > _views;
77         boost::shared_ptr<TimeAxisView> _time_axis_view;
78         int _tracks;
79         double _pixels_per_time_unit;
80         bool _left_down;
81         wxPoint _down_point;
82         boost::shared_ptr<ContentView> _down_view;
83         Time _down_view_start;
84         bool _first_move;
85
86         boost::signals2::scoped_connection _playlist_connection;
87 };