Front-end to set up referencing of DCPs.
[dcpomatic.git] / src / wx / video_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 /** @file  src/lib/video_panel.h
21  *  @brief VideoPanel class.
22  */
23
24 #include "content_sub_panel.h"
25 #include "content_widget.h"
26 #include "timecode.h"
27 #include "lib/video_content_scale.h"
28 #include "lib/film.h"
29
30 class wxChoice;
31 class wxStaticText;
32 class wxSpinCtrl;
33 class wxButton;
34
35 /** @class VideoPanel
36  *  @brief The video tab of the film editor.
37  */
38 class VideoPanel : public ContentSubPanel
39 {
40 public:
41         VideoPanel (ContentPanel *);
42
43         void film_changed (Film::Property);
44         void film_content_changed (int);
45         void content_selection_changed ();
46
47 private:
48         void reference_clicked ();
49         void edit_filters_clicked ();
50         void colour_conversion_changed ();
51         void edit_colour_conversion_clicked ();
52         void fade_in_changed ();
53         void fade_out_changed ();
54
55         void setup_description ();
56         void setup_sensitivity ();
57
58         wxCheckBox* _reference;
59         ContentChoice<VideoContent, VideoFrameType>*    _frame_type;
60         ContentSpinCtrl<VideoContent>*                  _left_crop;
61         ContentSpinCtrl<VideoContent>*                  _right_crop;
62         ContentSpinCtrl<VideoContent>*                  _top_crop;
63         ContentSpinCtrl<VideoContent>*                  _bottom_crop;
64         Timecode<ContentTime>*                          _fade_in;
65         Timecode<ContentTime>*                          _fade_out;
66         ContentChoice<VideoContent, VideoContentScale>* _scale;
67         wxStaticText* _description;
68         wxStaticText* _filters;
69         wxButton* _filters_button;
70         wxChoice* _colour_conversion;
71         wxButton* _edit_colour_conversion_button;
72 };