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