Support buttons.
[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         film_changed (Film::NAME);
569         film_changed (Film::USE_ISDCF_NAME);
570         film_changed (Film::CONTENT);
571         film_changed (Film::DCP_CONTENT_TYPE);
572         film_changed (Film::CONTAINER);
573         film_changed (Film::RESOLUTION);
574         film_changed (Film::SIGNED);
575         film_changed (Film::ENCRYPTED);
576         film_changed (Film::KEY);
577         film_changed (Film::J2K_BANDWIDTH);
578         film_changed (Film::ISDCF_METADATA);
579         film_changed (Film::VIDEO_FRAME_RATE);
580         film_changed (Film::AUDIO_CHANNELS);
581         film_changed (Film::SEQUENCE);
582         film_changed (Film::THREE_D);
583         film_changed (Film::INTEROP);
584         film_changed (Film::AUDIO_PROCESSOR);
585         film_changed (Film::REEL_TYPE);
586         film_changed (Film::REEL_LENGTH);
587         film_changed (Film::UPLOAD_AFTER_MAKE_DCP);
588         film_changed (Film::REENCODE_J2K);
589
590         set_general_sensitivity(static_cast<bool>(_film));
591 }
592
593 void
594 DCPPanel::set_general_sensitivity (bool s)
595 {
596         _generally_sensitive = s;
597         setup_sensitivity ();
598 }
599
600 void
601 DCPPanel::setup_sensitivity ()
602 {
603         _name->Enable                   (_generally_sensitive);
604         _use_isdcf_name->Enable         (_generally_sensitive);
605         _edit_isdcf_button->Enable      (_generally_sensitive);
606         _dcp_content_type->Enable       (_generally_sensitive);
607         _copy_isdcf_name_button->Enable (_generally_sensitive);
608
609         bool si = _generally_sensitive;
610         if (_film && _film->encrypted ()) {
611                 si = false;
612         }
613         _signed->Enable (si);
614
615         _encrypted->Enable              (_generally_sensitive);
616         _key->Enable                    (_generally_sensitive && _film && _film->encrypted ());
617         _edit_key->Enable               (_generally_sensitive && _film && _film->encrypted ());
618         _reel_type->Enable              (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->references_dcp_audio());
619         _reel_length->Enable            (_generally_sensitive && _film && _film->reel_type() == REELTYPE_BY_LENGTH);
620         _upload_after_make_dcp->Enable  (_generally_sensitive);
621         _frame_rate_choice->Enable      (_generally_sensitive && _film && !_film->references_dcp_video());
622         _frame_rate_spin->Enable        (_generally_sensitive && _film && !_film->references_dcp_video());
623         _audio_channels->Enable         (_generally_sensitive && _film && !_film->references_dcp_audio());
624         _audio_processor->Enable        (_generally_sensitive && _film && !_film->references_dcp_audio());
625         _j2k_bandwidth->Enable          (_generally_sensitive && _film && !_film->references_dcp_video());
626         _container->Enable              (_generally_sensitive && _film && !_film->references_dcp_video());
627         _best_frame_rate->Enable        (_generally_sensitive && _film && _film->best_video_frame_rate () != _film->video_frame_rate ());
628         _resolution->Enable             (_generally_sensitive && _film && !_film->references_dcp_video());
629         _three_d->Enable                (_generally_sensitive && _film && !_film->references_dcp_video());
630         _standard->Enable               (_generally_sensitive && _film && !_film->references_dcp_video() && !_film->references_dcp_audio());
631 }
632
633 void
634 DCPPanel::use_isdcf_name_toggled ()
635 {
636         if (!_film) {
637                 return;
638         }
639
640         _film->set_use_isdcf_name (_use_isdcf_name->GetValue ());
641 }
642
643 void
644 DCPPanel::edit_isdcf_button_clicked ()
645 {
646         if (!_film) {
647                 return;
648         }
649
650         ISDCFMetadataDialog* d = new ISDCFMetadataDialog (_panel, _film->isdcf_metadata (), _film->three_d ());
651         d->ShowModal ();
652         _film->set_isdcf_metadata (d->isdcf_metadata ());
653         d->Destroy ();
654 }
655
656 void
657 DCPPanel::setup_dcp_name ()
658 {
659         _dcp_name->SetLabel (std_to_wx (_film->dcp_name (true)));
660         _dcp_name->SetToolTip (std_to_wx (_film->dcp_name (true)));
661 }
662
663 void
664 DCPPanel::best_frame_rate_clicked ()
665 {
666         if (!_film) {
667                 return;
668         }
669
670         _film->set_video_frame_rate (_film->best_video_frame_rate ());
671 }
672
673 void
674 DCPPanel::three_d_changed ()
675 {
676         if (!_film) {
677                 return;
678         }
679
680         _film->set_three_d (_three_d->GetValue ());
681 }
682
683 void
684 DCPPanel::reencode_j2k_changed ()
685 {
686         if (!_film) {
687                 return;
688         }
689
690         _film->set_reencode_j2k (_reencode_j2k->GetValue());
691 }
692
693 void
694 DCPPanel::config_changed (Config::Property p)
695 {
696         _j2k_bandwidth->SetRange (1, Config::instance()->maximum_j2k_bandwidth() / 1000000);
697         setup_frame_rate_widget ();
698
699         if (p == Config::INTERFACE_COMPLEXITY) {
700                 _grid->Clear ();
701                 add_to_grid ();
702                 _sizer->Layout ();
703                 _grid->Layout ();
704
705                 _video_grid->Clear ();
706                 add_video_panel_to_grid ();
707                 _video_grid->Layout ();
708
709                 _audio_grid->Clear ();
710                 add_audio_panel_to_grid ();
711                 _audio_grid->Layout ();
712         }
713 }
714
715 void
716 DCPPanel::setup_frame_rate_widget ()
717 {
718         if (Config::instance()->allow_any_dcp_frame_rate ()) {
719                 _frame_rate_choice->Hide ();
720                 _frame_rate_spin->Show ();
721         } else {
722                 _frame_rate_choice->Show ();
723                 _frame_rate_spin->Hide ();
724         }
725
726         _frame_rate_sizer->Layout ();
727 }
728
729 wxPanel *
730 DCPPanel::make_video_panel ()
731 {
732         wxPanel* panel = new wxPanel (_notebook);
733         wxSizer* sizer = new wxBoxSizer (wxVERTICAL);
734         _video_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
735         sizer->Add (_video_grid, 0, wxALL, 8);
736         panel->SetSizer (sizer);
737
738         _container_label = create_label (panel, _("Container"), true);
739         _container = new wxChoice (panel, wxID_ANY);
740         _container_size = new StaticText (panel, wxT (""));
741
742         _resolution_label = create_label (panel, _("Resolution"), true);
743         _resolution = new wxChoice (panel, wxID_ANY);
744
745         _frame_rate_label = create_label (panel, _("Frame Rate"), true);
746         _frame_rate_choice = new wxChoice (panel, wxID_ANY);
747         _frame_rate_sizer = new wxBoxSizer (wxHORIZONTAL);
748         _frame_rate_sizer->Add (_frame_rate_choice, 1, wxALIGN_CENTER_VERTICAL);
749         _frame_rate_spin = new wxSpinCtrl (panel, wxID_ANY);
750         _frame_rate_sizer->Add (_frame_rate_spin, 1, wxALIGN_CENTER_VERTICAL);
751         setup_frame_rate_widget ();
752         _best_frame_rate = new Button (panel, _("Use best"));
753         _frame_rate_sizer->Add (_best_frame_rate, 1, wxALIGN_CENTER_VERTICAL);
754
755         _three_d = new CheckBox (panel, _("3D"));
756
757         _j2k_bandwidth_label = create_label (panel, _("JPEG2000 bandwidth\nfor newly-encoded data"), true);
758         _j2k_bandwidth = new wxSpinCtrl (panel, wxID_ANY);
759         _mbits_label = create_label (panel, _("Mbit/s"), false);
760
761         _reencode_j2k = new CheckBox (panel, _("Re-encode JPEG2000 data from input"));
762
763         _container->Bind         (wxEVT_CHOICE,   boost::bind(&DCPPanel::container_changed, this));
764         _frame_rate_choice->Bind (wxEVT_CHOICE,   boost::bind(&DCPPanel::frame_rate_choice_changed, this));
765         _frame_rate_spin->Bind   (wxEVT_SPINCTRL, boost::bind(&DCPPanel::frame_rate_spin_changed, this));
766         _best_frame_rate->Bind   (wxEVT_BUTTON,   boost::bind(&DCPPanel::best_frame_rate_clicked, this));
767         _j2k_bandwidth->Bind     (wxEVT_SPINCTRL, boost::bind(&DCPPanel::j2k_bandwidth_changed, this));
768         /* Also listen to wxEVT_TEXT so that typing numbers directly in is always noticed */
769         _j2k_bandwidth->Bind     (wxEVT_TEXT,     boost::bind(&DCPPanel::j2k_bandwidth_changed, this));
770         _resolution->Bind        (wxEVT_CHOICE,   boost::bind(&DCPPanel::resolution_changed, this));
771         _three_d->Bind           (wxEVT_CHECKBOX, boost::bind(&DCPPanel::three_d_changed, this));
772         _reencode_j2k->Bind      (wxEVT_CHECKBOX, boost::bind(&DCPPanel::reencode_j2k_changed, this));
773
774         BOOST_FOREACH (Ratio const * i, Ratio::containers()) {
775                 _container->Append (std_to_wx(i->container_nickname()));
776         }
777
778         BOOST_FOREACH (int i, Config::instance()->allowed_dcp_frame_rates()) {
779                 _frame_rate_choice->Append (std_to_wx (boost::lexical_cast<string> (i)));
780         }
781
782         _j2k_bandwidth->SetRange (1, Config::instance()->maximum_j2k_bandwidth() / 1000000);
783         _frame_rate_spin->SetRange (1, 480);
784
785         _resolution->Append (_("2K"));
786         _resolution->Append (_("4K"));
787
788         add_video_panel_to_grid ();
789
790         return panel;
791 }
792
793 void
794 DCPPanel::add_video_panel_to_grid ()
795 {
796         bool const full = Config::instance()->interface_complexity() == Config::INTERFACE_FULL;
797
798         int r = 0;
799
800         add_label_to_sizer (_video_grid, _container_label, true, wxGBPosition (r, 0));
801         {
802                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
803                 s->Add (_container, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
804                 s->Add (_container_size, 1, wxLEFT | wxALIGN_CENTER_VERTICAL);
805                 _video_grid->Add (s, wxGBPosition(r, 1));
806                 ++r;
807         }
808
809         add_label_to_sizer (_video_grid, _resolution_label, true, wxGBPosition (r, 0));
810         _video_grid->Add (_resolution, wxGBPosition (r, 1));
811         ++r;
812
813         add_label_to_sizer (_video_grid, _frame_rate_label, true, wxGBPosition (r, 0));
814         {
815                 _frame_rate_sizer = new wxBoxSizer (wxHORIZONTAL);
816                 _frame_rate_sizer->Add (_frame_rate_choice, 1, wxALIGN_CENTER_VERTICAL);
817                 _frame_rate_sizer->Add (_frame_rate_spin, 1, wxALIGN_CENTER_VERTICAL);
818                 _frame_rate_sizer->Add (_best_frame_rate, 1, wxALIGN_CENTER_VERTICAL);
819                 _video_grid->Add (_frame_rate_sizer, wxGBPosition (r, 1));
820                 ++r;
821         }
822
823         _video_grid->Add (_three_d, wxGBPosition (r, 0), wxGBSpan (1, 2));
824         ++r;
825
826         _j2k_bandwidth_label->Show (full);
827         _j2k_bandwidth->Show (full);
828         _mbits_label->Show (full);
829
830         if (full) {
831                 add_label_to_sizer (_video_grid, _j2k_bandwidth_label, true, wxGBPosition (r, 0));
832                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
833                 s->Add (_j2k_bandwidth, 1);
834                 add_label_to_sizer (s, _mbits_label, false);
835                 _video_grid->Add (s, wxGBPosition (r, 1));
836                 ++r;
837                 _video_grid->Add (_reencode_j2k, wxGBPosition(r, 0), wxGBSpan(1, 2));
838         }
839 }
840
841 int
842 DCPPanel::minimum_allowed_audio_channels () const
843 {
844         int min = 2;
845         if (_film && _film->audio_processor ()) {
846                 min = _film->audio_processor()->out_channels ();
847         }
848
849         if (min % 2 == 1) {
850                 ++min;
851         }
852
853         return min;
854 }
855
856 wxPanel *
857 DCPPanel::make_audio_panel ()
858 {
859         wxPanel* panel = new wxPanel (_notebook);
860         wxSizer* sizer = new wxBoxSizer (wxVERTICAL);
861         _audio_grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
862         sizer->Add (_audio_grid, 0, wxALL, 8);
863         panel->SetSizer (sizer);
864
865         _channels_label = create_label (panel, _("Channels"), true);
866         _audio_channels = new wxChoice (panel, wxID_ANY);
867         setup_audio_channels_choice (_audio_channels, minimum_allowed_audio_channels ());
868
869         _processor_label = create_label (panel, _("Processor"), true);
870         _audio_processor = new wxChoice (panel, wxID_ANY);
871         _audio_processor->Append (_("None"), new wxStringClientData (N_("none")));
872         BOOST_FOREACH (AudioProcessor const * ap, AudioProcessor::all ()) {
873                 _audio_processor->Append (std_to_wx (ap->name ()), new wxStringClientData (std_to_wx (ap->id ())));
874         }
875
876         _show_audio = new Button (panel, _("Show audio..."));
877
878         _audio_channels->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_channels_changed, this));
879         _audio_processor->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_processor_changed, this));
880         _show_audio->Bind (wxEVT_BUTTON, boost::bind (&DCPPanel::show_audio_clicked, this));
881
882         add_audio_panel_to_grid ();
883
884         return panel;
885 }
886
887 void
888 DCPPanel::add_audio_panel_to_grid ()
889 {
890         bool const full = Config::instance()->interface_complexity() == Config::INTERFACE_FULL;
891
892         int r = 0;
893
894         _channels_label->Show (full);
895         _audio_channels->Show (full);
896
897         if (full) {
898                 add_label_to_sizer (_audio_grid, _channels_label, true, wxGBPosition (r, 0));
899                 _audio_grid->Add (_audio_channels, wxGBPosition (r, 1));
900                 ++r;
901         }
902
903         _processor_label->Show (full);
904         _audio_processor->Show (full);
905
906         if (full) {
907                 add_label_to_sizer (_audio_grid, _processor_label, true, wxGBPosition (r, 0));
908                 _audio_grid->Add (_audio_processor, wxGBPosition (r, 1));
909                 ++r;
910         }
911
912         _audio_grid->Add (_show_audio, wxGBPosition (r, 0), wxGBSpan (1, 2));
913         ++r;
914 }
915
916 void
917 DCPPanel::copy_isdcf_name_button_clicked ()
918 {
919         _film->set_name (_film->isdcf_name (true));
920         _film->set_use_isdcf_name (false);
921 }
922
923 void
924 DCPPanel::audio_processor_changed ()
925 {
926         if (!_film) {
927                 return;
928         }
929
930         string const s = string_client_data (_audio_processor->GetClientObject (_audio_processor->GetSelection ()));
931         _film->set_audio_processor (AudioProcessor::from_id (s));
932 }
933
934 void
935 DCPPanel::show_audio_clicked ()
936 {
937         if (!_film) {
938                 return;
939         }
940
941         if (_audio_dialog) {
942                 _audio_dialog->Destroy ();
943                 _audio_dialog = 0;
944         }
945
946         AudioDialog* d = new AudioDialog (_panel, _film);
947         d->Show ();
948 }
949
950 void
951 DCPPanel::reel_type_changed ()
952 {
953         if (!_film) {
954                 return;
955         }
956
957         _film->set_reel_type (static_cast<ReelType> (_reel_type->GetSelection ()));
958 }
959
960 void
961 DCPPanel::reel_length_changed ()
962 {
963         if (!_film) {
964                 return;
965         }
966
967         _film->set_reel_length (_reel_length->GetValue() * 1000000000LL);
968 }