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