Make timeline non-modal.
[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_edit->Connect           (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::content_edit_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         _timeline_button->Connect        (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED,       wxCommandEventHandler (FilmEditor::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_edit = new wxButton (_content_panel, wxID_ANY, _("Edit..."));
365                 b->Add (_content_edit);
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
371                 s->Add (b, 0, wxALL, 4);
372
373                 _content_sizer->Add (s, 0.75, wxEXPAND | wxALL, 6);
374         }
375
376         _content_information = new wxTextCtrl (_content_panel, wxID_ANY, wxT ("\n \n "), wxDefaultPosition, wxDefaultSize, wxTE_READONLY | wxTE_MULTILINE);
377         _content_sizer->Add (_content_information, 1, wxEXPAND | wxALL, 6);
378
379         wxBoxSizer* h = new wxBoxSizer (wxHORIZONTAL);
380         _loop_content = new wxCheckBox (_content_panel, wxID_ANY, _("Loop everything"));
381         h->Add (_loop_content, 0, wxALL, 6);
382         _loop_count = new wxSpinCtrl (_content_panel, wxID_ANY);
383         h->Add (_loop_count, 0, wxALL, 6);
384         add_label_to_sizer (h, _content_panel, _("times"));
385         _content_sizer->Add (h, 0, wxALL, 6);
386
387         _playlist_description = new wxStaticText (_content_panel, wxID_ANY, wxT ("\n \n \n \n "));
388         _content_sizer->Add (_playlist_description, 0.25, wxEXPAND | wxALL, 6);
389         wxFont font = _playlist_description->GetFont();
390         font.SetStyle(wxFONTSTYLE_ITALIC);
391         font.SetPointSize(font.GetPointSize() - 1);
392         _playlist_description->SetFont(font);
393
394         _timeline_button = new wxButton (_content_panel, wxID_ANY, _("Timeline..."));
395         _content_sizer->Add (_timeline_button, 0, wxALL, 6);
396
397         _loop_count->SetRange (2, 1024);
398 }
399
400 void
401 FilmEditor::make_audio_panel ()
402 {
403         _audio_panel = new wxPanel (_notebook);
404         _audio_sizer = new wxBoxSizer (wxVERTICAL);
405         _audio_panel->SetSizer (_audio_sizer);
406         
407         wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
408         _audio_sizer->Add (grid, 0, wxALL, 8);
409
410         _show_audio = new wxButton (_audio_panel, wxID_ANY, _("Show Audio..."));
411         grid->Add (_show_audio, 1);
412         grid->AddSpacer (0);
413
414         {
415                 add_label_to_sizer (grid, _audio_panel, _("Audio Gain"));
416                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
417                 _audio_gain = new wxSpinCtrl (_audio_panel);
418                 s->Add (_audio_gain, 1);
419                 add_label_to_sizer (s, _audio_panel, _("dB"));
420                 _audio_gain_calculate_button = new wxButton (_audio_panel, wxID_ANY, _("Calculate..."));
421                 s->Add (_audio_gain_calculate_button, 1, wxEXPAND);
422                 grid->Add (s);
423         }
424
425         {
426                 add_label_to_sizer (grid, _audio_panel, _("Audio Delay"));
427                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
428                 _audio_delay = new wxSpinCtrl (_audio_panel);
429                 s->Add (_audio_delay, 1);
430                 /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time
431                 add_label_to_sizer (s, _audio_panel, _("ms"));
432                 grid->Add (s);
433         }
434
435         _audio_mapping = new AudioMappingView (_audio_panel);
436         _audio_sizer->Add (_audio_mapping, 1, wxEXPAND | wxALL, 6);
437         
438         _audio_gain->SetRange (-60, 60);
439         _audio_delay->SetRange (-1000, 1000);
440 }
441
442 void
443 FilmEditor::make_subtitle_panel ()
444 {
445         _subtitle_panel = new wxPanel (_notebook);
446         _subtitle_sizer = new wxBoxSizer (wxVERTICAL);
447         _subtitle_panel->SetSizer (_subtitle_sizer);
448         wxFlexGridSizer* grid = new wxFlexGridSizer (2, 4, 4);
449         _subtitle_sizer->Add (grid, 0, wxALL, 8);
450
451         _with_subtitles = new wxCheckBox (_subtitle_panel, wxID_ANY, _("With Subtitles"));
452         grid->Add (_with_subtitles, 1);
453         grid->AddSpacer (0);
454         
455         {
456                 add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Offset"));
457                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
458                 _subtitle_offset = new wxSpinCtrl (_subtitle_panel);
459                 s->Add (_subtitle_offset);
460                 add_label_to_sizer (s, _subtitle_panel, _("pixels"));
461                 grid->Add (s);
462         }
463
464         {
465                 add_label_to_sizer (grid, _subtitle_panel, _("Subtitle Scale"));
466                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
467                 _subtitle_scale = new wxSpinCtrl (_subtitle_panel);
468                 s->Add (_subtitle_scale);
469                 add_label_to_sizer (s, _subtitle_panel, _("%"));
470                 grid->Add (s);
471         }
472
473         _subtitle_offset->SetRange (-1024, 1024);
474         _subtitle_scale->SetRange (1, 1000);
475 }
476
477 /** Called when the left crop widget has been changed */
478 void
479 FilmEditor::left_crop_changed (wxCommandEvent &)
480 {
481         if (!_film) {
482                 return;
483         }
484
485         _film->set_left_crop (_left_crop->GetValue ());
486 }
487
488 /** Called when the right crop widget has been changed */
489 void
490 FilmEditor::right_crop_changed (wxCommandEvent &)
491 {
492         if (!_film) {
493                 return;
494         }
495
496         _film->set_right_crop (_right_crop->GetValue ());
497 }
498
499 /** Called when the top crop widget has been changed */
500 void
501 FilmEditor::top_crop_changed (wxCommandEvent &)
502 {
503         if (!_film) {
504                 return;
505         }
506
507         _film->set_top_crop (_top_crop->GetValue ());
508 }
509
510 /** Called when the bottom crop value has been changed */
511 void
512 FilmEditor::bottom_crop_changed (wxCommandEvent &)
513 {
514         if (!_film) {
515                 return;
516         }
517
518         _film->set_bottom_crop (_bottom_crop->GetValue ());
519 }
520
521 void
522 FilmEditor::trust_content_headers_changed (wxCommandEvent &)
523 {
524         if (!_film) {
525                 return;
526         }
527
528         _film->set_trust_content_headers (_trust_content_headers->GetValue ());
529 }
530
531 /** Called when the DCP A/B switch has been toggled */
532 void
533 FilmEditor::ab_toggled (wxCommandEvent &)
534 {
535         if (!_film) {
536                 return;
537         }
538         
539         _film->set_ab (_ab->GetValue ());
540 }
541
542 /** Called when the name widget has been changed */
543 void
544 FilmEditor::name_changed (wxCommandEvent &)
545 {
546         if (!_film) {
547                 return;
548         }
549
550         _film->set_name (string (_name->GetValue().mb_str()));
551 }
552
553 void
554 FilmEditor::subtitle_offset_changed (wxCommandEvent &)
555 {
556         if (!_film) {
557                 return;
558         }
559
560         _film->set_subtitle_offset (_subtitle_offset->GetValue ());
561 }
562
563 void
564 FilmEditor::subtitle_scale_changed (wxCommandEvent &)
565 {
566         if (!_film) {
567                 return;
568         }
569
570         _film->set_subtitle_scale (_subtitle_scale->GetValue() / 100.0);
571 }
572
573 void
574 FilmEditor::colour_lut_changed (wxCommandEvent &)
575 {
576         if (!_film) {
577                 return;
578         }
579         
580         _film->set_colour_lut (_colour_lut->GetSelection ());
581 }
582
583 void
584 FilmEditor::j2k_bandwidth_changed (wxCommandEvent &)
585 {
586         if (!_film) {
587                 return;
588         }
589         
590         _film->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1e6);
591 }
592
593 void
594 FilmEditor::dcp_frame_rate_changed (wxCommandEvent &)
595 {
596         if (!_film) {
597                 return;
598         }
599
600         _film->set_dcp_frame_rate (
601                 boost::lexical_cast<int> (
602                         wx_to_std (_dcp_frame_rate->GetString (_dcp_frame_rate->GetSelection ()))
603                         )
604                 );
605 }
606
607
608 /** Called when the metadata stored in the Film object has changed;
609  *  so that we can update the GUI.
610  *  @param p Property of the Film that has changed.
611  */
612 void
613 FilmEditor::film_changed (Film::Property p)
614 {
615         ensure_ui_thread ();
616         
617         if (!_film) {
618                 return;
619         }
620
621         stringstream s;
622                 
623         switch (p) {
624         case Film::NONE:
625                 break;
626         case Film::CONTENT:
627                 setup_content ();
628                 setup_formats ();
629                 setup_format ();
630                 setup_subtitle_control_sensitivity ();
631                 setup_show_audio_sensitivity ();
632                 setup_length ();
633                 break;
634         case Film::LOOP:
635                 checked_set (_loop_content, _film->loop() > 1);
636                 checked_set (_loop_count, _film->loop());
637                 setup_loop_sensitivity ();
638                 break;
639         case Film::TRUST_CONTENT_HEADERS:
640                 checked_set (_trust_content_headers, _film->trust_content_headers ());
641                 break;
642         case Film::FORMAT:
643                 setup_format ();
644                 break;
645         case Film::CROP:
646                 checked_set (_left_crop, _film->crop().left);
647                 checked_set (_right_crop, _film->crop().right);
648                 checked_set (_top_crop, _film->crop().top);
649                 checked_set (_bottom_crop, _film->crop().bottom);
650                 setup_scaling_description ();
651                 break;
652         case Film::FILTERS:
653         {
654                 pair<string, string> p = Filter::ffmpeg_strings (_film->filters ());
655                 if (p.first.empty () && p.second.empty ()) {
656                         _filters->SetLabel (_("None"));
657                 } else {
658                         string const b = p.first + " " + p.second;
659                         _filters->SetLabel (std_to_wx (b));
660                 }
661                 _film_sizer->Layout ();
662                 break;
663         }
664         case Film::NAME:
665                 checked_set (_name, _film->name());
666                 setup_dcp_name ();
667                 break;
668         case Film::DCP_CONTENT_TYPE:
669                 checked_set (_dcp_content_type, DCPContentType::as_index (_film->dcp_content_type ()));
670                 setup_dcp_name ();
671                 break;
672         case Film::AB:
673                 checked_set (_ab, _film->ab ());
674                 break;
675         case Film::SCALER:
676                 checked_set (_scaler, Scaler::as_index (_film->scaler ()));
677                 break;
678         case Film::TRIM_START:
679                 checked_set (_trim_start, _film->trim_start());
680                 break;
681         case Film::TRIM_END:
682                 checked_set (_trim_end, _film->trim_end());
683                 break;
684         case Film::TRIM_TYPE:
685                 checked_set (_trim_type, _film->trim_type() == Film::CPL ? 0 : 1);
686                 break;
687         case Film::AUDIO_GAIN:
688                 checked_set (_audio_gain, _film->audio_gain ());
689                 break;
690         case Film::AUDIO_DELAY:
691                 checked_set (_audio_delay, _film->audio_delay ());
692                 break;
693         case Film::WITH_SUBTITLES:
694                 checked_set (_with_subtitles, _film->with_subtitles ());
695                 setup_subtitle_control_sensitivity ();
696                 setup_dcp_name ();
697                 break;
698         case Film::SUBTITLE_OFFSET:
699                 checked_set (_subtitle_offset, _film->subtitle_offset ());
700                 break;
701         case Film::SUBTITLE_SCALE:
702                 checked_set (_subtitle_scale, _film->subtitle_scale() * 100);
703                 break;
704         case Film::COLOUR_LUT:
705                 checked_set (_colour_lut, _film->colour_lut ());
706                 break;
707         case Film::J2K_BANDWIDTH:
708                 checked_set (_j2k_bandwidth, double (_film->j2k_bandwidth()) / 1e6);
709                 break;
710         case Film::USE_DCI_NAME:
711                 checked_set (_use_dci_name, _film->use_dci_name ());
712                 setup_dcp_name ();
713                 break;
714         case Film::DCI_METADATA:
715                 setup_dcp_name ();
716                 break;
717         case Film::DCP_FRAME_RATE:
718         {
719                 bool done = false;
720                 for (unsigned int i = 0; i < _dcp_frame_rate->GetCount(); ++i) {
721                         if (wx_to_std (_dcp_frame_rate->GetString(i)) == boost::lexical_cast<string> (_film->dcp_frame_rate())) {
722                                 checked_set (_dcp_frame_rate, i);
723                                 done = true;
724                                 break;
725                         }
726                 }
727
728                 if (!done) {
729                         checked_set (_dcp_frame_rate, -1);
730                 }
731
732                 if (_film->video_frame_rate()) {
733                         _best_dcp_frame_rate->Enable (best_dcp_frame_rate (_film->video_frame_rate ()) != _film->dcp_frame_rate ());
734                 } else {
735                         _best_dcp_frame_rate->Disable ();
736                 }
737                 setup_frame_rate_description ();
738                 break;
739         }
740         case Film::AUDIO_MAPPING:
741                 _audio_mapping->set_mapping (_film->audio_mapping ());
742                 break;
743         }
744 }
745
746 void
747 FilmEditor::film_content_changed (weak_ptr<Content> content, int property)
748 {
749         if (!_film) {
750                 /* We call this method ourselves (as well as using it as a signal handler)
751                    so _film can be 0.
752                 */
753                 return;
754         }
755                 
756         if (property == FFmpegContentProperty::SUBTITLE_STREAMS) {
757                 setup_subtitle_control_sensitivity ();
758         } else if (property == FFmpegContentProperty::AUDIO_STREAMS) {
759                 setup_show_audio_sensitivity ();
760         } else if (property == VideoContentProperty::VIDEO_LENGTH || property == AudioContentProperty::AUDIO_LENGTH) {
761                 setup_length ();
762                 boost::shared_ptr<Content> c = content.lock ();
763                 if (c && c == selected_content()) {
764                         setup_content_information ();
765                 }
766         } else if (property == FFmpegContentProperty::AUDIO_STREAM) {
767                 setup_dcp_name ();
768                 setup_show_audio_sensitivity ();
769         }
770 }
771
772 void
773 FilmEditor::setup_format ()
774 {
775         int n = 0;
776         vector<Format const *>::iterator i = _formats.begin ();
777         while (i != _formats.end() && *i != _film->format ()) {
778                 ++i;
779                 ++n;
780         }
781         
782         if (i == _formats.end()) {
783                 checked_set (_format, -1);
784         } else {
785                 checked_set (_format, n);
786         }
787         
788         setup_dcp_name ();
789         setup_scaling_description ();
790 }       
791
792 void
793 FilmEditor::setup_length ()
794 {
795         stringstream s;
796         ContentVideoFrame const frames = _film->content_length ();
797         
798         if (frames && _film->video_frame_rate()) {
799                 s << frames << " " << wx_to_std (_("frames")) << "; " << seconds_to_hms (frames / _film->video_frame_rate());
800         } else if (frames) {
801                 s << frames << " " << wx_to_std (_("frames"));
802         }
803
804         _length->SetLabel (std_to_wx (s.str ()));
805         
806         if (frames) {
807                 _trim_start->SetRange (0, frames);
808                 _trim_end->SetRange (0, frames);
809         }
810 }       
811
812 void
813 FilmEditor::setup_frame_rate_description ()
814 {
815         wxString d;
816         int lines = 0;
817         
818         if (_film->video_frame_rate()) {
819                 d << std_to_wx (FrameRateConversion (_film->video_frame_rate(), _film->dcp_frame_rate()).description);
820                 ++lines;
821 #ifdef HAVE_SWRESAMPLE
822                 if (_film->audio_frame_rate() && _film->audio_frame_rate() != _film->target_audio_sample_rate ()) {
823                         d << wxString::Format (
824                                 _("Audio will be resampled from %dHz to %dHz\n"),
825                                 _film->audio_frame_rate(),
826                                 _film->target_audio_sample_rate()
827                                 );
828                         ++lines;
829                 }
830 #endif          
831         }
832
833         for (int i = lines; i < 2; ++i) {
834                 d << wxT ("\n ");
835         }
836
837         _frame_rate_description->SetLabel (d);
838 }
839
840 /** Called when the format widget has been changed */
841 void
842 FilmEditor::format_changed (wxCommandEvent &)
843 {
844         if (!_film) {
845                 return;
846         }
847
848         int const n = _format->GetSelection ();
849         if (n >= 0) {
850                 assert (n < int (_formats.size()));
851                 _film->set_format (_formats[n]);
852         }
853 }
854
855 /** Called when the DCP content type widget has been changed */
856 void
857 FilmEditor::dcp_content_type_changed (wxCommandEvent &)
858 {
859         if (!_film) {
860                 return;
861         }
862
863         int const n = _dcp_content_type->GetSelection ();
864         if (n != wxNOT_FOUND) {
865                 _film->set_dcp_content_type (DCPContentType::from_index (n));
866         }
867 }
868
869 /** Sets the Film that we are editing */
870 void
871 FilmEditor::set_film (shared_ptr<Film> f)
872 {
873         set_things_sensitive (f != 0);
874
875         if (_film == f) {
876                 return;
877         }
878         
879         _film = f;
880
881         if (_film) {
882                 _film->Changed.connect (bind (&FilmEditor::film_changed, this, _1));
883                 _film->ContentChanged.connect (bind (&FilmEditor::film_content_changed, this, _1, _2));
884         }
885
886         if (_film) {
887                 FileChanged (_film->directory ());
888         } else {
889                 FileChanged ("");
890         }
891
892         if (_audio_dialog) {
893                 _audio_dialog->set_film (_film);
894         }
895         
896         film_changed (Film::NAME);
897         film_changed (Film::USE_DCI_NAME);
898         film_changed (Film::CONTENT);
899         film_changed (Film::LOOP);
900         film_changed (Film::TRUST_CONTENT_HEADERS);
901         film_changed (Film::DCP_CONTENT_TYPE);
902         film_changed (Film::FORMAT);
903         film_changed (Film::CROP);
904         film_changed (Film::FILTERS);
905         film_changed (Film::SCALER);
906         film_changed (Film::TRIM_START);
907         film_changed (Film::TRIM_END);
908         film_changed (Film::AB);
909         film_changed (Film::TRIM_TYPE);
910         film_changed (Film::AUDIO_GAIN);
911         film_changed (Film::AUDIO_DELAY);
912         film_changed (Film::WITH_SUBTITLES);
913         film_changed (Film::SUBTITLE_OFFSET);
914         film_changed (Film::SUBTITLE_SCALE);
915         film_changed (Film::COLOUR_LUT);
916         film_changed (Film::J2K_BANDWIDTH);
917         film_changed (Film::DCI_METADATA);
918         film_changed (Film::DCP_FRAME_RATE);
919         film_changed (Film::AUDIO_MAPPING);
920
921         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::SUBTITLE_STREAMS);
922         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::SUBTITLE_STREAM);
923         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::AUDIO_STREAMS);
924         film_content_changed (boost::shared_ptr<Content> (), FFmpegContentProperty::AUDIO_STREAM);
925
926         setup_content_information ();
927 }
928
929 /** Updates the sensitivity of lots of widgets to a given value.
930  *  @param s true to make sensitive, false to make insensitive.
931  */
932 void
933 FilmEditor::set_things_sensitive (bool s)
934 {
935         _generally_sensitive = s;
936         
937         _name->Enable (s);
938         _use_dci_name->Enable (s);
939         _edit_dci_button->Enable (s);
940         _format->Enable (s);
941         _content->Enable (s);
942         _trust_content_headers->Enable (s);
943         _content->Enable (s);
944         _left_crop->Enable (s);
945         _right_crop->Enable (s);
946         _top_crop->Enable (s);
947         _bottom_crop->Enable (s);
948         _filters_button->Enable (s);
949         _scaler->Enable (s);
950         _dcp_content_type->Enable (s);
951         _best_dcp_frame_rate->Enable (s);
952         _dcp_frame_rate->Enable (s);
953         _trim_start->Enable (s);
954         _trim_end->Enable (s);
955         _ab->Enable (s);
956         _trim_type->Enable (s);
957         _colour_lut->Enable (s);
958         _j2k_bandwidth->Enable (s);
959         _audio_gain->Enable (s);
960         _audio_gain_calculate_button->Enable (s);
961         _show_audio->Enable (s);
962         _audio_delay->Enable (s);
963
964         setup_subtitle_control_sensitivity ();
965         setup_show_audio_sensitivity ();
966         setup_content_button_sensitivity ();
967 }
968
969 /** Called when the `Edit filters' button has been clicked */
970 void
971 FilmEditor::edit_filters_clicked (wxCommandEvent &)
972 {
973         FilterDialog* d = new FilterDialog (this, _film->filters());
974         d->ActiveChanged.connect (bind (&Film::set_filters, _film, _1));
975         d->ShowModal ();
976         d->Destroy ();
977 }
978
979 /** Called when the scaler widget has been changed */
980 void
981 FilmEditor::scaler_changed (wxCommandEvent &)
982 {
983         if (!_film) {
984                 return;
985         }
986
987         int const n = _scaler->GetSelection ();
988         if (n >= 0) {
989                 _film->set_scaler (Scaler::from_index (n));
990         }
991 }
992
993 void
994 FilmEditor::audio_gain_changed (wxCommandEvent &)
995 {
996         if (!_film) {
997                 return;
998         }
999
1000         _film->set_audio_gain (_audio_gain->GetValue ());
1001 }
1002
1003 void
1004 FilmEditor::audio_delay_changed (wxCommandEvent &)
1005 {
1006         if (!_film) {
1007                 return;
1008         }
1009
1010         _film->set_audio_delay (_audio_delay->GetValue ());
1011 }
1012
1013 void
1014 FilmEditor::setup_notebook_size ()
1015 {
1016         _notebook->InvalidateBestSize ();
1017         
1018         _film_sizer->Layout ();
1019         _film_sizer->SetSizeHints (_film_panel);
1020         _video_sizer->Layout ();
1021         _video_sizer->SetSizeHints (_video_panel);
1022         _audio_sizer->Layout ();
1023         _audio_sizer->SetSizeHints (_audio_panel);
1024         _subtitle_sizer->Layout ();
1025         _subtitle_sizer->SetSizeHints (_subtitle_panel);
1026
1027         _notebook->Fit ();
1028         Fit ();
1029 }
1030
1031 void
1032 FilmEditor::trim_start_changed (wxCommandEvent &)
1033 {
1034         if (!_film) {
1035                 return;
1036         }
1037
1038         _film->set_trim_start (_trim_start->GetValue ());
1039 }
1040
1041 void
1042 FilmEditor::trim_end_changed (wxCommandEvent &)
1043 {
1044         if (!_film) {
1045                 return;
1046         }
1047
1048         _film->set_trim_end (_trim_end->GetValue ());
1049 }
1050
1051 void
1052 FilmEditor::audio_gain_calculate_button_clicked (wxCommandEvent &)
1053 {
1054         GainCalculatorDialog* d = new GainCalculatorDialog (this);
1055         d->ShowModal ();
1056
1057         if (d->wanted_fader() == 0 || d->actual_fader() == 0) {
1058                 d->Destroy ();
1059                 return;
1060         }
1061         
1062         _audio_gain->SetValue (
1063                 Config::instance()->sound_processor()->db_for_fader_change (
1064                         d->wanted_fader (),
1065                         d->actual_fader ()
1066                         )
1067                 );
1068
1069         /* This appears to be necessary, as the change is not signalled,
1070            I think.
1071         */
1072         wxCommandEvent dummy;
1073         audio_gain_changed (dummy);
1074         
1075         d->Destroy ();
1076 }
1077
1078 void
1079 FilmEditor::setup_formats ()
1080 {
1081         _formats = Format::all ();
1082
1083         _format->Clear ();
1084         for (vector<Format const *>::iterator i = _formats.begin(); i != _formats.end(); ++i) {
1085                 _format->Append (std_to_wx ((*i)->name ()));
1086         }
1087
1088         _film_sizer->Layout ();
1089 }
1090
1091 void
1092 FilmEditor::with_subtitles_toggled (wxCommandEvent &)
1093 {
1094         if (!_film) {
1095                 return;
1096         }
1097
1098         _film->set_with_subtitles (_with_subtitles->GetValue ());
1099 }
1100
1101 void
1102 FilmEditor::setup_subtitle_control_sensitivity ()
1103 {
1104         bool h = false;
1105         if (_generally_sensitive && _film) {
1106                 h = !_film->has_subtitles ();
1107         }
1108         
1109         _with_subtitles->Enable (h);
1110
1111         bool j = false;
1112         if (_film) {
1113                 j = _film->with_subtitles ();
1114         }
1115         
1116         _subtitle_offset->Enable (j);
1117         _subtitle_scale->Enable (j);
1118 }
1119
1120 void
1121 FilmEditor::use_dci_name_toggled (wxCommandEvent &)
1122 {
1123         if (!_film) {
1124                 return;
1125         }
1126
1127         _film->set_use_dci_name (_use_dci_name->GetValue ());
1128 }
1129
1130 void
1131 FilmEditor::edit_dci_button_clicked (wxCommandEvent &)
1132 {
1133         if (!_film) {
1134                 return;
1135         }
1136
1137         DCIMetadataDialog* d = new DCIMetadataDialog (this, _film->dci_metadata ());
1138         d->ShowModal ();
1139         _film->set_dci_metadata (d->dci_metadata ());
1140         d->Destroy ();
1141 }
1142
1143 void
1144 FilmEditor::active_jobs_changed (bool a)
1145 {
1146         set_things_sensitive (!a);
1147 }
1148
1149 void
1150 FilmEditor::setup_dcp_name ()
1151 {
1152         string s = _film->dcp_name (true);
1153         if (s.length() > 28) {
1154                 _dcp_name->SetLabel (std_to_wx (s.substr (0, 28)) + N_("..."));
1155                 _dcp_name->SetToolTip (std_to_wx (s));
1156         } else {
1157                 _dcp_name->SetLabel (std_to_wx (s));
1158         }
1159 }
1160
1161 void
1162 FilmEditor::show_audio_clicked (wxCommandEvent &)
1163 {
1164         if (_audio_dialog) {
1165                 _audio_dialog->Destroy ();
1166                 _audio_dialog = 0;
1167         }
1168         
1169         _audio_dialog = new AudioDialog (this);
1170         _audio_dialog->Show ();
1171         _audio_dialog->set_film (_film);
1172 }
1173
1174 void
1175 FilmEditor::best_dcp_frame_rate_clicked (wxCommandEvent &)
1176 {
1177         if (!_film) {
1178                 return;
1179         }
1180         
1181         _film->set_dcp_frame_rate (best_dcp_frame_rate (_film->video_frame_rate ()));
1182 }
1183
1184 void
1185 FilmEditor::setup_show_audio_sensitivity ()
1186 {
1187         _show_audio->Enable (_film && _film->has_audio ());
1188 }
1189
1190 void
1191 FilmEditor::setup_content ()
1192 {
1193         string selected_summary;
1194         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1195         if (s != -1) {
1196                 selected_summary = wx_to_std (_content->GetItemText (s));
1197         }
1198         
1199         _content->DeleteAllItems ();
1200
1201         ContentList content = _film->content ();
1202         for (ContentList::iterator i = content.begin(); i != content.end(); ++i) {
1203                 int const t = _content->GetItemCount ();
1204                 _content->InsertItem (t, std_to_wx ((*i)->summary ()));
1205                 if ((*i)->summary() == selected_summary) {
1206                         _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
1207                 }
1208         }
1209
1210         if (selected_summary.empty () && !content.empty ()) {
1211                 /* Select the first item of content if non was selected before */
1212                 _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
1213         }
1214
1215         setup_playlist_description ();
1216 }
1217
1218 void
1219 FilmEditor::content_add_clicked (wxCommandEvent &)
1220 {
1221         wxFileDialog* d = new wxFileDialog (this, _("Choose a file or files"), wxT (""), wxT (""), wxT ("*.*"), wxFD_MULTIPLE);
1222         int const r = d->ShowModal ();
1223         d->Destroy ();
1224
1225         if (r != wxID_OK) {
1226                 return;
1227         }
1228
1229         wxArrayString paths;
1230         d->GetPaths (paths);
1231
1232         for (unsigned int i = 0; i < paths.GetCount(); ++i) {
1233                 boost::filesystem::path p (wx_to_std (paths[i]));
1234
1235                 if (ImageMagickContent::valid_file (p)) {
1236                         _film->add_content (shared_ptr<ImageMagickContent> (new ImageMagickContent (p)));
1237                 } else if (SndfileContent::valid_file (p)) {
1238                         _film->add_content (shared_ptr<SndfileContent> (new SndfileContent (p)));
1239                 } else {
1240                         _film->add_content (shared_ptr<FFmpegContent> (new FFmpegContent (p)));
1241                 }
1242         }
1243 }
1244
1245 void
1246 FilmEditor::content_remove_clicked (wxCommandEvent &)
1247 {
1248         shared_ptr<Content> c = selected_content ();
1249         if (c) {
1250                 _film->remove_content (c);
1251         }
1252 }
1253
1254 void
1255 FilmEditor::content_activated (wxListEvent& ev)
1256 {
1257         ContentList c = _film->content ();
1258         assert (ev.GetIndex() >= 0 && size_t (ev.GetIndex()) < c.size ());
1259
1260         edit_content (c[ev.GetIndex()]);
1261 }
1262
1263 void
1264 FilmEditor::content_edit_clicked (wxCommandEvent &)
1265 {
1266         shared_ptr<Content> c = selected_content ();
1267         if (!c) {
1268                 return;
1269         }
1270
1271         edit_content (c);
1272 }
1273
1274 void
1275 FilmEditor::edit_content (shared_ptr<Content> c)
1276 {
1277         shared_ptr<ImageMagickContent> im = dynamic_pointer_cast<ImageMagickContent> (c);
1278         if (im) {
1279                 ImageMagickContentDialog* d = new ImageMagickContentDialog (this, im);
1280                 d->ShowModal ();
1281                 d->Destroy ();
1282         }
1283
1284         shared_ptr<FFmpegContent> ff = dynamic_pointer_cast<FFmpegContent> (c);
1285         if (ff) {
1286                 FFmpegContentDialog* d = new FFmpegContentDialog (this, ff);
1287                 d->ShowModal ();
1288                 d->Destroy ();
1289         }
1290 }
1291
1292 void
1293 FilmEditor::content_earlier_clicked (wxCommandEvent &)
1294 {
1295         shared_ptr<Content> c = selected_content ();
1296         if (c) {
1297                 _film->move_content_earlier (c);
1298         }
1299 }
1300
1301 void
1302 FilmEditor::content_later_clicked (wxCommandEvent &)
1303 {
1304         shared_ptr<Content> c = selected_content ();
1305         if (c) {
1306                 _film->move_content_later (c);
1307         }
1308 }
1309
1310 void
1311 FilmEditor::content_selection_changed (wxListEvent &)
1312 {
1313         setup_content_button_sensitivity ();
1314         setup_content_information ();
1315 }
1316
1317 void
1318 FilmEditor::setup_content_information ()
1319 {
1320         shared_ptr<Content> c = selected_content ();
1321         if (!c) {
1322                 _content_information->SetValue (wxT (""));
1323                 return;
1324         }
1325
1326         _content_information->SetValue (std_to_wx (c->information ()));
1327 }
1328
1329 void
1330 FilmEditor::setup_content_button_sensitivity ()
1331 {
1332         _content_add->Enable (_generally_sensitive);
1333
1334         shared_ptr<Content> selection = selected_content ();
1335
1336         _content_edit->Enable (
1337                 selection && _generally_sensitive &&
1338                 (dynamic_pointer_cast<ImageMagickContent> (selection) || dynamic_pointer_cast<FFmpegContent> (selection))
1339                 );
1340         
1341         _content_remove->Enable (selection && _generally_sensitive);
1342         _content_earlier->Enable (selection && _generally_sensitive);
1343         _content_later->Enable (selection && _generally_sensitive);
1344 }
1345
1346 shared_ptr<Content>
1347 FilmEditor::selected_content ()
1348 {
1349         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1350         if (s == -1) {
1351                 return shared_ptr<Content> ();
1352         }
1353
1354         ContentList c = _film->content ();
1355         if (s < 0 || size_t (s) >= c.size ()) {
1356                 return shared_ptr<Content> ();
1357         }
1358         
1359         return c[s];
1360 }
1361
1362 void
1363 FilmEditor::setup_scaling_description ()
1364 {
1365         wxString d;
1366
1367         int lines = 0;
1368
1369         if (_film->video_size().width && _film->video_size().height) {
1370                 d << wxString::Format (
1371                         _("Original video is %dx%d (%.2f:1)\n"),
1372                         _film->video_size().width, _film->video_size().height,
1373                         float (_film->video_size().width) / _film->video_size().height
1374                         );
1375                 ++lines;
1376         }
1377
1378         Crop const crop = _film->crop ();
1379         if (crop.left || crop.right || crop.top || crop.bottom) {
1380                 libdcp::Size const cropped = _film->cropped_size (_film->video_size ());
1381                 d << wxString::Format (
1382                         _("Cropped to %dx%d (%.2f:1)\n"),
1383                         cropped.width, cropped.height,
1384                         float (cropped.width) / cropped.height
1385                         );
1386                 ++lines;
1387         }
1388
1389         Format const * format = _film->format ();
1390         if (format) {
1391                 int const padding = format->dcp_padding (_film);
1392                 libdcp::Size scaled = format->dcp_size ();
1393                 scaled.width -= padding * 2;
1394                 d << wxString::Format (
1395                         _("Scaled to %dx%d (%.2f:1)\n"),
1396                         scaled.width, scaled.height,
1397                         float (scaled.width) / scaled.height
1398                         );
1399                 ++lines;
1400
1401                 if (padding) {
1402                         d << wxString::Format (
1403                                 _("Padded with black to %dx%d (%.2f:1)\n"),
1404                                 format->dcp_size().width, format->dcp_size().height,
1405                                 float (format->dcp_size().width) / format->dcp_size().height
1406                                 );
1407                         ++lines;
1408                 }
1409         }
1410
1411         for (int i = lines; i < 4; ++i) {
1412                 d << wxT ("\n ");
1413         }
1414
1415         _scaling_description->SetLabel (d);
1416 }
1417
1418 void
1419 FilmEditor::trim_type_changed (wxCommandEvent &)
1420 {
1421         _film->set_trim_type (_trim_type->GetSelection () == 0 ? Film::CPL : Film::ENCODE);
1422 }
1423
1424 void
1425 FilmEditor::loop_content_toggled (wxCommandEvent &)
1426 {
1427         if (_loop_content->GetValue ()) {
1428                 _film->set_loop (_loop_count->GetValue ());
1429         } else {
1430                 _film->set_loop (1);
1431         }
1432                 
1433         setup_loop_sensitivity ();
1434 }
1435
1436 void
1437 FilmEditor::loop_count_changed (wxCommandEvent &)
1438 {
1439         _film->set_loop (_loop_count->GetValue ());
1440 }
1441
1442 void
1443 FilmEditor::setup_loop_sensitivity ()
1444 {
1445         _loop_count->Enable (_loop_content->GetValue ());
1446 }
1447
1448 void
1449 FilmEditor::setup_playlist_description ()
1450 {
1451         if (!_film) {
1452                 _playlist_description->SetLabel (wxT (""));
1453                 return;
1454         }
1455
1456         _playlist_description->SetLabel (std_to_wx (_film->playlist_description ()));
1457 }
1458
1459 void
1460 FilmEditor::timeline_clicked (wxCommandEvent &)
1461 {
1462         if (_timeline_dialog) {
1463                 _timeline_dialog->Destroy ();
1464                 _timeline_dialog = 0;
1465         }
1466         
1467         _timeline_dialog = new TimelineDialog (this, _film->playlist ());
1468         _timeline_dialog->Show ();
1469 }