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