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