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