e300e4975cf32b698dca2a1b2b452b9d164070d2
[dcpomatic.git] / src / wx / timing_panel.h
1 /*
2     Copyright (C) 2012-2015 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 "content_sub_panel.h"
21 #include "timecode.h"
22
23 class FilmViewer;
24
25 class TimingPanel : public ContentSubPanel
26 {
27 public:
28         TimingPanel (ContentPanel *, FilmViewer* viewer);
29
30         void film_changed (Film::Property);
31         void film_content_changed (int);
32         void content_selection_changed ();
33         
34 private:
35         void position_changed ();
36         void full_length_changed ();
37         void trim_start_changed ();
38         void trim_start_to_playhead_clicked ();
39         void trim_end_changed ();
40         void trim_end_to_playhead_clicked ();
41         void play_length_changed ();
42         void video_frame_rate_changed ();
43         void set_video_frame_rate ();
44         void update_full_length ();
45         void update_play_length ();
46
47         FilmViewer* _viewer;
48         
49         Timecode<DCPTime>* _position;
50         Timecode<DCPTime>* _full_length;
51         Timecode<DCPTime>* _trim_start;
52         wxButton* _trim_start_to_playhead;
53         wxButton* _trim_end_to_playhead;
54         Timecode<DCPTime>* _trim_end;
55         Timecode<DCPTime>* _play_length;
56         wxTextCtrl* _video_frame_rate;
57         wxButton* _set_video_frame_rate;
58 };