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