Change video content scaling so that it either:
[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/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         explicit 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 use_clicked ();
49         void reference_clicked ();
50         void edit_filters_clicked ();
51         void colour_conversion_changed ();
52         void edit_colour_conversion_clicked ();
53         void range_changed ();
54         void fade_in_changed ();
55         void fade_out_changed ();
56         void add_to_grid ();
57         void scale_fit_clicked ();
58         void scale_custom_clicked ();
59         bool scale_custom_edit_clicked ();
60
61         void setup_description ();
62         void setup_sensitivity ();
63
64         wxCheckBox* _reference;
65         wxStaticText* _reference_note;
66         wxCheckBox* _use;
67         wxStaticText* _type_label;
68         ContentChoice<VideoContent, VideoFrameType>* _frame_type;
69         wxStaticText* _crop_label;
70         wxStaticText* _left_crop_label;
71         ContentSpinCtrl<VideoContent>* _left_crop;
72         wxStaticText* _right_crop_label;
73         ContentSpinCtrl<VideoContent>* _right_crop;
74         wxStaticText* _top_crop_label;
75         ContentSpinCtrl<VideoContent>* _top_crop;
76         wxStaticText* _bottom_crop_label;
77         ContentSpinCtrl<VideoContent>* _bottom_crop;
78         wxStaticText* _fade_in_label;
79         Timecode<dcpomatic::ContentTime>* _fade_in;
80         wxStaticText* _fade_out_label;
81         Timecode<dcpomatic::ContentTime>* _fade_out;
82         wxStaticText* _scale_label;
83         wxRadioButton* _scale_fit;
84         wxRadioButton* _scale_custom;
85         wxButton* _scale_custom_edit;
86         wxStaticText* _description;
87         wxStaticText* _filters_label;
88         wxStaticText* _filters;
89         wxButton* _filters_button;
90         wxStaticText* _colour_conversion_label;
91         wxChoice* _colour_conversion;
92         wxButton* _edit_colour_conversion_button;
93         wxStaticText* _range_label;
94         wxChoice* _range;
95 };