23dbe19a995f0d05bfce89492a5e87b20bcd4a0d
[dcpomatic.git] / src / wx / film_editor.cc
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
5
6     This program 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     This program 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 this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 /** @file src/film_editor.cc
23  *  @brief A wx widget to edit a film's metadata, and perform various functions.
24  */
25
26 #include <iostream>
27 #include <iomanip>
28 #include <wx/wx.h>
29 #include <wx/notebook.h>
30 #include <wx/listctrl.h>
31 #include <boost/thread.hpp>
32 #include <boost/filesystem.hpp>
33 #include <boost/lexical_cast.hpp>
34 #include "lib/format.h"
35 #include "lib/film.h"
36 #include "lib/transcode_job.h"
37 #include "lib/exceptions.h"
38 #include "lib/ab_transcode_job.h"
39 #include "lib/job_manager.h"
40 #include "lib/filter.h"
41 #include "lib/config.h"
42 #include "lib/ffmpeg_decoder.h"
43 #include "lib/imagemagick_content.h"
44 #include "lib/sndfile_content.h"
45 #include "lib/dcp_content_type.h"
46 #include "filter_dialog.h"
47 #include "wx_util.h"
48 #include "film_editor.h"
49 #include "gain_calculator_dialog.h"
50 #include "sound_processor.h"
51 #include "dci_metadata_dialog.h"
52 #include "scaler.h"
53 #include "audio_dialog.h"
54 #include "imagemagick_content_dialog.h"
55 #include "timeline_dialog.h"
56 #include "audio_mapping_view.h"
57 #include "container.h"
58
59 using std::string;
60 using std::cout;
61 using std::stringstream;
62 using std::pair;
63 using std::fixed;
64 using std::setprecision;
65 using std::list;
66 using std::vector;
67 using std::max;
68 using boost::shared_ptr;
69 using boost::weak_ptr;
70 using boost::dynamic_pointer_cast;
71 using boost::lexical_cast;
72
73 /** @param f Film to edit */
74 FilmEditor::FilmEditor (shared_ptr<Film> f, wxWindow* parent)
75         : wxPanel (parent)
76         , _generally_sensitive (true)
77         , _audio_dialog (0)
78         , _timeline_dialog (0)
79 {
80         wxBoxSizer* s = new wxBoxSizer (wxVERTICAL);
81
82         _main_notebook = new wxNotebook (this, wxID_ANY);
83         s->Add (_main_notebook, 1);
84
85         make_content_panel ();
86         _main_notebook->AddPage (_content_panel, _("Content"), true);
87         make_dcp_panel ();
88         _main_notebook->AddPage (_dcp_panel, _("DCP"), false);
89         
90         setup_formats ();
91
92         set_film (f);
93         connect_to_widgets ();
94
95         JobManager::instance()->ActiveJobsChanged.connect (
96                 bind (&FilmEditor::active_jobs_changed, this, _1)
97                 );
98         
99         SetSizerAndFit (s);
100 }
101
102 void
103 FilmEditor::make_dcp_panel ()
104 {
105         _dcp_panel = new wxPanel (_main_notebook);
106         _dcp_sizer = new wxBoxSizer (wxVERTICAL);
107         _dcp_panel->SetSizer (_dcp_sizer);
108
109         wxGridBagSizer* grid = new wxGridBagSizer (4, 4);
110         _dcp_sizer->Add (grid, 0, wxEXPAND | wxALL, 8);
111
112         int r = 0;
113         
114         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Name"), wxGBPosition (r, 0));
115         _name = new wxTextCtrl (_dcp_panel, wxID_ANY);
116         grid->Add (_name, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
117         ++r;
118         
119         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("DCP Name"), wxGBPosition (r, 0));
120         _dcp_name = new wxStaticText (_dcp_panel, wxID_ANY, wxT (""));
121         grid->Add (_dcp_name, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
122         ++r;
123
124         _use_dci_name = new wxCheckBox (_dcp_panel, wxID_ANY, _("Use DCI name"));
125         grid->Add (_use_dci_name, wxGBPosition (r, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
126         _edit_dci_button = new wxButton (_dcp_panel, wxID_ANY, _("Details..."));
127         grid->Add (_edit_dci_button, wxGBPosition (r, 1), wxDefaultSpan);
128         ++r;
129
130         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Container"), wxGBPosition (r, 0));
131         _container = new wxChoice (_dcp_panel, wxID_ANY);
132         grid->Add (_container, wxGBPosition (r, 1));
133         ++r;
134
135         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Content Type"), wxGBPosition (r, 0));
136         _dcp_content_type = new wxChoice (_dcp_panel, wxID_ANY);
137         grid->Add (_dcp_content_type, wxGBPosition (r, 1));
138         ++r;
139
140         {
141                 add_label_to_grid_bag_sizer (grid, _dcp_panel, _("DCP Frame Rate"), wxGBPosition (r, 0));
142                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
143                 _dcp_frame_rate = new wxChoice (_dcp_panel, wxID_ANY);
144                 s->Add (_dcp_frame_rate, 1, wxALIGN_CENTER_VERTICAL);
145                 _best_dcp_frame_rate = new wxButton (_dcp_panel, wxID_ANY, _("Use best"));
146                 s->Add (_best_dcp_frame_rate, 1, wxALIGN_CENTER_VERTICAL | wxEXPAND);
147                 grid->Add (s, wxGBPosition (r, 1));
148         }
149         ++r;
150
151         {
152                 add_label_to_grid_bag_sizer (grid, _dcp_panel, _("JPEG2000 bandwidth"), wxGBPosition (r, 0));
153                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
154                 _j2k_bandwidth = new wxSpinCtrl (_dcp_panel, wxID_ANY);
155                 s->Add (_j2k_bandwidth, 1);
156                 add_label_to_sizer (s, _dcp_panel, _("MBps"));
157                 grid->Add (s, wxGBPosition (r, 1));
158         }
159         ++r;
160
161         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Scaler"), wxGBPosition (r, 0));
162         _scaler = new wxChoice (_dcp_panel, wxID_ANY);
163         grid->Add (_scaler, wxGBPosition (r, 1));
164         ++r;
165
166         vector<Scaler const *> const sc = Scaler::all ();
167         for (vector<Scaler const *>::const_iterator i = sc.begin(); i != sc.end(); ++i) {
168                 _scaler->Append (std_to_wx ((*i)->name()));
169         }
170
171         vector<Container const *> const co = Container::all ();
172         for (vector<Container const *>::const_iterator i = co.begin(); i != co.end(); ++i) {
173                 _container->Append (std_to_wx ((*i)->name ()));
174         }
175
176         vector<DCPContentType const *> const ct = DCPContentType::all ();
177         for (vector<DCPContentType const *>::const_iterator i = ct.begin(); i != ct.end(); ++i) {
178                 _dcp_content_type->Append (std_to_wx ((*i)->pretty_name ()));
179         }
180
181         list<int> const dfr = Config::instance()->allowed_dcp_frame_rates ();
182         for (list<int>::const_iterator i = dfr.begin(); i != dfr.end(); ++i) {
183                 _dcp_frame_rate->Append (std_to_wx (boost::lexical_cast<string> (*i)));
184         }
185
186         _j2k_bandwidth->SetRange (50, 250);
187 }
188
189 void
190 FilmEditor::connect_to_widgets ()
191 {
192         _name->Connect                   (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED,         wxCommandEventHandler (FilmEditor::name_changed), 0, this);
193         _use_dci_name->Connect           (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED,     wxCommandEventHandler (FilmEditor::use_dci_name_toggled), 0, this);
194         _edit_dci_button->Connect        (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::edit_dci_button_clicked), 0, this);
195         _container->Connect              (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::container_changed), 0, this);
196 //      _format->Connect                 (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::format_changed), 0, this);
197         _content->Connect                (wxID_ANY, wxEVT_COMMAND_LIST_ITEM_SELECTED,   wxListEventHandler    (FilmEditor::content_selection_changed), 0, this);
198         _content->Connect                (wxID_ANY, wxEVT_COMMAND_LIST_ITEM_DESELECTED, wxListEventHandler    (FilmEditor::content_selection_changed), 0, this);
199         _content_add->Connect            (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::content_add_clicked), 0, this);
200         _content_remove->Connect         (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::content_remove_clicked), 0, this);
201         _content_timeline->Connect       (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::content_timeline_clicked), 0, this);
202         _loop_content->Connect           (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED,     wxCommandEventHandler (FilmEditor::loop_content_toggled), 0, this);
203         _loop_count->Connect             (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::loop_count_changed), 0, this);
204         _left_crop->Connect              (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::left_crop_changed), 0, this);
205         _right_crop->Connect             (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::right_crop_changed), 0, this);
206         _top_crop->Connect               (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::top_crop_changed), 0, this);
207         _bottom_crop->Connect            (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::bottom_crop_changed), 0, this);
208         _filters_button->Connect         (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::edit_filters_clicked), 0, this);
209         _scaler->Connect                 (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::scaler_changed), 0, this);
210         _dcp_content_type->Connect       (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::dcp_content_type_changed), 0, this);
211         _dcp_frame_rate->Connect         (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::dcp_frame_rate_changed), 0, this);
212         _best_dcp_frame_rate->Connect    (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::best_dcp_frame_rate_clicked), 0, this);
213         _with_subtitles->Connect         (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED,     wxCommandEventHandler (FilmEditor::with_subtitles_toggled), 0, this);
214         _subtitle_offset->Connect        (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::subtitle_offset_changed), 0, this);
215         _subtitle_scale->Connect         (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::subtitle_scale_changed), 0, this);
216         _colour_lut->Connect             (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::colour_lut_changed), 0, this);
217         _j2k_bandwidth->Connect          (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::j2k_bandwidth_changed), 0, this);
218         _audio_gain->Connect             (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::audio_gain_changed), 0, this);
219         _audio_gain_calculate_button->Connect (
220                 wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmEditor::audio_gain_calculate_button_clicked), 0, this
221                 );
222         _show_audio->Connect             (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::show_audio_clicked), 0, this);
223         _audio_delay->Connect            (wxID_ANY, wxEVT_COMMAND_SPINCTRL_UPDATED,     wxCommandEventHandler (FilmEditor::audio_delay_changed), 0, this);
224         _audio_stream->Connect           (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::audio_stream_changed), 0, this);
225         _subtitle_stream->Connect        (wxID_ANY, wxEVT_COMMAND_CHOICE_SELECTED,      wxCommandEventHandler (FilmEditor::subtitle_stream_changed), 0, this);
226         _audio_mapping->Changed.connect  (bind (&FilmEditor::audio_mapping_changed, this, _1));
227 }
228
229 void
230 FilmEditor::make_video_panel ()
231 {
232         _video_panel = new wxPanel (_content_notebook);
233         _video_sizer = new wxBoxSizer (wxVERTICAL);
234         _video_panel->SetSizer (_video_sizer);
235         
236         wxGridBagSizer* grid = new wxGridBagSizer (4, 4);
237         _video_sizer->Add (grid, 0, wxALL, 8);
238
239         int r = 0;
240         add_label_to_grid_bag_sizer (grid, _video_panel, _("Format"), wxGBPosition (r, 0));
241         _format = new wxChoice (_video_panel, wxID_ANY);
242         grid->Add (_format, wxGBPosition (r, 1));
243         ++r;
244
245         add_label_to_grid_bag_sizer (grid, _video_panel, _("Left crop"), wxGBPosition (r, 0));
246         _left_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
247         grid->Add (_left_crop, wxGBPosition (r, 1));
248         ++r;
249
250         add_label_to_grid_bag_sizer (grid, _video_panel, _("Right crop"), wxGBPosition (r, 0));
251         _right_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
252         grid->Add (_right_crop, wxGBPosition (r, 1));
253         ++r;
254         
255         add_label_to_grid_bag_sizer (grid, _video_panel, _("Top crop"), wxGBPosition (r, 0));
256         _top_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
257         grid->Add (_top_crop, wxGBPosition (r, 1));
258         ++r;
259         
260         add_label_to_grid_bag_sizer (grid, _video_panel, _("Bottom crop"), wxGBPosition (r, 0));
261         _bottom_crop = new wxSpinCtrl (_video_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1));
262         grid->Add (_bottom_crop, wxGBPosition (r, 1));
263         ++r;
264
265         _scaling_description = new wxStaticText (_video_panel, wxID_ANY, wxT ("\n \n \n \n"), wxDefaultPosition, wxDefaultSize);
266         grid->Add (_scaling_description, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
267         wxFont font = _scaling_description->GetFont();
268         font.SetStyle(wxFONTSTYLE_ITALIC);
269         font.SetPointSize(font.GetPointSize() - 1);
270         _scaling_description->SetFont(font);
271         ++r;
272
273         /* VIDEO-only stuff */
274         {
275                 add_label_to_grid_bag_sizer (grid, _video_panel, _("Filters"), wxGBPosition (r, 0));
276                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
277                 _filters = new wxStaticText (_video_panel, wxID_ANY, _("None"));
278                 s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
279                 _filters_button = new wxButton (_video_panel, wxID_ANY, _("Edit..."));
280                 s->Add (_filters_button, 0);
281                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
282         }
283         ++r;
284
285         add_label_to_grid_bag_sizer (grid, _video_panel, _("Colour look-up table"), wxGBPosition (r, 0));
286         _colour_lut = new wxChoice (_video_panel, wxID_ANY);
287         for (int i = 0; i < 2; ++i) {
288                 _colour_lut->Append (std_to_wx (colour_lut_index_to_name (i)));
289         }
290         _colour_lut->SetSelection (0);
291         grid->Add (_colour_lut, wxGBPosition (r, 1), wxDefaultSpan, wxEXPAND);
292         ++r;
293
294         _left_crop->SetRange (0, 1024);
295         _top_crop->SetRange (0, 1024);
296         _right_crop->SetRange (0, 1024);
297         _bottom_crop->SetRange (0, 1024);
298 }
299
300 void
301 FilmEditor::make_content_panel ()
302 {
303         _content_panel = new wxPanel (_main_notebook);
304         _content_sizer = new wxBoxSizer (wxVERTICAL);
305         _content_panel->SetSizer (_content_sizer);
306
307         {
308                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
309                 
310                 _content = new wxListCtrl (_content_panel, wxID_ANY, wxDefaultPosition, wxSize (320, 160), wxLC_REPORT | wxLC_NO_HEADER | wxLC_SINGLE_SEL);
311                 s->Add (_content, 1, wxEXPAND | wxTOP | wxBOTTOM, 6);
312
313                 _content->InsertColumn (0, wxT(""));
314                 _content->SetColumnWidth (0, 512);
315
316                 wxBoxSizer* b = new wxBoxSizer (wxVERTICAL);
317                 _content_add = new wxButton (_content_panel, wxID_ANY, _("Add..."));
318                 b->Add (_content_add, 1, wxEXPAND | wxLEFT | wxRIGHT);
319                 _content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove"));
320                 b->Add (_content_remove, 1, wxEXPAND | wxLEFT | wxRIGHT);
321                 _content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline..."));
322                 b->Add (_content_timeline, 1, wxEXPAND | wxLEFT | wxRIGHT);
323
324                 s->Add (b, 0, wxALL, 4);
325
326                 _content_sizer->Add (s, 0.75, wxEXPAND | wxALL, 6);
327         }
328
329         wxBoxSizer* h = new wxBoxSizer (wxHORIZONTAL);
330         _loop_content = new wxCheckBox (_content_panel, wxID_ANY, _("Loop everything"));
331         h->Add (_loop_content, 0, wxALL, 6);
332         _loop_count = new wxSpinCtrl (_content_panel, wxID_ANY);
333         h->Add (_loop_count, 0, wxALL, 6);
334         add_label_to_sizer (h, _content_panel, _("times"));
335         _content_sizer->Add (h, 0, wxALL, 6);
336
337         _content_notebook = new wxNotebook (_content_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxNB_LEFT);
338         _content_sizer->Add (_content_notebook, 1, wxEXPAND | wxTOP, 6);
339         
340         make_video_panel ();
341         _content_notebook->AddPage (_video_panel, _("Video"), false);
342         make_audio_panel ();
343         _content_notebook->AddPage (_audio_panel, _("Audio"), false);
344         make_subtitle_panel ();
345         _content_notebook->AddPage (_subtitle_panel, _("Subtitles"), false);
346
347         _loop_count->SetRange (2, 1024);
348 }
349
350 void
351 FilmEditor::make_audio_panel ()
352 {
353         _audio_panel = new wxPanel (_content_notebook);
354         _audio_sizer = new wxBoxSizer (wxVERTICAL);
355         _audio_panel->SetSizer (_audio_sizer);
356         
357         wxFlexGridSizer* grid = new wxFlexGridSizer (3, 4, 4);
358         _audio_sizer->Add (grid, 0, wxALL, 8);
359
360         _show_audio = new wxButton (_audio_panel, wxID_ANY, _("Show Audio..."));
361         grid->Add (_show_audio, 1);
362         grid->AddSpacer (0);
363         grid->AddSpacer (0);
364
365         add_label_to_sizer (grid, _audio_panel, _("Audio Gain"));
366         {
367                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
368                 _audio_gain = new wxSpinCtrl (_audio_panel);
369                 s->Add (_audio_gain, 1);
370                 add_label_to_sizer (s, _audio_panel, _("dB"));
371                 grid->Add (s, 1);
372         }
373         
374         _audio_gain_calculate_button = new wxButton (_audio_panel, wxID_ANY, _("Calculate..."));
375         grid->Add (_audio_gain_calculate_button);
376
377         add_label_to_sizer (grid, _audio_panel, _("Audio Delay"));
378         {
379                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
380                 _audio_delay = new wxSpinCtrl (_audio_panel);
381                 s->Add (_audio_delay, 1);
382                 /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time
383                 add_label_to_sizer (s, _audio_panel, _("ms"));
384                 grid->Add (s);
385         }
386
387         grid->AddSpacer (0);
388
389         add_label_to_sizer (grid, _audio_panel, _("Audio Stream"));
390         _audio_stream = new wxChoice (_audio_panel, wxID_ANY);
391         grid->Add (_audio_stream, 1);
392         _audio_description = new wxStaticText (_audio_panel, wxID_ANY, wxT (""));
393         grid->AddSpacer (0);
394         
395         grid->Add (_audio_description, 1, wxALIGN_CENTER_VERTICAL | wxLEFT, 8);
396         grid->AddSpacer (0);
397         grid->AddSpacer (0);
398         
399         _audio_mapping = new AudioMappingView (_audio_panel);
400         _audio_sizer->Add (_audio_mapping, 1, wxEXPAND | wxALL, 6);
401
402         _audio_gain->SetRange (-60, 60);
403         _audio_delay->SetRange (-1000, 1000);
404 }
405
406 void
407 FilmEditor::make_subtitle_panel ()
408 {
409         _subtitle_panel = new wxPanel (_content_notebook);
410         _subtitle_sizer = new wxBoxSizer (wxVERTICAL);
411         _subtitle_panel->SetSizer (_subtitle_sizer);
412         wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
413         _subtitle_sizer->Add (grid, 0, wxALL, 8);
414
415         _with_subtitles = new wxCheckBox (_subtitle_panel, wxID_ANY, _("With Subtitles"));
416         grid->Add (_with_subtitles, 1);
417         grid->AddSpacer (0);
418         
419         {
420                 add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Offset"));
421                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
422                 _subtitle_offset = new wxSpinCtrl (_subtitle_panel);
423                 s->Add (_subtitle_offset);
424                 add_label_to_sizer (s, _subtitle_panel, _("pixels"));
425                 grid->Add (s);
426         }
427
428         {
429                 add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Scale"));
430                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
431                 _subtitle_scale = new wxSpinCtrl (_subtitle_panel);
432                 s->Add (_subtitle_scale);
433                 add_label_to_sizer (s, _subtitle_panel, _("%"));
434                 grid->Add (s);
435         }
436
437         add_label_to_sizer (grid, _subtitle_panel, _("Subtitle stream"));
438         _subtitle_stream = new wxChoice (_subtitle_panel, wxID_ANY);
439         grid->Add (_subtitle_stream, 1, wxEXPAND | wxALL, 6);
440         grid->AddSpacer (0);
441         
442         _subtitle_offset->SetRange (-1024, 1024);
443         _subtitle_scale->SetRange (1, 1000);
444 }
445
446 /** Called when the left crop widget has been changed */
447 void
448 FilmEditor::left_crop_changed (wxCommandEvent &)
449 {
450         shared_ptr<VideoContent> c = selected_video_content ();
451         if (!c) {
452                 return;
453         }
454
455         c->set_left_crop (_left_crop->GetValue ());
456 }
457
458 /** Called when the right crop widget has been changed */
459 void
460 FilmEditor::right_crop_changed (wxCommandEvent &)
461 {
462         shared_ptr<VideoContent> c = selected_video_content ();
463         if (!c) {
464                 return;
465         }
466
467         c->set_right_crop (_right_crop->GetValue ());
468 }
469
470 /** Called when the top crop widget has been changed */
471 void
472 FilmEditor::top_crop_changed (wxCommandEvent &)
473 {
474         shared_ptr<VideoContent> c = selected_video_content ();
475         if (!c) {
476                 return;
477         }
478
479         c->set_top_crop (_top_crop->GetValue ());
480 }
481
482 /** Called when the bottom crop value has been changed */
483 void
484 FilmEditor::bottom_crop_changed (wxCommandEvent &)
485 {
486         shared_ptr<VideoContent> c = selected_video_content ();
487         if (!c) {
488                 return;
489         }
490
491         c->set_bottom_crop (_bottom_crop->GetValue ());
492 }
493
494 /** Called when the name widget has been changed */
495 void
496 FilmEditor::name_changed (wxCommandEvent &)
497 {
498         if (!_film) {
499                 return;
500         }
501
502         _film->set_name (string (_name->GetValue().mb_str()));
503 }
504
505 void
506 FilmEditor::subtitle_offset_changed (wxCommandEvent &)
507 {
508         if (!_film) {
509                 return;
510         }
511
512         _film->set_subtitle_offset (_subtitle_offset->GetValue ());
513 }
514
515 void
516 FilmEditor::subtitle_scale_changed (wxCommandEvent &)
517 {
518         if (!_film) {
519                 return;
520         }
521
522         _film->set_subtitle_scale (_subtitle_scale->GetValue() / 100.0);
523 }
524
525 void
526 FilmEditor::colour_lut_changed (wxCommandEvent &)
527 {
528         if (!_film) {
529                 return;
530         }
531         
532         _film->set_colour_lut (_colour_lut->GetSelection ());
533 }
534
535 void
536 FilmEditor::j2k_bandwidth_changed (wxCommandEvent &)
537 {
538         if (!_film) {
539                 return;
540         }
541         
542         _film->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1e6);
543 }
544
545 void
546 FilmEditor::dcp_frame_rate_changed (wxCommandEvent &)
547 {
548         if (!_film) {
549                 return;
550         }
551
552         _film->set_dcp_video_frame_rate (
553                 boost::lexical_cast<int> (
554                         wx_to_std (_dcp_frame_rate->GetString (_dcp_frame_rate->GetSelection ()))
555                         )
556                 );
557 }
558
559
560 /** Called when the metadata stored in the Film object has changed;
561  *  so that we can update the GUI.
562  *  @param p Property of the Film that has changed.
563  */
564 void
565 FilmEditor::film_changed (Film::Property p)
566 {
567         ensure_ui_thread ();
568         
569         if (!_film) {
570                 return;
571         }
572
573         stringstream s;
574                 
575         switch (p) {
576         case Film::NONE:
577                 break;
578         case Film::CONTENT:
579                 setup_content ();
580                 setup_formats ();
581 //              setup_format ();
582                 setup_subtitle_control_sensitivity ();
583                 setup_show_audio_sensitivity ();
584                 break;
585         case Film::LOOP:
586                 checked_set (_loop_content, _film->loop() > 1);
587                 checked_set (_loop_count, _film->loop());
588                 setup_loop_sensitivity ();
589                 break;
590         case Film::CONTAINER:
591                 setup_container ();
592                 break;
593         case Film::FILTERS:
594         {
595                 pair<string, string> p = Filter::ffmpeg_strings (_film->filters ());
596                 if (p.first.empty () && p.second.empty ()) {
597                         _filters->SetLabel (_("None"));
598                 } else {
599                         string const b = p.first + " " + p.second;
600                         _filters->SetLabel (std_to_wx (b));
601                 }
602                 _dcp_sizer->Layout ();
603                 break;
604         }
605         case Film::NAME:
606                 checked_set (_name, _film->name());
607                 setup_dcp_name ();
608                 break;
609         case Film::DCP_CONTENT_TYPE:
610                 checked_set (_dcp_content_type, DCPContentType::as_index (_film->dcp_content_type ()));
611                 setup_dcp_name ();
612                 break;
613         case Film::SCALER:
614                 checked_set (_scaler, Scaler::as_index (_film->scaler ()));
615                 break;
616         case Film::AUDIO_GAIN:
617                 checked_set (_audio_gain, _film->audio_gain ());
618                 break;
619         case Film::AUDIO_DELAY:
620                 checked_set (_audio_delay, _film->audio_delay ());
621                 break;
622         case Film::WITH_SUBTITLES:
623                 checked_set (_with_subtitles, _film->with_subtitles ());
624                 setup_subtitle_control_sensitivity ();
625                 setup_dcp_name ();
626                 break;
627         case Film::SUBTITLE_OFFSET:
628                 checked_set (_subtitle_offset, _film->subtitle_offset ());
629                 break;
630         case Film::SUBTITLE_SCALE:
631                 checked_set (_subtitle_scale, _film->subtitle_scale() * 100);
632                 break;
633         case Film::COLOUR_LUT:
634                 checked_set (_colour_lut, _film->colour_lut ());
635                 break;
636         case Film::J2K_BANDWIDTH:
637                 checked_set (_j2k_bandwidth, double (_film->j2k_bandwidth()) / 1e6);
638                 break;
639         case Film::USE_DCI_NAME:
640                 checked_set (_use_dci_name, _film->use_dci_name ());
641                 setup_dcp_name ();
642                 break;
643         case Film::DCI_METADATA:
644                 setup_dcp_name ();
645                 break;
646         case Film::DCP_VIDEO_FRAME_RATE:
647         {
648                 bool done = false;
649                 for (unsigned int i = 0; i < _dcp_frame_rate->GetCount(); ++i) {
650                         if (wx_to_std (_dcp_frame_rate->GetString(i)) == boost::lexical_cast<string> (_film->dcp_video_frame_rate())) {
651                                 checked_set (_dcp_frame_rate, i);
652                                 done = true;
653                                 break;
654                         }
655                 }
656
657                 if (!done) {
658                         checked_set (_dcp_frame_rate, -1);
659                 }
660
661                 _best_dcp_frame_rate->Enable (_film->best_dcp_video_frame_rate () != _film->dcp_video_frame_rate ());
662                 break;
663         }
664         }
665 }
666
667 void
668 FilmEditor::film_content_changed (weak_ptr<Content> weak_content, int property)
669 {
670         if (!_film) {
671                 /* We call this method ourselves (as well as using it as a signal handler)
672                    so _film can be 0.
673                 */
674                 return;
675         }
676
677         shared_ptr<Content> content = weak_content.lock ();
678         shared_ptr<VideoContent> video_content;
679         if (content) {
680                 video_content = dynamic_pointer_cast<VideoContent> (content);
681         }
682
683         if (property == VideoContentProperty::VIDEO_CROP) {
684                 checked_set (_left_crop,   video_content ? video_content->crop().left :   0);
685                 checked_set (_right_crop,  video_content ? video_content->crop().right :  0);
686                 checked_set (_top_crop,    video_content ? video_content->crop().top :    0);
687                 checked_set (_bottom_crop, video_content ? video_content->crop().bottom : 0);
688                 setup_scaling_description ();
689         } else if (property == FFmpegContentProperty::SUBTITLE_STREAMS) {
690                 setup_subtitle_control_sensitivity ();
691         } else if (property == FFmpegContentProperty::AUDIO_STREAMS) {
692                 setup_show_audio_sensitivity ();
693         } else if (property == FFmpegContentProperty::AUDIO_STREAM) {
694                 setup_dcp_name ();
695                 setup_show_audio_sensitivity ();
696         }
697 }
698
699 void
700 FilmEditor::setup_container ()
701 {
702         int n = 0;
703         vector<Container const *> containers = Container::all ();
704         vector<Container const *>::iterator i = containers.begin ();
705         while (i != containers.end() && *i != _film->container ()) {
706                 ++i;
707                 ++n;
708         }
709         
710         if (i == containers.end()) {
711                 checked_set (_container, -1);
712         } else {
713                 checked_set (_container, n);
714         }
715         
716         setup_dcp_name ();
717         setup_scaling_description ();
718 }       
719
720 /** Called when the container widget has been changed */
721 void
722 FilmEditor::container_changed (wxCommandEvent &)
723 {
724         if (!_film) {
725                 return;
726         }
727
728         int const n = _container->GetSelection ();
729         if (n >= 0) {
730                 vector<Container const *> containers = Container::all ();
731                 assert (n < int (containers.size()));
732                 _film->set_container (containers[n]);
733         }
734 }
735
736 /** Called when the DCP content type widget has been changed */
737 void
738 FilmEditor::dcp_content_type_changed (wxCommandEvent &)
739 {
740         if (!_film) {
741                 return;
742         }
743
744         int const n = _dcp_content_type->GetSelection ();
745         if (n != wxNOT_FOUND) {
746                 _film->set_dcp_content_type (DCPContentType::from_index (n));
747         }
748 }
749
750 /** Sets the Film that we are editing */
751 void
752 FilmEditor::set_film (shared_ptr<Film> f)
753 {
754         set_things_sensitive (f != 0);
755
756         if (_film == f) {
757                 return;
758         }
759         
760         _film = f;
761
762         if (_film) {
763                 _film->Changed.connect (bind (&FilmEditor::film_changed, this, _1));
764                 _film->ContentChanged.connect (bind (&FilmEditor::film_content_changed, this, _1, _2));
765         }
766
767         if (_film) {
768                 FileChanged (_film->directory ());
769         } else {
770                 FileChanged ("");
771         }
772
773         if (_audio_dialog) {
774                 _audio_dialog->set_film (_film);
775         }
776         
777         film_changed (Film::NAME);
778         film_changed (Film::USE_DCI_NAME);
779         film_changed (Film::CONTENT);
780         film_changed (Film::LOOP);
781         film_changed (Film::DCP_CONTENT_TYPE);
782         film_changed (Film::CONTAINER);
783         film_changed (Film::FILTERS);
784         film_changed (Film::SCALER);
785         film_changed (Film::AUDIO_GAIN);
786         film_changed (Film::AUDIO_DELAY);
787         film_changed (Film::WITH_SUBTITLES);
788         film_changed (Film::SUBTITLE_OFFSET);
789         film_changed (Film::SUBTITLE_SCALE);
790         film_changed (Film::COLOUR_LUT);
791         film_changed (Film::J2K_BANDWIDTH);
792         film_changed (Film::DCI_METADATA);
793         film_changed (Film::DCP_VIDEO_FRAME_RATE);
794
795         film_content_changed (boost::shared_ptr<Content> (), VideoContentProperty::VIDEO_CROP);
796         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::SUBTITLE_STREAMS);
797         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::SUBTITLE_STREAM);
798         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::AUDIO_STREAMS);
799         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::AUDIO_STREAM);
800 }
801
802 /** Updates the sensitivity of lots of widgets to a given value.
803  *  @param s true to make sensitive, false to make insensitive.
804  */
805 void
806 FilmEditor::set_things_sensitive (bool s)
807 {
808         _generally_sensitive = s;
809         
810         _name->Enable (s);
811         _use_dci_name->Enable (s);
812         _edit_dci_button->Enable (s);
813         _format->Enable (s);
814         _content->Enable (s);
815         _content->Enable (s);
816         _left_crop->Enable (s);
817         _right_crop->Enable (s);
818         _top_crop->Enable (s);
819         _bottom_crop->Enable (s);
820         _filters_button->Enable (s);
821         _scaler->Enable (s);
822         _dcp_content_type->Enable (s);
823         _best_dcp_frame_rate->Enable (s);
824         _dcp_frame_rate->Enable (s);
825         _colour_lut->Enable (s);
826         _j2k_bandwidth->Enable (s);
827         _audio_gain->Enable (s);
828         _audio_gain_calculate_button->Enable (s);
829         _show_audio->Enable (s);
830         _audio_delay->Enable (s);
831
832         setup_subtitle_control_sensitivity ();
833         setup_show_audio_sensitivity ();
834         setup_content_button_sensitivity ();
835 }
836
837 /** Called when the `Edit filters' button has been clicked */
838 void
839 FilmEditor::edit_filters_clicked (wxCommandEvent &)
840 {
841         FilterDialog* d = new FilterDialog (this, _film->filters());
842         d->ActiveChanged.connect (bind (&Film::set_filters, _film, _1));
843         d->ShowModal ();
844         d->Destroy ();
845 }
846
847 /** Called when the scaler widget has been changed */
848 void
849 FilmEditor::scaler_changed (wxCommandEvent &)
850 {
851         if (!_film) {
852                 return;
853         }
854
855         int const n = _scaler->GetSelection ();
856         if (n >= 0) {
857                 _film->set_scaler (Scaler::from_index (n));
858         }
859 }
860
861 void
862 FilmEditor::audio_gain_changed (wxCommandEvent &)
863 {
864         if (!_film) {
865                 return;
866         }
867
868         _film->set_audio_gain (_audio_gain->GetValue ());
869 }
870
871 void
872 FilmEditor::audio_delay_changed (wxCommandEvent &)
873 {
874         if (!_film) {
875                 return;
876         }
877
878         _film->set_audio_delay (_audio_delay->GetValue ());
879 }
880
881 void
882 FilmEditor::setup_main_notebook_size ()
883 {
884         _main_notebook->InvalidateBestSize ();
885
886         _content_sizer->Layout ();
887         _content_sizer->SetSizeHints (_content_panel);
888         _dcp_sizer->Layout ();
889         _dcp_sizer->SetSizeHints (_dcp_panel);
890
891         _main_notebook->Fit ();
892         Fit ();
893 }
894
895 void
896 FilmEditor::audio_gain_calculate_button_clicked (wxCommandEvent &)
897 {
898         GainCalculatorDialog* d = new GainCalculatorDialog (this);
899         d->ShowModal ();
900
901         if (d->wanted_fader() == 0 || d->actual_fader() == 0) {
902                 d->Destroy ();
903                 return;
904         }
905         
906         _audio_gain->SetValue (
907                 Config::instance()->sound_processor()->db_for_fader_change (
908                         d->wanted_fader (),
909                         d->actual_fader ()
910                         )
911                 );
912
913         /* This appears to be necessary, as the change is not signalled,
914            I think.
915         */
916         wxCommandEvent dummy;
917         audio_gain_changed (dummy);
918         
919         d->Destroy ();
920 }
921
922 void
923 FilmEditor::setup_formats ()
924 {
925         _formats = Format::all ();
926
927         _format->Clear ();
928         for (vector<Format const *>::iterator i = _formats.begin(); i != _formats.end(); ++i) {
929                 _format->Append (std_to_wx ((*i)->name ()));
930         }
931
932         _dcp_sizer->Layout ();
933 }
934
935 void
936 FilmEditor::with_subtitles_toggled (wxCommandEvent &)
937 {
938         if (!_film) {
939                 return;
940         }
941
942         _film->set_with_subtitles (_with_subtitles->GetValue ());
943 }
944
945 void
946 FilmEditor::setup_subtitle_control_sensitivity ()
947 {
948         bool h = false;
949         if (_generally_sensitive && _film) {
950                 h = _film->has_subtitles ();
951         }
952         
953         _with_subtitles->Enable (h);
954
955         bool j = false;
956         if (_film) {
957                 j = _film->with_subtitles ();
958         }
959         
960         _subtitle_offset->Enable (j);
961         _subtitle_scale->Enable (j);
962 }
963
964 void
965 FilmEditor::use_dci_name_toggled (wxCommandEvent &)
966 {
967         if (!_film) {
968                 return;
969         }
970
971         _film->set_use_dci_name (_use_dci_name->GetValue ());
972 }
973
974 void
975 FilmEditor::edit_dci_button_clicked (wxCommandEvent &)
976 {
977         if (!_film) {
978                 return;
979         }
980
981         DCIMetadataDialog* d = new DCIMetadataDialog (this, _film->dci_metadata ());
982         d->ShowModal ();
983         _film->set_dci_metadata (d->dci_metadata ());
984         d->Destroy ();
985 }
986
987 void
988 FilmEditor::active_jobs_changed (bool a)
989 {
990         set_things_sensitive (!a);
991 }
992
993 void
994 FilmEditor::setup_dcp_name ()
995 {
996         string s = _film->dcp_name (true);
997         if (s.length() > 28) {
998                 _dcp_name->SetLabel (std_to_wx (s.substr (0, 28)) + N_("..."));
999                 _dcp_name->SetToolTip (std_to_wx (s));
1000         } else {
1001                 _dcp_name->SetLabel (std_to_wx (s));
1002         }
1003 }
1004
1005 void
1006 FilmEditor::show_audio_clicked (wxCommandEvent &)
1007 {
1008         if (_audio_dialog) {
1009                 _audio_dialog->Destroy ();
1010                 _audio_dialog = 0;
1011         }
1012         
1013         _audio_dialog = new AudioDialog (this);
1014         _audio_dialog->Show ();
1015         _audio_dialog->set_film (_film);
1016 }
1017
1018 void
1019 FilmEditor::best_dcp_frame_rate_clicked (wxCommandEvent &)
1020 {
1021         if (!_film) {
1022                 return;
1023         }
1024         
1025         _film->set_dcp_video_frame_rate (_film->best_dcp_video_frame_rate ());
1026 }
1027
1028 void
1029 FilmEditor::setup_show_audio_sensitivity ()
1030 {
1031         _show_audio->Enable (_film);
1032 }
1033
1034 void
1035 FilmEditor::setup_content ()
1036 {
1037         string selected_summary;
1038         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1039         if (s != -1) {
1040                 selected_summary = wx_to_std (_content->GetItemText (s));
1041         }
1042         
1043         _content->DeleteAllItems ();
1044
1045         Playlist::ContentList content = _film->content ();
1046         for (Playlist::ContentList::iterator i = content.begin(); i != content.end(); ++i) {
1047                 int const t = _content->GetItemCount ();
1048                 _content->InsertItem (t, std_to_wx ((*i)->summary ()));
1049                 if ((*i)->summary() == selected_summary) {
1050                         _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
1051                 }
1052         }
1053
1054         if (selected_summary.empty () && !content.empty ()) {
1055                 /* Select the item of content if non was selected before */
1056                 _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
1057         }
1058 }
1059
1060 void
1061 FilmEditor::content_add_clicked (wxCommandEvent &)
1062 {
1063         wxFileDialog* d = new wxFileDialog (this, _("Choose a file or files"), wxT (""), wxT (""), wxT ("*.*"), wxFD_MULTIPLE);
1064         int const r = d->ShowModal ();
1065         d->Destroy ();
1066
1067         if (r != wxID_OK) {
1068                 return;
1069         }
1070
1071         wxArrayString paths;
1072         d->GetPaths (paths);
1073
1074         for (unsigned int i = 0; i < paths.GetCount(); ++i) {
1075                 boost::filesystem::path p (wx_to_std (paths[i]));
1076
1077                 if (ImageMagickContent::valid_file (p)) {
1078                         _film->add_content (shared_ptr<ImageMagickContent> (new ImageMagickContent (p)));
1079                 } else if (SndfileContent::valid_file (p)) {
1080                         _film->add_content (shared_ptr<SndfileContent> (new SndfileContent (p)));
1081                 } else {
1082                         _film->add_content (shared_ptr<FFmpegContent> (new FFmpegContent (p)));
1083                 }
1084         }
1085 }
1086
1087 void
1088 FilmEditor::content_remove_clicked (wxCommandEvent &)
1089 {
1090         shared_ptr<Content> c = selected_content ();
1091         if (c) {
1092                 _film->remove_content (c);
1093         }
1094 }
1095
1096 void
1097 FilmEditor::content_selection_changed (wxListEvent &)
1098 {
1099         setup_content_button_sensitivity ();
1100 }
1101
1102 void
1103 FilmEditor::setup_content_button_sensitivity ()
1104 {
1105         _content_add->Enable (_generally_sensitive);
1106
1107         shared_ptr<Content> selection = selected_content ();
1108
1109         _content_remove->Enable (selection && _generally_sensitive);
1110         _content_timeline->Enable (_generally_sensitive);
1111 }
1112
1113 shared_ptr<Content>
1114 FilmEditor::selected_content ()
1115 {
1116         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1117         if (s == -1) {
1118                 return shared_ptr<Content> ();
1119         }
1120
1121         Playlist::ContentList c = _film->content ();
1122         if (s < 0 || size_t (s) >= c.size ()) {
1123                 return shared_ptr<Content> ();
1124         }
1125         
1126         return c[s];
1127 }
1128
1129 shared_ptr<VideoContent>
1130 FilmEditor::selected_video_content ()
1131 {
1132         shared_ptr<Content> c = selected_content ();
1133         if (!c) {
1134                 return shared_ptr<VideoContent> ();
1135         }
1136
1137         return dynamic_pointer_cast<VideoContent> (c);
1138 }
1139
1140 void
1141 FilmEditor::setup_scaling_description ()
1142 {
1143         wxString d;
1144
1145 #if 0   
1146 XXX
1147         int lines = 0;
1148
1149         if (_film->video_size().width && _film->video_size().height) {
1150                 d << wxString::Format (
1151                         _("Original video is %dx%d (%.2f:1)\n"),
1152                         _film->video_size().width, _film->video_size().height,
1153                         float (_film->video_size().width) / _film->video_size().height
1154                         );
1155                 ++lines;
1156         }
1157
1158         Crop const crop = _film->crop ();
1159         if (crop.left || crop.right || crop.top || crop.bottom) {
1160                 libdcp::Size const cropped = _film->cropped_size (_film->video_size ());
1161                 d << wxString::Format (
1162                         _("Cropped to %dx%d (%.2f:1)\n"),
1163                         cropped.width, cropped.height,
1164                         float (cropped.width) / cropped.height
1165                         );
1166                 ++lines;
1167         }
1168
1169         Format const * format = _film->format ();
1170         if (format) {
1171                 int const padding = format->dcp_padding (_film);
1172                 libdcp::Size scaled = format->dcp_size ();
1173                 scaled.width -= padding * 2;
1174                 d << wxString::Format (
1175                         _("Scaled to %dx%d (%.2f:1)\n"),
1176                         scaled.width, scaled.height,
1177                         float (scaled.width) / scaled.height
1178                         );
1179                 ++lines;
1180
1181                 if (padding) {
1182                         d << wxString::Format (
1183                                 _("Padded with black to %dx%d (%.2f:1)\n"),
1184                                 format->dcp_size().width, format->dcp_size().height,
1185                                 float (format->dcp_size().width) / format->dcp_size().height
1186                                 );
1187                         ++lines;
1188                 }
1189         }
1190
1191         for (int i = lines; i < 4; ++i) {
1192                 d << wxT ("\n ");
1193         }
1194
1195 #endif  
1196         _scaling_description->SetLabel (d);
1197 }
1198
1199 void
1200 FilmEditor::loop_content_toggled (wxCommandEvent &)
1201 {
1202         if (_loop_content->GetValue ()) {
1203                 _film->set_loop (_loop_count->GetValue ());
1204         } else {
1205                 _film->set_loop (1);
1206         }
1207                 
1208         setup_loop_sensitivity ();
1209 }
1210
1211 void
1212 FilmEditor::loop_count_changed (wxCommandEvent &)
1213 {
1214         _film->set_loop (_loop_count->GetValue ());
1215 }
1216
1217 void
1218 FilmEditor::setup_loop_sensitivity ()
1219 {
1220         _loop_count->Enable (_loop_content->GetValue ());
1221 }
1222
1223 void
1224 FilmEditor::content_timeline_clicked (wxCommandEvent &)
1225 {
1226         if (_timeline_dialog) {
1227                 _timeline_dialog->Destroy ();
1228                 _timeline_dialog = 0;
1229         }
1230         
1231         _timeline_dialog = new TimelineDialog (this, _film);
1232         _timeline_dialog->Show ();
1233 }
1234
1235 void
1236 FilmEditor::setup_content_properties ()
1237 {
1238         _audio_stream->Clear ();
1239         _subtitle_stream->Clear ();
1240
1241         shared_ptr<Content> c = selected_content ();
1242         if (!c) {
1243                 return;
1244         }
1245
1246         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
1247         if (fc) {
1248                 
1249                 vector<shared_ptr<FFmpegAudioStream> > a = fc->audio_streams ();
1250                 for (vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin(); i != a.end(); ++i) {
1251                         _audio_stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx (lexical_cast<string> ((*i)->id))));
1252                 }
1253                 
1254                 if (fc->audio_stream()) {
1255                         checked_set (_audio_stream, lexical_cast<string> (fc->audio_stream()->id));
1256                 }
1257                 
1258                 vector<shared_ptr<FFmpegSubtitleStream> > s = fc->subtitle_streams ();
1259                 if (s.empty ()) {
1260                         _subtitle_stream->Enable (false);
1261                 }
1262                 for (vector<shared_ptr<FFmpegSubtitleStream> >::iterator i = s.begin(); i != s.end(); ++i) {
1263                         _subtitle_stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx (lexical_cast<string> ((*i)->id))));
1264                 }
1265                 
1266                 if (fc->subtitle_stream()) {
1267                         checked_set (_subtitle_stream, lexical_cast<string> (fc->subtitle_stream()->id));
1268                 } else {
1269                         _subtitle_stream->SetSelection (wxNOT_FOUND);
1270                 }
1271
1272                 /* XXX: should be general audiocontent */
1273                 _audio_mapping->set_mapping (fc->audio_mapping ());
1274         }
1275 }
1276
1277 void
1278 FilmEditor::audio_stream_changed (wxCommandEvent &)
1279 {
1280         shared_ptr<Content> c = selected_content ();
1281         if (!c) {
1282                 return;
1283         }
1284         
1285         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
1286         if (!fc) {
1287                 return;
1288         }
1289         
1290         vector<shared_ptr<FFmpegAudioStream> > a = fc->audio_streams ();
1291         vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin ();
1292         string const s = string_client_data (_audio_stream->GetClientObject (_audio_stream->GetSelection ()));
1293         while (i != a.end() && lexical_cast<string> ((*i)->id) != s) {
1294                 ++i;
1295         }
1296
1297         if (i != a.end ()) {
1298                 fc->set_audio_stream (*i);
1299         }
1300
1301         if (!fc->audio_stream ()) {
1302                 _audio_description->SetLabel (wxT (""));
1303         } else {
1304                 wxString s;
1305                 if (fc->audio_channels() == 1) {
1306                         s << _("1 channel");
1307                 } else {
1308                         s << fc->audio_channels() << wxT (" ") << _("channels");
1309                 }
1310                 s << wxT (", ") << fc->content_audio_frame_rate() << _("Hz");
1311                 _audio_description->SetLabel (s);
1312         }
1313 }
1314
1315
1316
1317 void
1318 FilmEditor::subtitle_stream_changed (wxCommandEvent &)
1319 {
1320         shared_ptr<Content> c = selected_content ();
1321         if (!c) {
1322                 return;
1323         }
1324         
1325         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
1326         if (!fc) {
1327                 return;
1328         }
1329         
1330         vector<shared_ptr<FFmpegSubtitleStream> > a = fc->subtitle_streams ();
1331         vector<shared_ptr<FFmpegSubtitleStream> >::iterator i = a.begin ();
1332         string const s = string_client_data (_subtitle_stream->GetClientObject (_subtitle_stream->GetSelection ()));
1333         while (i != a.end() && lexical_cast<string> ((*i)->id) != s) {
1334                 ++i;
1335         }
1336
1337         if (i != a.end ()) {
1338                 fc->set_subtitle_stream (*i);
1339         }
1340 }
1341
1342 void
1343 FilmEditor::audio_mapping_changed (AudioMapping m)
1344 {
1345         shared_ptr<Content> c = selected_content ();
1346         if (!c) {
1347                 return;
1348         }
1349         
1350         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
1351         if (!fc) {
1352                 return;
1353         }
1354
1355         /* XXX: should be general to audiocontent */
1356         fc->audio_stream()->mapping = m;
1357 }