Disable warnings around all wx includes.
[dcpomatic.git] / src / wx / dcp_panel.cc
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 "audio_dialog.h"
23 #include "check_box.h"
24 #include "check_box.h"
25 #include "dcp_panel.h"
26 #include "dcpomatic_button.h"
27 #include "dcpomatic_spin_ctrl.h"
28 #include "focus_manager.h"
29 #include "interop_metadata_dialog.h"
30 #include "language_tag_dialog.h"
31 #include "markers_dialog.h"
32 #include "smpte_metadata_dialog.h"
33 #include "static_text.h"
34 #include "wx_util.h"
35 #include "lib/audio_content.h"
36 #include "lib/audio_processor.h"
37 #include "lib/config.h"
38 #include "lib/dcp_content.h"
39 #include "lib/dcp_content_type.h"
40 #include "lib/ffmpeg_content.h"
41 #include "lib/film.h"
42 #include "lib/ratio.h"
43 #include "lib/text_content.h"
44 #include "lib/util.h"
45 #include "lib/video_content.h"
46 #include "lib/warnings.h"
47 #include <dcp/locale_convert.h>
48 DCPOMATIC_DISABLE_WARNINGS
49 #include <wx/gbsizer.h>
50 #include <wx/notebook.h>
51 #include <wx/spinctrl.h>
52 #include <wx/wx.h>
53 DCPOMATIC_ENABLE_WARNINGS
54 #include <boost/lexical_cast.hpp>
55
56
57 using std::list;
58 using std::make_pair;
59 using std::max;
60 using std::pair;
61 using std::shared_ptr;
62 using std::string;
63 using std::vector;
64 using std::weak_ptr;
65 using boost::lexical_cast;
66 #if BOOST_VERSION >= 106100
67 using namespace boost::placeholders;
68 #endif
69 using dcp::locale_convert;
70
71
72 DCPPanel::DCPPanel (wxNotebook* n, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
73         : _film (film)
74         , _viewer (viewer)
75         , _generally_sensitive (true)
76 {
77         _panel = new wxPanel (n);
78         _sizer = new wxBoxSizer (wxVERTICAL);
79         _panel->SetSizer (_sizer);
80
81         _grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
82         _sizer->Add (_grid, 0, wxEXPAND | wxALL, 8);
83
84         _name_label = create_label (_panel, _("Name"), true);
85         _name = new wxTextCtrl (_panel, wxID_ANY);
86         FocusManager::instance()->add(_name);
87
88         _use_isdcf_name = new CheckBox (_panel, _("Use ISDCF name"));
89         _copy_isdcf_name_button = new Button (_panel, _("Copy as name"));
90
91         /* wxST_ELLIPSIZE_MIDDLE works around a bug in GTK2 and/or wxWidgets, see
92            http://trac.wxwidgets.org/ticket/12539
93         */
94         _dcp_name = new StaticText (
95                 _panel, wxT (""), wxDefaultPosition, wxDefaultSize,
96                 wxALIGN_CENTRE_HORIZONTAL | wxST_NO_AUTORESIZE | wxST_ELLIPSIZE_MIDDLE
97                 );
98
99         _enable_audio_language = new wxCheckBox (_panel, wxID_ANY, _("Audio language"));
100         _audio_language = new wxStaticText (_panel, wxID_ANY, wxT(""));
101         _edit_audio_language = new Button (_panel, _("Edit..."));
102
103         _dcp_content_type_label = create_label (_panel, _("Content Type"), true);
104         _dcp_content_type = new wxChoice (_panel, wxID_ANY);
105
106         _encrypted = new CheckBox (_panel, _("Encrypted"));
107
108         wxClientDC dc (_panel);
109         auto size = dc.GetTextExtent (wxT ("GGGGGGGG..."));
110         size.SetHeight (-1);
111
112         _reels_label = create_label (_panel, _("Reels"), true);
113         _reel_type = new wxChoice (_panel, wxID_ANY);
114
115         _reel_length_label = create_label (_panel, _("Reel length"), true);
116         _reel_length = new SpinCtrl (_panel, DCPOMATIC_SPIN_CTRL_WIDTH);
117         _reel_length_gb_label = create_label (_panel, _("GB"), false);
118
119         _standard_label = create_label (_panel, _("Standard"), true);
120         _standard = new wxChoice (_panel, wxID_ANY);
121
122         _markers = new Button (_panel, _("Markers..."));
123         _metadata = new Button (_panel, _("Metadata..."));
124
125         _notebook = new wxNotebook (_panel, wxID_ANY);
126         _sizer->Add (_notebook, 1, wxEXPAND | wxTOP, 6);
127
128         _notebook->AddPage (make_video_panel (), _("Video"), false);
129         _notebook->AddPage (make_audio_panel (), _("Audio"), false);
130
131         _name->Bind                  (wxEVT_TEXT,     boost::bind(&DCPPanel::name_changed, this));
132         _use_isdcf_name->Bind        (wxEVT_CHECKBOX, boost::bind(&DCPPanel::use_isdcf_name_toggled, this));
133         _copy_isdcf_name_button->Bind(wxEVT_BUTTON,   boost::bind(&DCPPanel::copy_isdcf_name_button_clicked, this));
134         _dcp_content_type->Bind      (wxEVT_CHOICE,   boost::bind(&DCPPanel::dcp_content_type_changed, this));
135         _encrypted->Bind             (wxEVT_CHECKBOX, boost::bind(&DCPPanel::encrypted_toggled, this));
136         _reel_type->Bind             (wxEVT_CHOICE,   boost::bind(&DCPPanel::reel_type_changed, this));
137         _reel_length->Bind           (wxEVT_SPINCTRL, boost::bind(&DCPPanel::reel_length_changed, this));
138         _standard->Bind              (wxEVT_CHOICE,   boost::bind(&DCPPanel::standard_changed, this));
139         _markers->Bind               (wxEVT_BUTTON,   boost::bind(&DCPPanel::markers_clicked, this));
140         _metadata->Bind              (wxEVT_BUTTON,   boost::bind(&DCPPanel::metadata_clicked, this));
141         _enable_audio_language->Bind (wxEVT_CHECKBOX, boost::bind(&DCPPanel::enable_audio_language_toggled, this));
142         _edit_audio_language->Bind   (wxEVT_BUTTON,   boost::bind(&DCPPanel::edit_audio_language_clicked, this));
143
144         for (auto i: DCPContentType::all()) {
145                 _dcp_content_type->Append (std_to_wx(i->pretty_name()));
146         }
147
148         _reel_type->Append (_("Single reel"));
149         _reel_type->Append (_("Split by video content"));
150         /// TRANSLATORS: translate the word "Custom" here; do not include the "Reel|" prefix
151         _reel_type->Append (S_("Reel|Custom"));
152
153         _reel_length->SetRange (1, 64);
154
155         _standard->Append (_("SMPTE"));
156         _standard->Append (_("Interop"));
157
158         Config::instance()->Changed.connect (boost::bind(&DCPPanel::config_changed, this, _1));
159
160         add_to_grid ();
161 }
162
163 void
164 DCPPanel::add_to_grid ()
165 {
166         int r = 0;
167
168         auto name_sizer = new wxBoxSizer (wxHORIZONTAL);
169         name_sizer->Add (_name_label, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
170         name_sizer->Add (_name, 1, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
171         _grid->Add (name_sizer, wxGBPosition(r, 0), wxGBSpan(1, 2), wxRIGHT | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
172         ++r;
173
174         int flags = wxALIGN_CENTER_VERTICAL;
175 #ifdef __WXOSX__
176         flags |= wxALIGN_RIGHT;
177 #endif
178
179         _grid->Add (_use_isdcf_name, wxGBPosition(r, 0), wxDefaultSpan, flags);
180         {
181                 auto s = new wxBoxSizer (wxHORIZONTAL);
182                 s->Add (_copy_isdcf_name_button, 0, wxLEFT, DCPOMATIC_SIZER_X_GAP);
183                 _grid->Add (s, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
184         }
185         ++r;
186
187         _grid->Add (_dcp_name, wxGBPosition(r, 0), wxGBSpan(1, 2), wxALIGN_CENTER_VERTICAL | wxEXPAND);
188         ++r;
189
190         {
191                 auto s = new wxBoxSizer (wxHORIZONTAL);
192                 s->Add (_enable_audio_language, 0, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_GAP);
193                 s->Add (_audio_language, 1, wxALIGN_CENTER_VERTICAL | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
194                 s->Add (_edit_audio_language, 0, wxALIGN_CENTER_VERTICAL | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
195                 _grid->Add (s, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL);
196         }
197         ++r;
198
199         add_label_to_sizer (_grid, _dcp_content_type_label, true, wxGBPosition(r, 0));
200         _grid->Add (_dcp_content_type, wxGBPosition(r, 1));
201         ++r;
202
203         _grid->Add (_encrypted, wxGBPosition(r, 0), wxGBSpan(1, 2));
204         ++r;
205
206         add_label_to_sizer (_grid, _reels_label, true, wxGBPosition(r, 0));
207         _grid->Add (_reel_type, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
208         ++r;
209
210         add_label_to_sizer (_grid, _reel_length_label, true, wxGBPosition(r, 0));
211         {
212                 auto s = new wxBoxSizer (wxHORIZONTAL);
213                 s->Add (_reel_length);
214                 add_label_to_sizer (s, _reel_length_gb_label, false, 0, wxLEFT | wxALIGN_CENTER_VERTICAL);
215                 _grid->Add (s, wxGBPosition(r, 1));
216         }
217         ++r;
218
219         add_label_to_sizer (_grid, _standard_label, true, wxGBPosition(r, 0));
220         _grid->Add (_standard, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
221         ++r;
222
223         auto extra = new wxBoxSizer (wxHORIZONTAL);
224         extra->Add (_markers, 1, wxRIGHT, DCPOMATIC_SIZER_X_GAP);
225         extra->Add (_metadata, 1, wxRIGHT, DCPOMATIC_SIZER_X_GAP);
226         _grid->Add (extra, wxGBPosition(r, 0), wxGBSpan(1, 2));
227         ++r;
228 }
229
230
231 void
232 DCPPanel::name_changed ()
233 {
234         if (!_film) {
235                 return;
236         }
237
238         _film->set_name (string(_name->GetValue().mb_str()));
239 }
240
241
242 void
243 DCPPanel::j2k_bandwidth_changed ()
244 {
245         if (!_film) {
246                 return;
247         }
248
249         _film->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1000000);
250 }
251
252
253 void
254 DCPPanel::encrypted_toggled ()
255 {
256         if (!_film) {
257                 return;
258         }
259
260         _film->set_encrypted (_encrypted->GetValue());
261 }
262
263
264 /** Called when the frame rate choice widget has been changed */
265 void
266 DCPPanel::frame_rate_choice_changed ()
267 {
268         if (!_film) {
269                 return;
270         }
271
272         _film->set_video_frame_rate (
273                 boost::lexical_cast<int>(
274                         wx_to_std(_frame_rate_choice->GetString(_frame_rate_choice->GetSelection()))
275                         ),
276                 true
277                 );
278 }
279
280
281 /** Called when the frame rate spin widget has been changed */
282 void
283 DCPPanel::frame_rate_spin_changed ()
284 {
285         if (!_film) {
286                 return;
287         }
288
289         _film->set_video_frame_rate (_frame_rate_spin->GetValue());
290 }
291
292
293 void
294 DCPPanel::audio_channels_changed ()
295 {
296         if (!_film) {
297                 return;
298         }
299
300         _film->set_audio_channels (locale_convert<int>(string_client_data(_audio_channels->GetClientObject(_audio_channels->GetSelection()))));
301 }
302
303
304 void
305 DCPPanel::resolution_changed ()
306 {
307         if (!_film) {
308                 return;
309         }
310
311         _film->set_resolution (_resolution->GetSelection() == 0 ? Resolution::TWO_K : Resolution::FOUR_K);
312 }
313
314
315 void
316 DCPPanel::standard_changed ()
317 {
318         if (!_film) {
319                 return;
320         }
321
322         _film->set_interop (_standard->GetSelection() == 1);
323
324 }
325
326 void
327 DCPPanel::markers_clicked ()
328 {
329         if (_markers_dialog) {
330                 _markers_dialog->Destroy ();
331                 _markers_dialog = nullptr;
332         }
333
334         _markers_dialog = new MarkersDialog (_panel, _film, _viewer);
335         _markers_dialog->Show();
336 }
337
338
339 void
340 DCPPanel::metadata_clicked ()
341 {
342         if (_film->interop()) {
343                 if (_interop_metadata_dialog) {
344                         _interop_metadata_dialog->Destroy ();
345                         _interop_metadata_dialog = nullptr;
346                 }
347
348                 _interop_metadata_dialog = new InteropMetadataDialog (_panel, _film);
349                 _interop_metadata_dialog->setup ();
350                 _interop_metadata_dialog->Show ();
351         } else {
352                 if (_smpte_metadata_dialog) {
353                         _smpte_metadata_dialog->Destroy ();
354                         _smpte_metadata_dialog = nullptr;
355                 }
356
357                 _smpte_metadata_dialog = new SMPTEMetadataDialog (_panel, _film);
358                 _smpte_metadata_dialog->setup ();
359                 _smpte_metadata_dialog->Show ();
360         }
361 }
362
363
364 void
365 DCPPanel::film_changed (Film::Property p)
366 {
367         switch (p) {
368         case Film::Property::NONE:
369                 break;
370         case Film::Property::CONTAINER:
371                 setup_container ();
372                 break;
373         case Film::Property::NAME:
374                 checked_set (_name, _film->name());
375                 setup_dcp_name ();
376                 break;
377         case Film::Property::DCP_CONTENT_TYPE:
378         {
379                 auto index = DCPContentType::as_index(_film->dcp_content_type());
380                 DCPOMATIC_ASSERT (index);
381                 checked_set (_dcp_content_type, *index);
382                 setup_dcp_name ();
383                 break;
384         }
385         case Film::Property::ENCRYPTED:
386                 checked_set (_encrypted, _film->encrypted ());
387                 break;
388         case Film::Property::RESOLUTION:
389                 checked_set (_resolution, _film->resolution() == Resolution::TWO_K ? 0 : 1);
390                 setup_container ();
391                 setup_dcp_name ();
392                 break;
393         case Film::Property::J2K_BANDWIDTH:
394                 checked_set (_j2k_bandwidth, _film->j2k_bandwidth() / 1000000);
395                 break;
396         case Film::Property::USE_ISDCF_NAME:
397         {
398                 checked_set (_use_isdcf_name, _film->use_isdcf_name());
399                 if (_film->use_isdcf_name()) {
400                         /* We are going back to using an ISDCF name.  Remove anything after a _ in the current name,
401                            in case the user has clicked 'Copy as name' then re-ticked 'Use ISDCF name' (#1513).
402                         */
403                         string const name = _film->name ();
404                         string::size_type const u = name.find("_");
405                         if (u != string::npos) {
406                                 _film->set_name (name.substr(0, u));
407                         }
408                 }
409                 setup_dcp_name ();
410                 break;
411         }
412         case Film::Property::VIDEO_FRAME_RATE:
413         {
414                 bool done = false;
415                 for (unsigned int i = 0; i < _frame_rate_choice->GetCount(); ++i) {
416                         if (wx_to_std(_frame_rate_choice->GetString(i)) == boost::lexical_cast<string>(_film->video_frame_rate())) {
417                                 checked_set (_frame_rate_choice, i);
418                                 done = true;
419                                 break;
420                         }
421                 }
422
423                 if (!done) {
424                         checked_set (_frame_rate_choice, -1);
425                 }
426
427                 checked_set (_frame_rate_spin, _film->video_frame_rate ());
428
429                 _best_frame_rate->Enable (_film->best_video_frame_rate () != _film->video_frame_rate ());
430                 setup_dcp_name ();
431                 break;
432         }
433         case Film::Property::AUDIO_CHANNELS:
434                 if (_film->audio_channels() < minimum_allowed_audio_channels()) {
435                         _film->set_audio_channels (minimum_allowed_audio_channels());
436                 } else {
437                         checked_set (_audio_channels, locale_convert<string>(max(minimum_allowed_audio_channels(), _film->audio_channels())));
438                         setup_dcp_name ();
439                 }
440                 break;
441         case Film::Property::THREE_D:
442                 checked_set (_three_d, _film->three_d());
443                 setup_dcp_name ();
444                 break;
445         case Film::Property::REENCODE_J2K:
446                 checked_set (_reencode_j2k, _film->reencode_j2k());
447                 break;
448         case Film::Property::INTEROP:
449                 checked_set (_standard, _film->interop() ? 1 : 0);
450                 setup_dcp_name ();
451                 _markers->Enable (!_film->interop());
452                 break;
453         case Film::Property::AUDIO_PROCESSOR:
454                 if (_film->audio_processor()) {
455                         checked_set (_audio_processor, _film->audio_processor()->id());
456                 } else {
457                         checked_set (_audio_processor, 0);
458                 }
459                 setup_audio_channels_choice (_audio_channels, minimum_allowed_audio_channels());
460                 film_changed (Film::Property::AUDIO_CHANNELS);
461                 break;
462         case Film::Property::REEL_TYPE:
463                 checked_set (_reel_type, static_cast<int>(_film->reel_type()));
464                 _reel_length->Enable (_film->reel_type() == ReelType::BY_LENGTH);
465                 break;
466         case Film::Property::REEL_LENGTH:
467                 checked_set (_reel_length, _film->reel_length() / 1000000000LL);
468                 break;
469         case Film::Property::CONTENT:
470                 setup_dcp_name ();
471                 setup_sensitivity ();
472                 break;
473         case Film::Property::AUDIO_LANGUAGE:
474         {
475                 auto al = _film->audio_language();
476                 checked_set (_enable_audio_language, static_cast<bool>(al));
477                 checked_set (_audio_language, al ? std_to_wx(al->to_string()) : wxT(""));
478                 setup_dcp_name ();
479                 setup_sensitivity ();
480                 break;
481         }
482         case Film::Property::CONTENT_VERSIONS:
483         case Film::Property::VERSION_NUMBER:
484         case Film::Property::RELEASE_TERRITORY:
485         case Film::Property::RATINGS:
486         case Film::Property::FACILITY:
487         case Film::Property::STUDIO:
488         case Film::Property::TEMP_VERSION:
489         case Film::Property::PRE_RELEASE:
490         case Film::Property::RED_BAND:
491         case Film::Property::TWO_D_VERSION_OF_THREE_D:
492         case Film::Property::CHAIN:
493         case Film::Property::LUMINANCE:
494                 setup_dcp_name ();
495                 break;
496         default:
497                 break;
498         }
499 }
500
501
502 void
503 DCPPanel::film_content_changed (int property)
504 {
505         if (property == AudioContentProperty::STREAMS ||
506             property == TextContentProperty::USE ||
507             property == TextContentProperty::BURN ||
508             property == TextContentProperty::LANGUAGE ||
509             property == TextContentProperty::LANGUAGE_IS_ADDITIONAL ||
510             property == VideoContentProperty::CUSTOM_RATIO ||
511             property == VideoContentProperty::CUSTOM_SIZE ||
512             property == VideoContentProperty::BURNT_SUBTITLE_LANGUAGE ||
513             property == VideoContentProperty::CROP ||
514             property == DCPContentProperty::REFERENCE_VIDEO ||
515             property == DCPContentProperty::REFERENCE_AUDIO ||
516             property == DCPContentProperty::REFERENCE_TEXT) {
517                 setup_dcp_name ();
518                 setup_sensitivity ();
519         }
520 }
521
522
523 void
524 DCPPanel::setup_container ()
525 {
526         int n = 0;
527         auto ratios = Ratio::containers ();
528         auto i = ratios.begin ();
529         while (i != ratios.end() && *i != _film->container()) {
530                 ++i;
531                 ++n;
532         }
533
534         if (i == ratios.end()) {
535                 checked_set (_container, -1);
536                 checked_set (_container_size, wxT(""));
537         } else {
538                 checked_set (_container, n);
539                 auto const size = fit_ratio_within (_film->container()->ratio(), _film->full_frame ());
540                 checked_set (_container_size, wxString::Format("%dx%d", size.width, size.height));
541         }
542
543         setup_dcp_name ();
544 }
545
546
547 /** Called when the container widget has been changed */
548 void
549 DCPPanel::container_changed ()
550 {
551         if (!_film) {
552                 return;
553         }
554
555         int const n = _container->GetSelection ();
556         if (n >= 0) {
557                 auto ratios = Ratio::containers ();
558                 DCPOMATIC_ASSERT (n < int(ratios.size()));
559                 _film->set_container (ratios[n]);
560         }
561 }
562
563
564 /** Called when the DCP content type widget has been changed */
565 void
566 DCPPanel::dcp_content_type_changed ()
567 {
568         if (!_film) {
569                 return;
570         }
571
572         int const n = _dcp_content_type->GetSelection ();
573         if (n != wxNOT_FOUND) {
574                 _film->set_dcp_content_type (DCPContentType::from_index(n));
575         }
576 }
577
578
579 void
580 DCPPanel::set_film (shared_ptr<Film> film)
581 {
582         /* We are changing film, so destroy any dialogs for the old one */
583         if (_audio_dialog) {
584                 _audio_dialog->Destroy ();
585                 _audio_dialog = nullptr;
586         }
587         if (_markers_dialog) {
588                 _markers_dialog->Destroy ();
589                 _markers_dialog = nullptr;
590         }
591         if (_interop_metadata_dialog) {
592                 _interop_metadata_dialog->Destroy ();
593                 _interop_metadata_dialog = nullptr;
594         }
595         if (_smpte_metadata_dialog) {
596                 _smpte_metadata_dialog->Destroy ();
597                 _smpte_metadata_dialog = nullptr;
598         }
599
600         _film = film;
601
602         if (!_film) {
603                 /* Really should all the film_changed below but this might be enough */
604                 checked_set (_dcp_name, wxT(""));
605                 set_general_sensitivity (false);
606                 return;
607         }
608
609         film_changed (Film::Property::NAME);
610         film_changed (Film::Property::USE_ISDCF_NAME);
611         film_changed (Film::Property::CONTENT);
612         film_changed (Film::Property::DCP_CONTENT_TYPE);
613         film_changed (Film::Property::CONTAINER);
614         film_changed (Film::Property::RESOLUTION);
615         film_changed (Film::Property::ENCRYPTED);
616         film_changed (Film::Property::J2K_BANDWIDTH);
617         film_changed (Film::Property::VIDEO_FRAME_RATE);
618         film_changed (Film::Property::AUDIO_CHANNELS);
619         film_changed (Film::Property::SEQUENCE);
620         film_changed (Film::Property::THREE_D);
621         film_changed (Film::Property::INTEROP);
622         film_changed (Film::Property::AUDIO_PROCESSOR);
623         film_changed (Film::Property::REEL_TYPE);
624         film_changed (Film::Property::REEL_LENGTH);
625         film_changed (Film::Property::REENCODE_J2K);
626         film_changed (Film::Property::AUDIO_LANGUAGE);
627
628         set_general_sensitivity(static_cast<bool>(_film));
629 }
630
631
632 void
633 DCPPanel::set_general_sensitivity (bool s)
634 {
635         _generally_sensitive = s;
636         setup_sensitivity ();
637 }
638
639
640 void
641 DCPPanel::setup_sensitivity ()
642 {
643         _name->Enable                   (_generally_sensitive);
644         _use_isdcf_name->Enable         (_generally_sensitive);
645         _dcp_content_type->Enable       (_generally_sensitive);
646         _copy_isdcf_name_button->Enable (_generally_sensitive);
647         _enable_audio_language->Enable  (_generally_sensitive);
648         _audio_language->Enable         (_enable_audio_language->GetValue());
649         _edit_audio_language->Enable    (_enable_audio_language->GetValue());
650         _encrypted->Enable              (_generally_sensitive);
651         _reel_type->Enable              (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->references_dcp_audio());
652         _reel_length->Enable            (_generally_sensitive && _film && _film->reel_type() == ReelType::BY_LENGTH);
653         _markers->Enable                (_generally_sensitive && _film && !_film->interop());
654         _metadata->Enable               (_generally_sensitive);
655         _frame_rate_choice->Enable      (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->contains_atmos_content());
656         _frame_rate_spin->Enable        (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->contains_atmos_content());
657         _audio_channels->Enable         (_generally_sensitive && _film && !_film->references_dcp_audio() && !_film->contains_atmos_content());
658         _audio_processor->Enable        (_generally_sensitive && _film && !_film->references_dcp_audio());
659         _j2k_bandwidth->Enable          (_generally_sensitive && _film && !_film->references_dcp_video());
660         _container->Enable              (_generally_sensitive && _film && !_film->references_dcp_video());
661         _best_frame_rate->Enable (
662                 _generally_sensitive &&
663                 _film &&
664                 _film->best_video_frame_rate () != _film->video_frame_rate() &&
665                 !_film->references_dcp_video() &&
666                 !_film->contains_atmos_content()
667                 );
668         _resolution->Enable             (_generally_sensitive && _film && !_film->references_dcp_video());
669         _three_d->Enable                (_generally_sensitive && _film && !_film->references_dcp_video());
670
671         _standard->Enable (
672                 _generally_sensitive &&
673                 _film &&
674                 !_film->references_dcp_video() &&
675                 !_film->references_dcp_audio() &&
676                 !_film->contains_atmos_content()
677                 );
678
679         _reencode_j2k->Enable           (_generally_sensitive && _film);
680         _show_audio->Enable             (_generally_sensitive && _film);
681 }
682
683
684 void
685 DCPPanel::use_isdcf_name_toggled ()
686 {
687         if (!_film) {
688                 return;
689         }
690
691         _film->set_use_isdcf_name (_use_isdcf_name->GetValue());
692 }
693
694 void
695 DCPPanel::setup_dcp_name ()
696 {
697         _dcp_name->SetLabel (std_to_wx(_film->dcp_name(true)));
698         _dcp_name->SetToolTip (std_to_wx(_film->dcp_name(true)));
699 }
700
701
702 void
703 DCPPanel::best_frame_rate_clicked ()
704 {
705         if (!_film) {
706                 return;
707         }
708
709         _film->set_video_frame_rate (_film->best_video_frame_rate());
710 }
711
712
713 void
714 DCPPanel::three_d_changed ()
715 {
716         if (!_film) {
717                 return;
718         }
719
720         _film->set_three_d (_three_d->GetValue());
721 }
722
723
724 void
725 DCPPanel::reencode_j2k_changed ()
726 {
727         if (!_film) {
728                 return;
729         }
730
731         _film->set_reencode_j2k (_reencode_j2k->GetValue());
732 }
733
734
735 void
736 DCPPanel::config_changed (Config::Property p)
737 {
738         _j2k_bandwidth->SetRange (1, Config::instance()->maximum_j2k_bandwidth() / 1000000);
739         setup_frame_rate_widget ();
740
741         if (p == Config::SHOW_EXPERIMENTAL_AUDIO_PROCESSORS) {
742                 _audio_processor->Clear ();
743                 add_audio_processors ();
744                 if (_film) {
745                         film_changed (Film::Property::AUDIO_PROCESSOR);
746                 }
747         }
748 }
749
750
751 void
752 DCPPanel::setup_frame_rate_widget ()
753 {
754         if (Config::instance()->allow_any_dcp_frame_rate()) {
755                 _frame_rate_choice->Hide ();
756                 _frame_rate_spin->Show ();
757         } else {
758                 _frame_rate_choice->Show ();
759                 _frame_rate_spin->Hide ();
760         }
761 }
762
763
764 wxPanel *
765 DCPPanel::make_video_panel ()
766 {
767         auto panel = new wxPanel (_notebook);
768         auto sizer = new wxBoxSizer (wxVERTICAL);
769         _video_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
770         sizer->Add (_video_grid, 0, wxALL, 8);
771         panel->SetSizer (sizer);
772
773         _container_label = create_label (panel, _("Container"), true);
774         _container = new wxChoice (panel, wxID_ANY);
775         _container_size = new StaticText (panel, wxT (""));
776
777         _resolution_label = create_label (panel, _("Resolution"), true);
778         _resolution = new wxChoice (panel, wxID_ANY);
779
780         _frame_rate_label = create_label (panel, _("Frame Rate"), true);
781         _frame_rate_choice = new wxChoice (panel, wxID_ANY);
782         _frame_rate_spin = new SpinCtrl (panel, DCPOMATIC_SPIN_CTRL_WIDTH);
783         setup_frame_rate_widget ();
784         _best_frame_rate = new Button (panel, _("Use best"));
785
786         _three_d = new CheckBox (panel, _("3D"));
787
788         _j2k_bandwidth_label = create_label (panel, _("JPEG2000 bandwidth\nfor newly-encoded data"), true);
789         _j2k_bandwidth = new SpinCtrl (panel, DCPOMATIC_SPIN_CTRL_WIDTH);
790         _mbits_label = create_label (panel, _("Mbit/s"), false);
791
792         _reencode_j2k = new CheckBox (panel, _("Re-encode JPEG2000 data from input"));
793
794         _container->Bind         (wxEVT_CHOICE,   boost::bind(&DCPPanel::container_changed, this));
795         _frame_rate_choice->Bind (wxEVT_CHOICE,   boost::bind(&DCPPanel::frame_rate_choice_changed, this));
796         _frame_rate_spin->Bind   (wxEVT_SPINCTRL, boost::bind(&DCPPanel::frame_rate_spin_changed, this));
797         _best_frame_rate->Bind   (wxEVT_BUTTON,   boost::bind(&DCPPanel::best_frame_rate_clicked, this));
798         _j2k_bandwidth->Bind     (wxEVT_SPINCTRL, boost::bind(&DCPPanel::j2k_bandwidth_changed, this));
799         /* Also listen to wxEVT_TEXT so that typing numbers directly in is always noticed */
800         _j2k_bandwidth->Bind     (wxEVT_TEXT,     boost::bind(&DCPPanel::j2k_bandwidth_changed, this));
801         _resolution->Bind        (wxEVT_CHOICE,   boost::bind(&DCPPanel::resolution_changed, this));
802         _three_d->Bind           (wxEVT_CHECKBOX, boost::bind(&DCPPanel::three_d_changed, this));
803         _reencode_j2k->Bind      (wxEVT_CHECKBOX, boost::bind(&DCPPanel::reencode_j2k_changed, this));
804
805         for (auto i: Ratio::containers()) {
806                 _container->Append (std_to_wx(i->container_nickname()));
807         }
808
809         for (auto i: Config::instance()->allowed_dcp_frame_rates()) {
810                 _frame_rate_choice->Append (std_to_wx (boost::lexical_cast<string> (i)));
811         }
812
813         _j2k_bandwidth->SetRange (1, Config::instance()->maximum_j2k_bandwidth() / 1000000);
814         _frame_rate_spin->SetRange (1, 480);
815
816         _resolution->Append (_("2K"));
817         _resolution->Append (_("4K"));
818
819         add_video_panel_to_grid ();
820
821         return panel;
822 }
823
824
825 void
826 DCPPanel::add_video_panel_to_grid ()
827 {
828         int r = 0;
829
830         add_label_to_sizer (_video_grid, _container_label, true, wxGBPosition (r, 0));
831         {
832                 auto s = new wxBoxSizer (wxHORIZONTAL);
833                 s->Add (_container, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
834                 s->Add (_container_size, 1, wxLEFT | wxALIGN_CENTER_VERTICAL);
835                 _video_grid->Add (s, wxGBPosition(r, 1));
836                 ++r;
837         }
838
839         add_label_to_sizer (_video_grid, _resolution_label, true, wxGBPosition (r, 0));
840         _video_grid->Add (_resolution, wxGBPosition (r, 1));
841         ++r;
842
843         add_label_to_sizer (_video_grid, _frame_rate_label, true, wxGBPosition (r, 0));
844         {
845                 _frame_rate_sizer = new wxBoxSizer (wxHORIZONTAL);
846                 _frame_rate_sizer->Add (_frame_rate_choice, 1, wxALIGN_CENTER_VERTICAL);
847                 _frame_rate_sizer->Add (_frame_rate_spin, 1, wxALIGN_CENTER_VERTICAL);
848                 _frame_rate_sizer->Add (_best_frame_rate, 1, wxLEFT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
849                 _video_grid->Add (_frame_rate_sizer, wxGBPosition (r, 1));
850                 ++r;
851         }
852
853         _video_grid->Add (_three_d, wxGBPosition (r, 0), wxGBSpan (1, 2));
854         ++r;
855
856         add_label_to_sizer (_video_grid, _j2k_bandwidth_label, true, wxGBPosition (r, 0));
857         auto s = new wxBoxSizer (wxHORIZONTAL);
858         s->Add (_j2k_bandwidth, 0, wxALIGN_CENTER_VERTICAL);
859         add_label_to_sizer (s, _mbits_label, false, 0, wxLEFT | wxALIGN_CENTER_VERTICAL);
860         _video_grid->Add (s, wxGBPosition(r, 1), wxDefaultSpan);
861         ++r;
862         _video_grid->Add (_reencode_j2k, wxGBPosition(r, 0), wxGBSpan(1, 2));
863 }
864
865
866 int
867 DCPPanel::minimum_allowed_audio_channels () const
868 {
869         int min = 2;
870         if (_film && _film->audio_processor ()) {
871                 min = _film->audio_processor()->out_channels ();
872         }
873
874         if (min % 2 == 1) {
875                 ++min;
876         }
877
878         return min;
879 }
880
881
882 wxPanel *
883 DCPPanel::make_audio_panel ()
884 {
885         auto panel = new wxPanel (_notebook);
886         _audio_panel_sizer = new wxBoxSizer (wxVERTICAL);
887         _audio_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
888         _audio_panel_sizer->Add (_audio_grid, 0, wxALL, 8);
889         panel->SetSizer (_audio_panel_sizer);
890
891         _channels_label = create_label (panel, _("Channels"), true);
892         _audio_channels = new wxChoice (panel, wxID_ANY);
893         setup_audio_channels_choice (_audio_channels, minimum_allowed_audio_channels ());
894
895         _processor_label = create_label (panel, _("Processor"), true);
896         _audio_processor = new wxChoice (panel, wxID_ANY);
897         add_audio_processors ();
898
899         _show_audio = new Button (panel, _("Show graph of audio levels..."));
900
901         _audio_channels->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_channels_changed, this));
902         _audio_processor->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_processor_changed, this));
903         _show_audio->Bind (wxEVT_BUTTON, boost::bind (&DCPPanel::show_audio_clicked, this));
904
905         add_audio_panel_to_grid ();
906
907         return panel;
908 }
909
910
911 void
912 DCPPanel::add_audio_panel_to_grid ()
913 {
914         int r = 0;
915
916         add_label_to_sizer (_audio_grid, _channels_label, true, wxGBPosition (r, 0));
917         _audio_grid->Add (_audio_channels, wxGBPosition (r, 1));
918         ++r;
919
920         add_label_to_sizer (_audio_grid, _processor_label, true, wxGBPosition (r, 0));
921         _audio_grid->Add (_audio_processor, wxGBPosition (r, 1));
922         ++r;
923
924         _audio_grid->Add (_show_audio, wxGBPosition (r, 0), wxGBSpan (1, 2));
925         ++r;
926 }
927
928
929 void
930 DCPPanel::copy_isdcf_name_button_clicked ()
931 {
932         _film->set_name (_film->isdcf_name (true));
933         _film->set_use_isdcf_name (false);
934 }
935
936
937 void
938 DCPPanel::audio_processor_changed ()
939 {
940         if (!_film) {
941                 return;
942         }
943
944         auto const s = string_client_data (_audio_processor->GetClientObject (_audio_processor->GetSelection ()));
945         _film->set_audio_processor (AudioProcessor::from_id (s));
946 }
947
948
949 void
950 DCPPanel::show_audio_clicked ()
951 {
952         if (!_film) {
953                 return;
954         }
955
956         if (_audio_dialog) {
957                 _audio_dialog->Destroy ();
958                 _audio_dialog = nullptr;
959         }
960
961         auto d = new AudioDialog (_panel, _film, _viewer);
962         d->Show ();
963 }
964
965
966 void
967 DCPPanel::reel_type_changed ()
968 {
969         if (!_film) {
970                 return;
971         }
972
973         _film->set_reel_type (static_cast<ReelType>(_reel_type->GetSelection()));
974 }
975
976
977 void
978 DCPPanel::reel_length_changed ()
979 {
980         if (!_film) {
981                 return;
982         }
983
984         _film->set_reel_length (_reel_length->GetValue() * 1000000000LL);
985 }
986
987
988 void
989 DCPPanel::add_audio_processors ()
990 {
991         _audio_processor->Append (_("None"), new wxStringClientData(N_("none")));
992         for (auto ap: AudioProcessor::visible()) {
993                 _audio_processor->Append (std_to_wx(ap->name()), new wxStringClientData(std_to_wx(ap->id())));
994         }
995         _audio_panel_sizer->Layout();
996 }
997
998
999 void
1000 DCPPanel::enable_audio_language_toggled ()
1001 {
1002         setup_sensitivity ();
1003         if (_enable_audio_language->GetValue()) {
1004                 auto al = wx_to_std (_audio_language->GetLabel());
1005                 _film->set_audio_language (al.empty() ? dcp::LanguageTag("en-US") : dcp::LanguageTag(al));
1006         } else {
1007                 _film->set_audio_language (boost::none);
1008         }
1009 }
1010
1011
1012 void
1013 DCPPanel::edit_audio_language_clicked ()
1014 {
1015        DCPOMATIC_ASSERT (_film->audio_language());
1016        auto d = new LanguageTagDialog (_panel, *_film->audio_language());
1017        d->ShowModal ();
1018        _film->set_audio_language(d->get());
1019        d->Destroy ();
1020 }
1021