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