Make show audio work on the whole DCP, not individual content.
[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
80         wxPanel* make_general_panel ();
81         wxPanel* make_video_panel ();
82         wxPanel* make_audio_panel ();
83
84         void config_changed ();
85
86         wxPanel* _panel;
87         wxNotebook* _notebook;
88         wxBoxSizer* _sizer;
89
90         wxTextCtrl* _name;
91         wxStaticText* _dcp_name;
92         wxCheckBox* _use_isdcf_name;
93         wxChoice* _container;
94         wxStaticText* _container_size;
95         wxButton* _edit_isdcf_button;
96         wxButton* _copy_isdcf_name_button;
97         wxSpinCtrl* _j2k_bandwidth;
98         wxChoice* _dcp_content_type;
99         wxChoice* _frame_rate_choice;
100         wxSpinCtrl* _frame_rate_spin;
101         wxSizer* _frame_rate_sizer;
102         wxChoice* _audio_channels;
103         wxChoice* _audio_processor;
104         wxButton* _show_audio;
105         wxButton* _best_frame_rate;
106         wxCheckBox* _three_d;
107         wxChoice* _resolution;
108         wxChoice* _standard;
109         wxCheckBox* _signed;
110         wxCheckBox* _burn_subtitles;
111         wxCheckBox* _encrypted;
112         wxStaticText* _key;
113         wxButton* _edit_key;
114
115         AudioDialog* _audio_dialog;
116
117         boost::shared_ptr<Film> _film;
118         bool _generally_sensitive;
119 };