Tweak crop layout.
[dcpomatic.git] / src / wx / video_panel.h
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/video_panel.h
22  *  @brief VideoPanel class.
23  */
24
25 #include "content_sub_panel.h"
26 #include "content_widget.h"
27 #include "timecode.h"
28 #include "lib/video_content_scale.h"
29 #include "lib/film.h"
30 #include "lib/config.h"
31
32 class wxChoice;
33 class wxStaticText;
34 class wxSpinCtrl;
35 class wxButton;
36
37 /** @class VideoPanel
38  *  @brief The video tab of the film editor.
39  */
40 class VideoPanel : public ContentSubPanel
41 {
42 public:
43         explicit VideoPanel (ContentPanel *);
44
45         void film_changed (Film::Property);
46         void film_content_changed (int);
47         void content_selection_changed ();
48
49 private:
50         void reference_clicked ();
51         void edit_filters_clicked ();
52         void colour_conversion_changed ();
53         void edit_colour_conversion_clicked ();
54         void fade_in_changed ();
55         void fade_out_changed ();
56         void add_to_grid ();
57         void config_changed (Config::Property p);
58
59         void setup_description ();
60         void setup_sensitivity ();
61
62         wxGridBagSizer* _grid;
63         wxCheckBox* _reference;
64         wxStaticText* _reference_note;
65         wxStaticText* _type_label;
66         ContentChoice<VideoContent, VideoFrameType>* _frame_type;
67         wxStaticText* _left_crop_label;
68         ContentSpinCtrl<VideoContent>* _left_crop;
69         wxStaticText* _right_crop_label;
70         ContentSpinCtrl<VideoContent>* _right_crop;
71         wxStaticText* _top_crop_label;
72         ContentSpinCtrl<VideoContent>* _top_crop;
73         wxStaticText* _bottom_crop_label;
74         ContentSpinCtrl<VideoContent>* _bottom_crop;
75         wxStaticText* _fade_in_label;
76         Timecode<ContentTime>* _fade_in;
77         wxStaticText* _fade_out_label;
78         Timecode<ContentTime>* _fade_out;
79         wxStaticText* _scale_to_label;
80         ContentChoice<VideoContent, VideoContentScale>* _scale;
81         wxStaticText* _description;
82         wxStaticText* _filters_label;
83         wxStaticText* _filters;
84         wxButton* _filters_button;
85         wxStaticText* _colour_conversion_label;
86         wxChoice* _colour_conversion;
87         wxButton* _edit_colour_conversion_button;
88 };