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