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