Allow repeat of multiple stuff.
[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
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 left_up (wxMouseEvent &);
68         void right_down (wxMouseEvent &);
69         void mouse_moved (wxMouseEvent &);
70         void playlist_changed ();
71         void setup_pixels_per_time_unit ();
72         void resized (wxSizeEvent &);
73         void assign_tracks ();
74         void set_start_from_event (wxMouseEvent &);
75         void clear_selection ();
76         void repeat (wxCommandEvent &);
77
78         boost::shared_ptr<View> event_to_view (wxMouseEvent &);
79         std::list<boost::shared_ptr<ContentView> > selected () const;
80
81         FilmEditor* _film_editor;
82         boost::weak_ptr<Film> _film;
83         std::list<boost::shared_ptr<View> > _views;
84         boost::shared_ptr<TimeAxisView> _time_axis_view;
85         int _tracks;
86         double _pixels_per_time_unit;
87         bool _left_down;
88         wxPoint _down_point;
89         boost::shared_ptr<ContentView> _down_view;
90         Time _down_view_start;
91         bool _first_move;
92         wxMenu* _menu;
93
94         boost::signals2::scoped_connection _playlist_connection;
95 };