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