No-op; rename a whole load of wx constants to their shorter equivalents.
[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         vector<DCPContentType const *> const ct = DCPContentType::all ();
179         for (vector<DCPContentType const *>::const_iterator i = ct.begin(); i != ct.end(); ++i) {
180                 _dcp_content_type->Append (std_to_wx ((*i)->pretty_name ()));
181         }
182
183         _reel_type->Append (_("Single reel"));
184         _reel_type->Append (_("Split by video content"));
185         /// TRANSLATORS: translate the word "Custom" here; do not include the "Reel|" prefix
186         _reel_type->Append (S_("Reel|Custom"));
187
188         _reel_length->SetRange (1, 64);
189
190         _standard->Append (_("SMPTE"));
191         _standard->Append (_("Interop"));
192
193         Config::instance()->Changed.connect (boost::bind (&DCPPanel::config_changed, this));
194 }
195
196 void
197 DCPPanel::edit_key_clicked ()
198 {
199         KeyDialog* d = new KeyDialog (_panel, _film->key ());
200         if (d->ShowModal () == wxID_OK) {
201                 _film->set_key (d->key ());
202         }
203         d->Destroy ();
204 }
205
206 void
207 DCPPanel::name_changed ()
208 {
209         if (!_film) {
210                 return;
211         }
212
213         _film->set_name (string (_name->GetValue().mb_str()));
214 }
215
216 void
217 DCPPanel::j2k_bandwidth_changed ()
218 {
219         if (!_film) {
220                 return;
221         }
222
223         _film->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1000000);
224 }
225
226 void
227 DCPPanel::signed_toggled ()
228 {
229         if (!_film) {
230                 return;
231         }
232
233         _film->set_signed (_signed->GetValue ());
234 }
235
236 void
237 DCPPanel::encrypted_toggled ()
238 {
239         if (!_film) {
240                 return;
241         }
242
243         _film->set_encrypted (_encrypted->GetValue ());
244 }
245
246 /** Called when the frame rate choice widget has been changed */
247 void
248 DCPPanel::frame_rate_choice_changed ()
249 {
250         if (!_film) {
251                 return;
252         }
253
254         _film->set_video_frame_rate (
255                 boost::lexical_cast<int> (
256                         wx_to_std (_frame_rate_choice->GetString (_frame_rate_choice->GetSelection ()))
257                         )
258                 );
259 }
260
261 /** Called when the frame rate spin widget has been changed */
262 void
263 DCPPanel::frame_rate_spin_changed ()
264 {
265         if (!_film) {
266                 return;
267         }
268
269         _film->set_video_frame_rate (_frame_rate_spin->GetValue ());
270 }
271
272 void
273 DCPPanel::audio_channels_changed ()
274 {
275         if (!_film) {
276                 return;
277         }
278
279         _film->set_audio_channels (locale_convert<int> (string_client_data (_audio_channels->GetClientObject (_audio_channels->GetSelection ()))));
280 }
281
282 void
283 DCPPanel::resolution_changed ()
284 {
285         if (!_film) {
286                 return;
287         }
288
289         _film->set_resolution (_resolution->GetSelection() == 0 ? RESOLUTION_2K : RESOLUTION_4K);
290 }
291
292 void
293 DCPPanel::standard_changed ()
294 {
295         if (!_film) {
296                 return;
297         }
298
299         _film->set_interop (_standard->GetSelection() == 1);
300 }
301
302 void
303 DCPPanel::upload_after_make_dcp_changed ()
304 {
305         if (!_film) {
306                 return;
307         }
308
309         _film->set_upload_after_make_dcp (_upload_after_make_dcp->GetValue ());
310 }
311
312 void
313 DCPPanel::film_changed (int p)
314 {
315         switch (p) {
316         case Film::NONE:
317                 break;
318         case Film::CONTAINER:
319                 setup_container ();
320                 break;
321         case Film::NAME:
322                 checked_set (_name, _film->name());
323                 setup_dcp_name ();
324                 break;
325         case Film::DCP_CONTENT_TYPE:
326                 checked_set (_dcp_content_type, DCPContentType::as_index (_film->dcp_content_type ()));
327                 setup_dcp_name ();
328                 break;
329         case Film::SIGNED:
330                 checked_set (_signed, _film->is_signed ());
331                 break;
332         case Film::ENCRYPTED:
333                 checked_set (_encrypted, _film->encrypted ());
334                 if (_film->encrypted ()) {
335                         _film->set_signed (true);
336                         _signed->Enable (false);
337                         _key->Enable (_generally_sensitive);
338                         _edit_key->Enable (_generally_sensitive);
339                 } else {
340                         _signed->Enable (_generally_sensitive);
341                         _key->Enable (false);
342                         _edit_key->Enable (false);
343                 }
344                 break;
345         case Film::KEY:
346                 checked_set (_key, _film->key().hex().substr (0, 8) + "...");
347                 break;
348         case Film::RESOLUTION:
349                 checked_set (_resolution, _film->resolution() == RESOLUTION_2K ? 0 : 1);
350                 setup_container ();
351                 setup_dcp_name ();
352                 break;
353         case Film::J2K_BANDWIDTH:
354                 checked_set (_j2k_bandwidth, _film->j2k_bandwidth() / 1000000);
355                 break;
356         case Film::USE_ISDCF_NAME:
357         {
358                 checked_set (_use_isdcf_name, _film->use_isdcf_name ());
359                 setup_dcp_name ();
360                 _edit_isdcf_button->Enable (_film->use_isdcf_name ());
361                 break;
362         }
363         case Film::ISDCF_METADATA:
364                 setup_dcp_name ();
365                 break;
366         case Film::VIDEO_FRAME_RATE:
367         {
368                 bool done = false;
369                 for (unsigned int i = 0; i < _frame_rate_choice->GetCount(); ++i) {
370                         if (wx_to_std (_frame_rate_choice->GetString(i)) == boost::lexical_cast<string> (_film->video_frame_rate())) {
371                                 checked_set (_frame_rate_choice, i);
372                                 done = true;
373                                 break;
374                         }
375                 }
376
377                 if (!done) {
378                         checked_set (_frame_rate_choice, -1);
379                 }
380
381                 checked_set (_frame_rate_spin, _film->video_frame_rate ());
382
383                 _best_frame_rate->Enable (_film->best_video_frame_rate () != _film->video_frame_rate ());
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::all ();
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::all ();
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, _("Frame Rate"), true, wxGBPosition (r, 0));
657         {
658                 _frame_rate_sizer = new wxBoxSizer (wxHORIZONTAL);
659                 _frame_rate_choice = new wxChoice (panel, wxID_ANY);
660                 _frame_rate_sizer->Add (_frame_rate_choice, 1, wxALIGN_CENTER_VERTICAL);
661                 _frame_rate_spin = new wxSpinCtrl (panel, wxID_ANY);
662                 _frame_rate_sizer->Add (_frame_rate_spin, 1, wxALIGN_CENTER_VERTICAL);
663                 setup_frame_rate_widget ();
664                 _best_frame_rate = new wxButton (panel, wxID_ANY, _("Use best"));
665                 _frame_rate_sizer->Add (_best_frame_rate, 1, wxALIGN_CENTER_VERTICAL);
666                 grid->Add (_frame_rate_sizer, wxGBPosition (r, 1));
667                 ++r;
668         }
669
670         _three_d = new wxCheckBox (panel, wxID_ANY, _("3D"));
671         grid->Add (_three_d, wxGBPosition (r, 0), wxGBSpan (1, 2));
672         ++r;
673
674         add_label_to_sizer (grid, panel, _("Resolution"), true, wxGBPosition (r, 0));
675         _resolution = new wxChoice (panel, wxID_ANY);
676         grid->Add (_resolution, wxGBPosition (r, 1));
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         vector<Ratio const *> const ratio = Ratio::all ();
700         for (vector<Ratio const *>::const_iterator i = ratio.begin(); i != ratio.end(); ++i) {
701                 _container->Append (std_to_wx ((*i)->nickname ()));
702         }
703
704         list<int> const dfr = Config::instance()->allowed_dcp_frame_rates ();
705         for (list<int>::const_iterator i = dfr.begin(); i != dfr.end(); ++i) {
706                 _frame_rate_choice->Append (std_to_wx (boost::lexical_cast<string> (*i)));
707         }
708
709         _j2k_bandwidth->SetRange (1, Config::instance()->maximum_j2k_bandwidth() / 1000000);
710         _frame_rate_spin->SetRange (1, 480);
711
712         _resolution->Append (_("2K"));
713         _resolution->Append (_("4K"));
714
715         return panel;
716 }
717
718 int
719 DCPPanel::minimum_allowed_audio_channels () const
720 {
721         int min = 2;
722         if (_film && _film->audio_processor ()) {
723                 min = _film->audio_processor()->out_channels ();
724         }
725
726         if (min % 2 == 1) {
727                 ++min;
728         }
729
730         return min;
731 }
732
733 wxPanel *
734 DCPPanel::make_audio_panel ()
735 {
736         wxPanel* panel = new wxPanel (_notebook);
737         wxSizer* sizer = new wxBoxSizer (wxVERTICAL);
738         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
739         sizer->Add (grid, 0, wxALL, 8);
740         panel->SetSizer (sizer);
741
742         int r = 0;
743
744         add_label_to_sizer (grid, panel, _("Channels"), true, wxGBPosition (r, 0));
745         _audio_channels = new wxChoice (panel, wxID_ANY);
746         setup_audio_channels_choice (_audio_channels, minimum_allowed_audio_channels ());
747         grid->Add (_audio_channels, wxGBPosition (r, 1));
748         ++r;
749
750         add_label_to_sizer (grid, panel, _("Processor"), true, wxGBPosition (r, 0));
751         _audio_processor = new wxChoice (panel, wxID_ANY);
752         _audio_processor->Append (_("None"), new wxStringClientData (N_("none")));
753         BOOST_FOREACH (AudioProcessor const * ap, AudioProcessor::all ()) {
754                 _audio_processor->Append (std_to_wx (ap->name ()), new wxStringClientData (std_to_wx (ap->id ())));
755         }
756         grid->Add (_audio_processor, wxGBPosition (r, 1));
757         ++r;
758
759         _show_audio = new wxButton (panel, wxID_ANY, _("Show audio..."));
760         grid->Add (_show_audio, wxGBPosition (r, 0), wxGBSpan (1, 2));
761         ++r;
762
763         _audio_channels->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_channels_changed, this));
764         _audio_processor->Bind (wxEVT_CHOICE, boost::bind (&DCPPanel::audio_processor_changed, this));
765         _show_audio->Bind (wxEVT_BUTTON, boost::bind (&DCPPanel::show_audio_clicked, this));
766
767         return panel;
768 }
769
770 void
771 DCPPanel::copy_isdcf_name_button_clicked ()
772 {
773         _film->set_name (_film->isdcf_name (true));
774         _film->set_use_isdcf_name (false);
775 }
776
777 void
778 DCPPanel::audio_processor_changed ()
779 {
780         if (!_film) {
781                 return;
782         }
783
784         string const s = string_client_data (_audio_processor->GetClientObject (_audio_processor->GetSelection ()));
785         _film->set_audio_processor (AudioProcessor::from_id (s));
786 }
787
788 void
789 DCPPanel::show_audio_clicked ()
790 {
791         if (!_film) {
792                 return;
793         }
794
795         if (_audio_dialog) {
796                 _audio_dialog->Destroy ();
797                 _audio_dialog = 0;
798         }
799
800         AudioDialog* d = new AudioDialog (_panel, _film);
801         d->Show ();
802 }
803
804 void
805 DCPPanel::reel_type_changed ()
806 {
807         if (!_film) {
808                 return;
809         }
810
811         _film->set_reel_type (static_cast<ReelType> (_reel_type->GetSelection ()));
812 }
813
814 void
815 DCPPanel::reel_length_changed ()
816 {
817         if (!_film) {
818                 return;
819         }
820
821         _film->set_reel_length (_reel_length->GetValue() * 1000000000LL);
822 }