Merge 1.0 in.
[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 private:
68         void paint ();
69         void left_down (wxMouseEvent &);
70         void left_up (wxMouseEvent &);
71         void right_down (wxMouseEvent &);
72         void mouse_moved (wxMouseEvent &);
73         void playlist_changed ();
74         void resized ();
75         void assign_tracks ();
76         void set_position_from_event (wxMouseEvent &);
77         void clear_selection ();
78
79         typedef std::vector<boost::shared_ptr<View> > ViewList;
80         typedef std::vector<boost::shared_ptr<ContentView> > ContentViewList;
81
82         boost::shared_ptr<View> event_to_view (wxMouseEvent &);
83         ContentViewList selected_views () const;
84         ContentList selected_content () const;
85
86         FilmEditor* _film_editor;
87         boost::weak_ptr<Film> _film;
88         ViewList _views;
89         boost::shared_ptr<TimeAxisView> _time_axis_view;
90         int _tracks;
91         double _pixels_per_time_unit;
92         bool _left_down;
93         wxPoint _down_point;
94         boost::shared_ptr<ContentView> _down_view;
95         Time _down_view_position;
96         bool _first_move;
97         ContentMenu _menu;
98
99         boost::signals2::scoped_connection _playlist_connection;
100 };