Add basics of colourspace conversion bypass (#266).
[dcpomatic.git] / src / wx / video_panel.h
1 /*
2     Copyright (C) 2012-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 "lib/film.h"
21 #include "film_editor_panel.h"
22 #include "content_widget.h"
23
24 class wxChoice;
25 class wxStaticText;
26 class wxSpinCtrl;
27 class wxButton;
28
29 class VideoPanel : public FilmEditorPanel
30 {
31 public:
32         VideoPanel (FilmEditor *);
33
34         void film_changed (Film::Property);
35         void film_content_changed (int);
36         void content_selection_changed ();
37
38 private:
39         void edit_filters_clicked ();
40         void enable_colour_conversion_clicked ();
41         void edit_colour_conversion_clicked ();
42
43         void setup_description ();
44
45         ContentChoice<VideoContent, VideoFrameType>*    _frame_type;
46         ContentSpinCtrl<VideoContent>*                  _left_crop;
47         ContentSpinCtrl<VideoContent>*                  _right_crop;
48         ContentSpinCtrl<VideoContent>*                  _top_crop;
49         ContentSpinCtrl<VideoContent>*                  _bottom_crop;
50         ContentChoice<VideoContent, VideoContentScale>* _scale;
51         wxStaticText* _description;
52         wxStaticText* _filters;
53         wxButton* _filters_button;
54         wxCheckBox* _enable_colour_conversion;
55         wxStaticText* _colour_conversion;
56         wxButton* _colour_conversion_button;
57 };