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