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