C++11 tidying.
[dcpomatic.git] / src / wx / dcp_panel.h
1 /*
2     Copyright (C) 2012-2021 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
22 #include "lib/config.h"
23 #include "lib/film.h"
24
25
26 class Button;
27 class wxNotebook;
28 class wxPanel;
29 class wxBoxSizer;
30 class wxTextCtrl;
31 class wxStaticText;
32 class wxCheckBox;
33 class wxChoice;
34 class wxButton;
35 class wxSpinCtrl;
36 class wxSizer;
37 class wxGridBagSizer;
38
39 class AudioDialog;
40 class MarkersDialog;
41 class InteropMetadataDialog;
42 class SMPTEMetadataDialog;
43 class Film;
44 class FilmViewer;
45 class Ratio;
46
47
48 class DCPPanel
49 {
50 public:
51         DCPPanel (wxNotebook *, std::shared_ptr<Film>, std::weak_ptr<FilmViewer> viewer);
52
53         DCPPanel (DCPPanel const&) = delete;
54         DCPPanel& operator= (DCPPanel const&) = delete;
55
56         void set_film (std::shared_ptr<Film>);
57         void set_general_sensitivity (bool);
58
59         void film_changed (Film::Property);
60         void film_content_changed (int);
61
62         wxPanel* panel () const {
63                 return _panel;
64         }
65
66 private:
67         void name_changed ();
68         void use_isdcf_name_toggled ();
69         void copy_isdcf_name_button_clicked ();
70         void container_changed ();
71         void dcp_content_type_changed ();
72         void j2k_bandwidth_changed ();
73         void frame_rate_choice_changed ();
74         void frame_rate_spin_changed ();
75         void best_frame_rate_clicked ();
76         void content_timeline_clicked ();
77         void audio_channels_changed ();
78         void resolution_changed ();
79         void three_d_changed ();
80         void standard_changed ();
81         void encrypted_toggled ();
82         void audio_processor_changed ();
83         void show_audio_clicked ();
84         void reel_type_changed ();
85         void reel_length_changed ();
86         void markers_clicked ();
87         void metadata_clicked ();
88         void reencode_j2k_changed ();
89         void enable_audio_language_toggled ();
90         void edit_audio_language_clicked ();
91
92         void setup_frame_rate_widget ();
93         void setup_container ();
94         void setup_dcp_name ();
95         void add_to_grid ();
96         void add_video_panel_to_grid ();
97         void add_audio_panel_to_grid ();
98         void add_audio_processors ();
99
100         int minimum_allowed_audio_channels () const;
101
102         wxPanel* make_general_panel ();
103         wxPanel* make_video_panel ();
104         wxPanel* make_audio_panel ();
105
106         void config_changed (Config::Property p);
107
108         void setup_sensitivity ();
109
110         wxPanel* _panel;
111         wxNotebook* _notebook;
112         wxBoxSizer* _sizer;
113         wxGridBagSizer* _grid;
114         wxGridBagSizer* _video_grid;
115         wxGridBagSizer* _audio_grid;
116
117         wxStaticText* _name_label;
118         wxTextCtrl* _name;
119         wxStaticText* _dcp_name;
120         wxCheckBox* _use_isdcf_name;
121         wxCheckBox* _enable_audio_language = nullptr;
122         wxStaticText* _audio_language = nullptr;
123         Button* _edit_audio_language = nullptr;
124         wxStaticText* _container_label;
125         wxChoice* _container;
126         wxStaticText* _container_size;
127         wxButton* _copy_isdcf_name_button;
128         wxStaticText* _j2k_bandwidth_label;
129         wxStaticText* _mbits_label;
130         wxSpinCtrl* _j2k_bandwidth;
131         wxStaticText* _dcp_content_type_label;
132         wxChoice* _dcp_content_type;
133         wxStaticText* _frame_rate_label;
134         wxChoice* _frame_rate_choice;
135         wxSpinCtrl* _frame_rate_spin;
136         wxSizer* _frame_rate_sizer;
137         wxStaticText* _channels_label;
138         wxChoice* _audio_channels;
139         wxStaticText* _processor_label;
140         wxChoice* _audio_processor;
141         wxButton* _show_audio;
142         wxButton* _best_frame_rate;
143         wxCheckBox* _three_d;
144         wxCheckBox* _reencode_j2k;
145         wxStaticText* _resolution_label;
146         wxChoice* _resolution;
147         wxStaticText* _standard_label;
148         wxChoice* _standard;
149         wxCheckBox* _encrypted;
150         wxStaticText* _reels_label;
151         wxChoice* _reel_type;
152         wxStaticText* _reel_length_label;
153         wxStaticText* _reel_length_gb_label;
154         wxSpinCtrl* _reel_length;
155         wxButton* _markers;
156         wxButton* _metadata;
157         wxSizer* _audio_panel_sizer;
158
159         AudioDialog* _audio_dialog = nullptr;
160         MarkersDialog* _markers_dialog = nullptr;
161         InteropMetadataDialog* _interop_metadata_dialog = nullptr;
162         SMPTEMetadataDialog* _smpte_metadata_dialog = nullptr;
163
164         std::shared_ptr<Film> _film;
165         std::weak_ptr<FilmViewer> _viewer;
166         bool _generally_sensitive;
167 };