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