Make player decide whether subtitles should be burnt based on
[dcpomatic.git] / src / wx / dcp_panel.h
1 /*
2     Copyright (C) 2012-2014 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 <boost/shared_ptr.hpp>
21 #include <boost/noncopyable.hpp>
22
23 class wxNotebook;
24 class wxPanel;
25 class wxBoxSizer;
26 class wxTextCtrl;
27 class wxStaticText;
28 class wxCheckBox;
29 class wxChoice;
30 class wxButton;
31 class wxSpinCtrl;
32 class wxSizer;
33
34 class AudioDialog;
35
36 class Film;
37
38 class DCPPanel : public boost::noncopyable
39 {
40 public:
41         DCPPanel (wxNotebook *, boost::shared_ptr<Film>);
42
43         void set_film (boost::shared_ptr<Film>);
44         void set_general_sensitivity (bool);
45
46         void film_changed (int);
47         void film_content_changed (int);
48
49         wxPanel* panel () const {
50                 return _panel;
51         }
52
53 private:
54         void name_changed ();
55         void use_isdcf_name_toggled ();
56         void edit_isdcf_button_clicked ();
57         void copy_isdcf_name_button_clicked ();
58         void container_changed ();
59         void dcp_content_type_changed ();
60         void j2k_bandwidth_changed ();
61         void frame_rate_choice_changed ();
62         void frame_rate_spin_changed ();
63         void best_frame_rate_clicked ();
64         void content_timeline_clicked ();
65         void audio_channels_changed ();
66         void resolution_changed ();
67         void three_d_changed ();
68         void standard_changed ();
69         void signed_toggled ();
70         void encrypted_toggled ();
71         void edit_key_clicked ();
72         void audio_processor_changed ();
73         void show_audio_clicked ();
74
75         void setup_frame_rate_widget ();
76         void setup_container ();
77         void setup_dcp_name ();
78         void setup_audio_channels_choice ();
79
80         int minimum_allowed_audio_channels () const;
81
82         wxPanel* make_general_panel ();
83         wxPanel* make_video_panel ();
84         wxPanel* make_audio_panel ();
85
86         void config_changed ();
87
88         wxPanel* _panel;
89         wxNotebook* _notebook;
90         wxBoxSizer* _sizer;
91
92         wxTextCtrl* _name;
93         wxStaticText* _dcp_name;
94         wxCheckBox* _use_isdcf_name;
95         wxChoice* _container;
96         wxStaticText* _container_size;
97         wxButton* _edit_isdcf_button;
98         wxButton* _copy_isdcf_name_button;
99         wxSpinCtrl* _j2k_bandwidth;
100         wxChoice* _dcp_content_type;
101         wxChoice* _frame_rate_choice;
102         wxSpinCtrl* _frame_rate_spin;
103         wxSizer* _frame_rate_sizer;
104         wxChoice* _audio_channels;
105         wxChoice* _audio_processor;
106         wxButton* _show_audio;
107         wxButton* _best_frame_rate;
108         wxCheckBox* _three_d;
109         wxChoice* _resolution;
110         wxChoice* _standard;
111         wxCheckBox* _signed;
112         wxCheckBox* _encrypted;
113         wxStaticText* _key;
114         wxButton* _edit_key;
115
116         AudioDialog* _audio_dialog;
117
118         boost::shared_ptr<Film> _film;
119         bool _generally_sensitive;
120 };