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