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