5143bd3704eb6a83424391fe96f09888710fcddc
[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 (p == FFmpegContentProperty::SUBTITLE_STREAMS) {
694                 setup_subtitle_control_sensitivity ();
695                 setup_streams ();
696         } else if (p == FFmpegContentProperty::AUDIO_STREAMS) {
697                 setup_streams ();
698                 setup_show_audio_sensitivity ();
699         } else if (p == VideoContentProperty::VIDEO_LENGTH) {
700                 setup_length ();
701         } else if (p == FFmpegContentProperty::AUDIO_STREAM) {
702                 if (_film->ffmpeg_audio_stream()) {
703                         checked_set (_ffmpeg_audio_stream, _film->ffmpeg_audio_stream()->id);
704                 }
705                 setup_dcp_name ();
706                 setup_audio_details ();
707                 setup_show_audio_sensitivity ();
708         } else if (p == FFmpegContentProperty::SUBTITLE_STREAM) {
709                 if (_film->ffmpeg_subtitle_stream()) {
710                         checked_set (_ffmpeg_subtitle_stream, _film->ffmpeg_subtitle_stream()->id);
711                 }
712         }
713 }
714
715 void
716 FilmEditor::setup_format ()
717 {
718         int n = 0;
719         vector<Format const *>::iterator i = _formats.begin ();
720         while (i != _formats.end() && *i != _film->format ()) {
721                 ++i;
722                 ++n;
723         }
724         if (i == _formats.end()) {
725                 checked_set (_format, -1);
726         } else {
727                 checked_set (_format, n);
728         }
729         setup_dcp_name ();
730         
731         if (_film->format ()) {
732                 _format_description->SetLabel (std_to_wx (_film->format()->description ()));
733         } else {
734                 _format_description->SetLabel (wxT (""));
735         }
736 }       
737
738 void
739 FilmEditor::setup_length ()
740 {
741         stringstream s;
742         if (_film->video_frame_rate() > 0 && _film->video_length()) {
743                 s << _film->video_length() << " "
744                   << wx_to_std (_("frames")) << "; " << seconds_to_hms (_film->video_length() / _film->video_frame_rate());
745         } else if (_film->video_length()) {
746                 s << _film->video_length() << " "
747                   << wx_to_std (_("frames"));
748         } 
749         _length->SetLabel (std_to_wx (s.str ()));
750         if (_film->video_length()) {
751                 _trim_start->SetRange (0, _film->video_length());
752                 _trim_end->SetRange (0, _film->video_length());
753         }
754 }       
755
756
757 /** Called when the format widget has been changed */
758 void
759 FilmEditor::format_changed (wxCommandEvent &)
760 {
761         if (!_film) {
762                 return;
763         }
764
765         int const n = _format->GetSelection ();
766         if (n >= 0) {
767                 assert (n < int (_formats.size()));
768                 _film->set_format (_formats[n]);
769         }
770 }
771
772 /** Called when the DCP content type widget has been changed */
773 void
774 FilmEditor::dcp_content_type_changed (wxCommandEvent &)
775 {
776         if (!_film) {
777                 return;
778         }
779
780         int const n = _dcp_content_type->GetSelection ();
781         if (n != wxNOT_FOUND) {
782                 _film->set_dcp_content_type (DCPContentType::from_index (n));
783         }
784 }
785
786 /** Sets the Film that we are editing */
787 void
788 FilmEditor::set_film (shared_ptr<Film> f)
789 {
790         _film = f;
791
792         set_things_sensitive (_film != 0);
793
794         if (_film) {
795                 _film->Changed.connect (bind (&FilmEditor::film_changed, this, _1));
796                 _film->ContentChanged.connect (bind (&FilmEditor::film_content_changed, this, _1));
797         }
798
799         if (_film) {
800                 FileChanged (_film->directory ());
801         } else {
802                 FileChanged ("");
803         }
804
805         if (_audio_dialog) {
806                 _audio_dialog->set_film (_film);
807         }
808         
809         film_changed (Film::NAME);
810         film_changed (Film::USE_DCI_NAME);
811         film_changed (Film::CONTENT);
812         film_changed (Film::TRUST_CONTENT_HEADERS);
813         film_changed (Film::DCP_CONTENT_TYPE);
814         film_changed (Film::FORMAT);
815         film_changed (Film::CROP);
816         film_changed (Film::FILTERS);
817         film_changed (Film::SCALER);
818         film_changed (Film::TRIM_START);
819         film_changed (Film::TRIM_END);
820         film_changed (Film::AB);
821         film_changed (Film::AUDIO_GAIN);
822         film_changed (Film::AUDIO_DELAY);
823         film_changed (Film::WITH_SUBTITLES);
824         film_changed (Film::SUBTITLE_OFFSET);
825         film_changed (Film::SUBTITLE_SCALE);
826         film_changed (Film::COLOUR_LUT);
827         film_changed (Film::J2K_BANDWIDTH);
828         film_changed (Film::DCI_METADATA);
829         film_changed (Film::DCP_FRAME_RATE);
830
831         film_content_changed (FFmpegContentProperty::SUBTITLE_STREAMS);
832         film_content_changed (FFmpegContentProperty::SUBTITLE_STREAM);
833         film_content_changed (FFmpegContentProperty::AUDIO_STREAMS);
834         film_content_changed (FFmpegContentProperty::AUDIO_STREAM);
835 }
836
837 /** Updates the sensitivity of lots of widgets to a given value.
838  *  @param s true to make sensitive, false to make insensitive.
839  */
840 void
841 FilmEditor::set_things_sensitive (bool s)
842 {
843         _generally_sensitive = s;
844         
845         _name->Enable (s);
846         _use_dci_name->Enable (s);
847         _edit_dci_button->Enable (s);
848         _format->Enable (s);
849         _content->Enable (s);
850         _trust_content_headers->Enable (s);
851         _content->Enable (s);
852         _left_crop->Enable (s);
853         _right_crop->Enable (s);
854         _top_crop->Enable (s);
855         _bottom_crop->Enable (s);
856         _filters_button->Enable (s);
857         _scaler->Enable (s);
858         _ffmpeg_audio_stream->Enable (s);
859         _dcp_content_type->Enable (s);
860         _dcp_frame_rate->Enable (s);
861         _trim_start->Enable (s);
862         _trim_end->Enable (s);
863         _ab->Enable (s);
864         _colour_lut->Enable (s);
865         _j2k_bandwidth->Enable (s);
866         _audio_gain->Enable (s);
867         _audio_gain_calculate_button->Enable (s);
868         _show_audio->Enable (s);
869         _audio_delay->Enable (s);
870
871         setup_subtitle_control_sensitivity ();
872         setup_show_audio_sensitivity ();
873         setup_content_button_sensitivity ();
874 }
875
876 /** Called when the `Edit filters' button has been clicked */
877 void
878 FilmEditor::edit_filters_clicked (wxCommandEvent &)
879 {
880         FilterDialog* d = new FilterDialog (this, _film->filters());
881         d->ActiveChanged.connect (bind (&Film::set_filters, _film, _1));
882         d->ShowModal ();
883         d->Destroy ();
884 }
885
886 /** Called when the scaler widget has been changed */
887 void
888 FilmEditor::scaler_changed (wxCommandEvent &)
889 {
890         if (!_film) {
891                 return;
892         }
893
894         int const n = _scaler->GetSelection ();
895         if (n >= 0) {
896                 _film->set_scaler (Scaler::from_index (n));
897         }
898 }
899
900 void
901 FilmEditor::audio_gain_changed (wxCommandEvent &)
902 {
903         if (!_film) {
904                 return;
905         }
906
907         _film->set_audio_gain (_audio_gain->GetValue ());
908 }
909
910 void
911 FilmEditor::audio_delay_changed (wxCommandEvent &)
912 {
913         if (!_film) {
914                 return;
915         }
916
917         _film->set_audio_delay (_audio_delay->GetValue ());
918 }
919
920 void
921 FilmEditor::trim_start_changed (wxCommandEvent &)
922 {
923         if (!_film) {
924                 return;
925         }
926
927         _film->set_trim_start (_trim_start->GetValue ());
928 }
929
930 void
931 FilmEditor::trim_end_changed (wxCommandEvent &)
932 {
933         if (!_film) {
934                 return;
935         }
936
937         _film->set_trim_end (_trim_end->GetValue ());
938 }
939
940 void
941 FilmEditor::audio_gain_calculate_button_clicked (wxCommandEvent &)
942 {
943         GainCalculatorDialog* d = new GainCalculatorDialog (this);
944         d->ShowModal ();
945
946         if (d->wanted_fader() == 0 || d->actual_fader() == 0) {
947                 d->Destroy ();
948                 return;
949         }
950         
951         _audio_gain->SetValue (
952                 Config::instance()->sound_processor()->db_for_fader_change (
953                         d->wanted_fader (),
954                         d->actual_fader ()
955                         )
956                 );
957
958         /* This appears to be necessary, as the change is not signalled,
959            I think.
960         */
961         wxCommandEvent dummy;
962         audio_gain_changed (dummy);
963         
964         d->Destroy ();
965 }
966
967 void
968 FilmEditor::setup_formats ()
969 {
970         _formats = Format::all ();
971
972         _format->Clear ();
973         for (vector<Format const *>::iterator i = _formats.begin(); i != _formats.end(); ++i) {
974                 _format->Append (std_to_wx ((*i)->name ()));
975         }
976
977         _film_sizer->Layout ();
978 }
979
980 void
981 FilmEditor::with_subtitles_toggled (wxCommandEvent &)
982 {
983         if (!_film) {
984                 return;
985         }
986
987         _film->set_with_subtitles (_with_subtitles->GetValue ());
988 }
989
990 void
991 FilmEditor::setup_subtitle_control_sensitivity ()
992 {
993         bool h = false;
994         if (_generally_sensitive && _film) {
995                 h = !_film->ffmpeg_subtitle_streams().empty();
996         }
997         
998         _with_subtitles->Enable (h);
999
1000         bool j = false;
1001         if (_film) {
1002                 j = _film->with_subtitles ();
1003         }
1004         
1005         _ffmpeg_subtitle_stream->Enable (j);
1006         _subtitle_offset->Enable (j);
1007         _subtitle_scale->Enable (j);
1008 }
1009
1010 void
1011 FilmEditor::use_dci_name_toggled (wxCommandEvent &)
1012 {
1013         if (!_film) {
1014                 return;
1015         }
1016
1017         _film->set_use_dci_name (_use_dci_name->GetValue ());
1018 }
1019
1020 void
1021 FilmEditor::edit_dci_button_clicked (wxCommandEvent &)
1022 {
1023         if (!_film) {
1024                 return;
1025         }
1026
1027         DCIMetadataDialog* d = new DCIMetadataDialog (this, _film->dci_metadata ());
1028         d->ShowModal ();
1029         _film->set_dci_metadata (d->dci_metadata ());
1030         d->Destroy ();
1031 }
1032
1033 void
1034 FilmEditor::setup_streams ()
1035 {
1036         _ffmpeg_audio_stream->Clear ();
1037         vector<FFmpegAudioStream> a = _film->ffmpeg_audio_streams ();
1038         for (vector<FFmpegAudioStream>::iterator i = a.begin(); i != a.end(); ++i) {
1039                 _ffmpeg_audio_stream->Append (std_to_wx (i->name), new wxStringClientData (std_to_wx (boost::lexical_cast<string> (i->id))));
1040         }
1041         
1042         if (_film->ffmpeg_audio_stream()) {
1043                 checked_set (_ffmpeg_audio_stream, boost::lexical_cast<string> (_film->ffmpeg_audio_stream()->id));
1044         }
1045
1046         _ffmpeg_subtitle_stream->Clear ();
1047         vector<FFmpegSubtitleStream> s = _film->ffmpeg_subtitle_streams ();
1048         for (vector<FFmpegSubtitleStream>::iterator i = s.begin(); i != s.end(); ++i) {
1049                 _ffmpeg_subtitle_stream->Append (std_to_wx (i->name), new wxStringClientData (std_to_wx (boost::lexical_cast<string> (i->id))));
1050         }
1051         
1052         if (_film->ffmpeg_subtitle_stream()) {
1053                 checked_set (_ffmpeg_subtitle_stream, boost::lexical_cast<string> (_film->ffmpeg_subtitle_stream()->id));
1054         } else {
1055                 _ffmpeg_subtitle_stream->SetSelection (wxNOT_FOUND);
1056         }
1057 }
1058
1059 void
1060 FilmEditor::ffmpeg_audio_stream_changed (wxCommandEvent &)
1061 {
1062         if (!_film) {
1063                 return;
1064         }
1065
1066 #if 0   
1067         _film->set_content_audio_stream (
1068                 audio_stream_factory (
1069                         string_client_data (_audio_stream->GetClientObject (_audio_stream->GetSelection ())),
1070                         Film::state_version
1071                         )
1072                 );
1073 #endif  
1074 }
1075
1076 void
1077 FilmEditor::ffmpeg_subtitle_stream_changed (wxCommandEvent &)
1078 {
1079         if (!_film) {
1080                 return;
1081         }
1082
1083 #if 0   
1084         _film->set_subtitle_stream (
1085                 subtitle_stream_factory (
1086                         string_client_data (_subtitle_stream->GetClientObject (_subtitle_stream->GetSelection ())),
1087                         Film::state_version
1088                         )
1089                 );
1090 #endif  
1091 }
1092
1093 void
1094 FilmEditor::setup_audio_details ()
1095 {
1096 #if 0   
1097         if (!_film->content_audio_stream()) {
1098                 _audio->SetLabel (wxT (""));
1099         } else {
1100                 stringstream s;
1101                 if (_film->audio_stream()->channels() == 1) {
1102                         s << wx_to_std (_("1 channel"));
1103                 } else {
1104                         s << _film->audio_stream()->channels () << " " << wx_to_std (_("channels"));
1105                 }
1106                 s << ", " << _film->audio_stream()->sample_rate() << wx_to_std (_("Hz"));
1107                 _audio->SetLabel (std_to_wx (s.str ()));
1108         }
1109 #endif  
1110 }
1111
1112 void
1113 FilmEditor::active_jobs_changed (bool a)
1114 {
1115         set_things_sensitive (!a);
1116 }
1117
1118 void
1119 FilmEditor::setup_dcp_name ()
1120 {
1121         string s = _film->dcp_name (true);
1122         if (s.length() > 28) {
1123                 _dcp_name->SetLabel (std_to_wx (s.substr (0, 28)) + N_("..."));
1124                 _dcp_name->SetToolTip (std_to_wx (s));
1125         } else {
1126                 _dcp_name->SetLabel (std_to_wx (s));
1127         }
1128 }
1129
1130 void
1131 FilmEditor::show_audio_clicked (wxCommandEvent &)
1132 {
1133         if (_audio_dialog) {
1134                 _audio_dialog->Destroy ();
1135                 _audio_dialog = 0;
1136         }
1137         
1138         _audio_dialog = new AudioDialog (this);
1139         _audio_dialog->Show ();
1140         _audio_dialog->set_film (_film);
1141 }
1142
1143 void
1144 FilmEditor::best_dcp_frame_rate_clicked (wxCommandEvent &)
1145 {
1146         if (!_film) {
1147                 return;
1148         }
1149         
1150         _film->set_dcp_frame_rate (best_dcp_frame_rate (_film->video_frame_rate ()));
1151 }
1152
1153 void
1154 FilmEditor::setup_show_audio_sensitivity ()
1155 {
1156         _show_audio->Enable (_film && _film->has_audio ());
1157 }
1158
1159 void
1160 FilmEditor::setup_content ()
1161 {
1162         _content->DeleteAllItems ();
1163
1164         ContentList content = _film->content ();
1165         for (ContentList::iterator i = content.begin(); i != content.end(); ++i) {
1166                 _content->InsertItem (_content->GetItemCount(), std_to_wx ((*i)->summary ()));
1167         }
1168 }
1169
1170 void
1171 FilmEditor::content_add_clicked (wxCommandEvent &)
1172 {
1173         wxFileDialog* d = new wxFileDialog (this);
1174         int const r = d->ShowModal ();
1175         d->Destroy ();
1176
1177         if (r != wxID_OK) {
1178                 return;
1179         }
1180
1181         boost::filesystem::path p (wx_to_std (d->GetPath()));
1182
1183         if (ImageMagickContent::valid_file (p)) {
1184                 _film->add_content (shared_ptr<ImageMagickContent> (new ImageMagickContent (p)));
1185         } else if (SndfileContent::valid_file (p)) {
1186                 _film->add_content (shared_ptr<SndfileContent> (new SndfileContent (p)));
1187         } else {
1188                 _film->add_content (shared_ptr<FFmpegContent> (new FFmpegContent (p)));
1189         }
1190         
1191 }
1192
1193 void
1194 FilmEditor::content_remove_clicked (wxCommandEvent &)
1195 {
1196         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1197         if (s == -1) {
1198                 return;
1199         }
1200
1201         ContentList c = _film->content ();
1202         assert (s >= 0 && size_t (s) < c.size ());
1203         _film->remove_content (c[s]);
1204 }
1205
1206 void
1207 FilmEditor::content_earlier_clicked (wxCommandEvent &)
1208 {
1209         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1210         if (s == -1) {
1211                 return;
1212         }
1213
1214         ContentList c = _film->content ();
1215         assert (s >= 0 && size_t (s) < c.size ());
1216         _film->move_content_earlier (c[s]);
1217 }
1218
1219 void
1220 FilmEditor::content_later_clicked (wxCommandEvent &)
1221 {
1222         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1223         if (s == -1) {
1224                 return;
1225         }
1226
1227         ContentList c = _film->content ();
1228         assert (s >= 0 && size_t (s) < c.size ());
1229         _film->move_content_later (c[s]);
1230 }
1231
1232 void
1233 FilmEditor::content_item_selected (wxListEvent &)
1234 {
1235         setup_content_button_sensitivity ();
1236
1237         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
1238         if (s == -1) {
1239                 _content_information->SetValue ("");
1240                 return;
1241         }
1242
1243         ContentList c = _film->content ();
1244         assert (s >= 0 && size_t (s) < c.size ());
1245         _content_information->SetValue (std_to_wx (c[s]->information ()));
1246 }
1247
1248 void
1249 FilmEditor::setup_content_button_sensitivity ()
1250 {
1251         _content_add->Enable (_generally_sensitive);
1252
1253         bool const have_selection = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED) != -1;
1254         _content_remove->Enable (have_selection && _generally_sensitive);
1255         _content_earlier->Enable (have_selection && _generally_sensitive);
1256         _content_later->Enable (have_selection && _generally_sensitive);
1257 }