Modify previous commit to move restriction code into the UI.
[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 burn_subtitles_toggled ();
71         void encrypted_toggled ();
72         void edit_key_clicked ();
73         void audio_processor_changed ();
74         void show_audio_clicked ();
75         
76         void setup_frame_rate_widget ();
77         void setup_container ();
78         void setup_dcp_name ();
79         void setup_audio_channels_choice ();
80
81         int minimum_allowed_audio_channels () const;
82
83         wxPanel* make_general_panel ();
84         wxPanel* make_video_panel ();
85         wxPanel* make_audio_panel ();
86
87         void config_changed ();
88
89         wxPanel* _panel;
90         wxNotebook* _notebook;
91         wxBoxSizer* _sizer;
92
93         wxTextCtrl* _name;
94         wxStaticText* _dcp_name;
95         wxCheckBox* _use_isdcf_name;
96         wxChoice* _container;
97         wxStaticText* _container_size;
98         wxButton* _edit_isdcf_button;
99         wxButton* _copy_isdcf_name_button;
100         wxSpinCtrl* _j2k_bandwidth;
101         wxChoice* _dcp_content_type;
102         wxChoice* _frame_rate_choice;
103         wxSpinCtrl* _frame_rate_spin;
104         wxSizer* _frame_rate_sizer;
105         wxChoice* _audio_channels;
106         wxChoice* _audio_processor;
107         wxButton* _show_audio;
108         wxButton* _best_frame_rate;
109         wxCheckBox* _three_d;
110         wxChoice* _resolution;
111         wxChoice* _standard;
112         wxCheckBox* _signed;
113         wxCheckBox* _burn_subtitles;
114         wxCheckBox* _encrypted;
115         wxStaticText* _key;
116         wxButton* _edit_key;
117
118         AudioDialog* _audio_dialog;
119
120         boost::shared_ptr<Film> _film;
121         bool _generally_sensitive;
122 };