Bump version
[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/moving_image_content.h"
41 #include "lib/ffmpeg_content.h"
42 #include "lib/sndfile_content.h"
43 #include "lib/dcp_content_type.h"
44 #include "lib/sound_processor.h"
45 #include "lib/scaler.h"
46 #include "timecode.h"
47 #include "wx_util.h"
48 #include "film_editor.h"
49 #include "dci_metadata_dialog.h"
50 #include "timeline_dialog.h"
51 #include "timing_panel.h"
52 #include "subtitle_panel.h"
53 #include "audio_panel.h"
54 #include "video_panel.h"
55
56 using std::string;
57 using std::cout;
58 using std::stringstream;
59 using std::pair;
60 using std::fixed;
61 using std::setprecision;
62 using std::list;
63 using std::vector;
64 using std::max;
65 using boost::shared_ptr;
66 using boost::weak_ptr;
67 using boost::dynamic_pointer_cast;
68 using boost::lexical_cast;
69
70 /** @param f Film to edit */
71 FilmEditor::FilmEditor (shared_ptr<Film> f, wxWindow* parent)
72         : wxPanel (parent)
73         , _menu (f, this)
74         , _generally_sensitive (true)
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         set_film (f);
88         connect_to_widgets ();
89
90         JobManager::instance()->ActiveJobsChanged.connect (
91                 bind (&FilmEditor::active_jobs_changed, this, _1)
92                 );
93         
94         SetSizerAndFit (s);
95 }
96
97 void
98 FilmEditor::make_dcp_panel ()
99 {
100         _dcp_panel = new wxPanel (_main_notebook);
101         _dcp_sizer = new wxBoxSizer (wxVERTICAL);
102         _dcp_panel->SetSizer (_dcp_sizer);
103
104         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
105         _dcp_sizer->Add (grid, 0, wxEXPAND | wxALL, 8);
106
107         int r = 0;
108         
109         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Name"), true, wxGBPosition (r, 0));
110         _name = new wxTextCtrl (_dcp_panel, wxID_ANY);
111         grid->Add (_name, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND | wxLEFT | wxRIGHT);
112         ++r;
113         
114         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("DCP Name"), true, wxGBPosition (r, 0));
115         _dcp_name = new wxStaticText (_dcp_panel, wxID_ANY, wxT (""));
116         grid->Add (_dcp_name, wxGBPosition(r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
117         ++r;
118
119         int flags = wxALIGN_CENTER_VERTICAL;
120 #ifdef __WXOSX__
121         flags |= wxALIGN_RIGHT;
122 #endif  
123
124         _use_dci_name = new wxCheckBox (_dcp_panel, wxID_ANY, _("Use DCI name"));
125         grid->Add (_use_dci_name, wxGBPosition (r, 0), wxDefaultSpan, flags);
126         _edit_dci_button = new wxButton (_dcp_panel, wxID_ANY, _("Details..."));
127         grid->Add (_edit_dci_button, wxGBPosition (r, 1), wxDefaultSpan);
128         ++r;
129
130         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Container"), true, wxGBPosition (r, 0));
131         _container = new wxChoice (_dcp_panel, wxID_ANY);
132         grid->Add (_container, wxGBPosition (r, 1), wxDefaultSpan, wxEXPAND);
133         ++r;
134
135         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Content Type"), true, wxGBPosition (r, 0));
136         _dcp_content_type = new wxChoice (_dcp_panel, wxID_ANY);
137         grid->Add (_dcp_content_type, wxGBPosition (r, 1));
138         ++r;
139
140         {
141                 add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Frame Rate"), true, wxGBPosition (r, 0));
142                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
143                 _frame_rate = new wxChoice (_dcp_panel, wxID_ANY);
144                 s->Add (_frame_rate, 1, wxALIGN_CENTER_VERTICAL);
145                 _best_frame_rate = new wxButton (_dcp_panel, wxID_ANY, _("Use best"));
146                 s->Add (_best_frame_rate, 1, wxALIGN_CENTER_VERTICAL | wxEXPAND);
147                 grid->Add (s, wxGBPosition (r, 1));
148         }
149         ++r;
150
151         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Audio channels"), true, wxGBPosition (r, 0));
152         _audio_channels = new wxSpinCtrl (_dcp_panel, wxID_ANY);
153         grid->Add (_audio_channels, wxGBPosition (r, 1));
154         ++r;
155
156         _three_d = new wxCheckBox (_dcp_panel, wxID_ANY, _("3D"));
157         grid->Add (_three_d, wxGBPosition (r, 0), wxGBSpan (1, 2));
158         ++r;
159
160         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Resolution"), true, wxGBPosition (r, 0));
161         _resolution = new wxChoice (_dcp_panel, wxID_ANY);
162         grid->Add (_resolution, wxGBPosition (r, 1));
163         ++r;
164
165         {
166                 add_label_to_grid_bag_sizer (grid, _dcp_panel, _("JPEG2000 bandwidth"), true, wxGBPosition (r, 0));
167                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
168                 _j2k_bandwidth = new wxSpinCtrl (_dcp_panel, wxID_ANY);
169                 s->Add (_j2k_bandwidth, 1);
170                 add_label_to_sizer (s, _dcp_panel, _("MBps"), false);
171                 grid->Add (s, wxGBPosition (r, 1));
172         }
173         ++r;
174
175         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Standard"), true, wxGBPosition (r, 0));
176         _standard = new wxChoice (_dcp_panel, wxID_ANY);
177         grid->Add (_standard, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
178         ++r;
179
180         add_label_to_grid_bag_sizer (grid, _dcp_panel, _("Scaler"), true, wxGBPosition (r, 0));
181         _scaler = new wxChoice (_dcp_panel, wxID_ANY);
182         grid->Add (_scaler, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
183         ++r;
184
185         vector<Scaler const *> const sc = Scaler::all ();
186         for (vector<Scaler const *>::const_iterator i = sc.begin(); i != sc.end(); ++i) {
187                 _scaler->Append (std_to_wx ((*i)->name()));
188         }
189
190         vector<Ratio const *> const ratio = Ratio::all ();
191         for (vector<Ratio const *>::const_iterator i = ratio.begin(); i != ratio.end(); ++i) {
192                 _container->Append (std_to_wx ((*i)->nickname ()));
193         }
194
195         vector<DCPContentType const *> const ct = DCPContentType::all ();
196         for (vector<DCPContentType const *>::const_iterator i = ct.begin(); i != ct.end(); ++i) {
197                 _dcp_content_type->Append (std_to_wx ((*i)->pretty_name ()));
198         }
199
200         list<int> const dfr = Config::instance()->allowed_dcp_frame_rates ();
201         for (list<int>::const_iterator i = dfr.begin(); i != dfr.end(); ++i) {
202                 _frame_rate->Append (std_to_wx (boost::lexical_cast<string> (*i)));
203         }
204
205         _audio_channels->SetRange (0, MAX_AUDIO_CHANNELS);
206         _j2k_bandwidth->SetRange (1, 250);
207
208         _resolution->Append (_("2K"));
209         _resolution->Append (_("4K"));
210
211         _standard->Append (_("SMPTE"));
212         _standard->Append (_("Interop"));
213 }
214
215 void
216 FilmEditor::connect_to_widgets ()
217 {
218         _name->Bind             (wxEVT_COMMAND_TEXT_UPDATED,          boost::bind (&FilmEditor::name_changed, this));
219         _use_dci_name->Bind     (wxEVT_COMMAND_CHECKBOX_CLICKED,      boost::bind (&FilmEditor::use_dci_name_toggled, this));
220         _edit_dci_button->Bind  (wxEVT_COMMAND_BUTTON_CLICKED,        boost::bind (&FilmEditor::edit_dci_button_clicked, this));
221         _container->Bind        (wxEVT_COMMAND_CHOICE_SELECTED,       boost::bind (&FilmEditor::container_changed, this));
222         _content->Bind          (wxEVT_COMMAND_LIST_ITEM_SELECTED,    boost::bind (&FilmEditor::content_selection_changed, this));
223         _content->Bind          (wxEVT_COMMAND_LIST_ITEM_DESELECTED,  boost::bind (&FilmEditor::content_selection_changed, this));
224         _content->Bind          (wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, boost::bind (&FilmEditor::content_right_click, this, _1));
225         _content_add_file->Bind (wxEVT_COMMAND_BUTTON_CLICKED,        boost::bind (&FilmEditor::content_add_file_clicked, this));
226         _content_add_folder->Bind (wxEVT_COMMAND_BUTTON_CLICKED,      boost::bind (&FilmEditor::content_add_folder_clicked, this));
227         _content_remove->Bind   (wxEVT_COMMAND_BUTTON_CLICKED,        boost::bind (&FilmEditor::content_remove_clicked, this));
228         _content_timeline->Bind (wxEVT_COMMAND_BUTTON_CLICKED,        boost::bind (&FilmEditor::content_timeline_clicked, this));
229         _scaler->Bind           (wxEVT_COMMAND_CHOICE_SELECTED,       boost::bind (&FilmEditor::scaler_changed, this));
230         _dcp_content_type->Bind (wxEVT_COMMAND_CHOICE_SELECTED,       boost::bind (&FilmEditor::dcp_content_type_changed, this));
231         _frame_rate->Bind       (wxEVT_COMMAND_CHOICE_SELECTED,       boost::bind (&FilmEditor::frame_rate_changed, this));
232         _best_frame_rate->Bind  (wxEVT_COMMAND_BUTTON_CLICKED,        boost::bind (&FilmEditor::best_frame_rate_clicked, this));
233         _audio_channels->Bind   (wxEVT_COMMAND_SPINCTRL_UPDATED,      boost::bind (&FilmEditor::audio_channels_changed, this));
234         _j2k_bandwidth->Bind    (wxEVT_COMMAND_SPINCTRL_UPDATED,      boost::bind (&FilmEditor::j2k_bandwidth_changed, this));
235         _resolution->Bind       (wxEVT_COMMAND_CHOICE_SELECTED,       boost::bind (&FilmEditor::resolution_changed, this));
236         _sequence_video->Bind   (wxEVT_COMMAND_CHECKBOX_CLICKED,      boost::bind (&FilmEditor::sequence_video_changed, this));
237         _three_d->Bind          (wxEVT_COMMAND_CHECKBOX_CLICKED,      boost::bind (&FilmEditor::three_d_changed, this));
238         _standard->Bind         (wxEVT_COMMAND_CHOICE_SELECTED,       boost::bind (&FilmEditor::standard_changed, this));
239 }
240
241 void
242 FilmEditor::make_content_panel ()
243 {
244         _content_panel = new wxPanel (_main_notebook);
245         _content_sizer = new wxBoxSizer (wxVERTICAL);
246         _content_panel->SetSizer (_content_sizer);
247
248         {
249                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
250                 
251                 _content = new wxListCtrl (_content_panel, wxID_ANY, wxDefaultPosition, wxSize (320, 160), wxLC_REPORT | wxLC_NO_HEADER | wxLC_SINGLE_SEL);
252                 s->Add (_content, 1, wxEXPAND | wxTOP | wxBOTTOM, 6);
253
254                 _content->InsertColumn (0, wxT(""));
255                 _content->SetColumnWidth (0, 512);
256
257                 wxBoxSizer* b = new wxBoxSizer (wxVERTICAL);
258                 _content_add_file = new wxButton (_content_panel, wxID_ANY, _("Add file(s)..."));
259                 b->Add (_content_add_file, 1, wxEXPAND | wxLEFT | wxRIGHT);
260                 _content_add_folder = new wxButton (_content_panel, wxID_ANY, _("Add folder..."));
261                 b->Add (_content_add_folder, 1, wxEXPAND | wxLEFT | wxRIGHT);
262                 _content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove"));
263                 b->Add (_content_remove, 1, wxEXPAND | wxLEFT | wxRIGHT);
264                 _content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline..."));
265                 b->Add (_content_timeline, 1, wxEXPAND | wxLEFT | wxRIGHT);
266
267                 s->Add (b, 0, wxALL, 4);
268
269                 _content_sizer->Add (s, 0.75, wxEXPAND | wxALL, 6);
270         }
271
272         _sequence_video = new wxCheckBox (_content_panel, wxID_ANY, _("Keep video in sequence"));
273         _content_sizer->Add (_sequence_video);
274
275         _content_notebook = new wxNotebook (_content_panel, wxID_ANY);
276         _content_sizer->Add (_content_notebook, 1, wxEXPAND | wxTOP, 6);
277
278         _video_panel = new VideoPanel (this);
279         _panels.push_back (_video_panel);
280         _audio_panel = new AudioPanel (this);
281         _panels.push_back (_audio_panel);
282         _subtitle_panel = new SubtitlePanel (this);
283         _panels.push_back (_subtitle_panel);
284         _timing_panel = new TimingPanel (this);
285         _panels.push_back (_timing_panel);
286 }
287
288 /** Called when the name widget has been changed */
289 void
290 FilmEditor::name_changed ()
291 {
292         if (!_film) {
293                 return;
294         }
295
296         _film->set_name (string (_name->GetValue().mb_str()));
297 }
298
299 void
300 FilmEditor::j2k_bandwidth_changed ()
301 {
302         if (!_film) {
303                 return;
304         }
305         
306         _film->set_j2k_bandwidth (_j2k_bandwidth->GetValue() * 1e6);
307 }
308
309 void
310 FilmEditor::frame_rate_changed ()
311 {
312         if (!_film) {
313                 return;
314         }
315
316         _film->set_video_frame_rate (
317                 boost::lexical_cast<int> (
318                         wx_to_std (_frame_rate->GetString (_frame_rate->GetSelection ()))
319                         )
320                 );
321 }
322
323 void
324 FilmEditor::audio_channels_changed ()
325 {
326         if (!_film) {
327                 return;
328         }
329
330         _film->set_audio_channels (_audio_channels->GetValue ());
331 }
332
333 void
334 FilmEditor::resolution_changed ()
335 {
336         if (!_film) {
337                 return;
338         }
339
340         _film->set_resolution (_resolution->GetSelection() == 0 ? RESOLUTION_2K : RESOLUTION_4K);
341 }
342
343 void
344 FilmEditor::standard_changed ()
345 {
346         if (!_film) {
347                 return;
348         }
349
350         _film->set_interop (_standard->GetSelection() == 1);
351 }
352
353 /** Called when the metadata stored in the Film object has changed;
354  *  so that we can update the GUI.
355  *  @param p Property of the Film that has changed.
356  */
357 void
358 FilmEditor::film_changed (Film::Property p)
359 {
360         ensure_ui_thread ();
361         
362         if (!_film) {
363                 return;
364         }
365
366         stringstream s;
367
368         for (list<FilmEditorPanel*>::iterator i = _panels.begin(); i != _panels.end(); ++i) {
369                 (*i)->film_changed (p);
370         }
371                 
372         switch (p) {
373         case Film::NONE:
374                 break;
375         case Film::CONTENT:
376                 setup_content ();
377                 break;
378         case Film::CONTAINER:
379                 setup_container ();
380                 break;
381         case Film::NAME:
382                 checked_set (_name, _film->name());
383                 setup_dcp_name ();
384                 break;
385         case Film::WITH_SUBTITLES:
386                 setup_dcp_name ();
387                 break;
388         case Film::DCP_CONTENT_TYPE:
389                 checked_set (_dcp_content_type, DCPContentType::as_index (_film->dcp_content_type ()));
390                 setup_dcp_name ();
391                 break;
392         case Film::SCALER:
393                 checked_set (_scaler, Scaler::as_index (_film->scaler ()));
394                 break;
395         case Film::RESOLUTION:
396                 checked_set (_resolution, _film->resolution() == RESOLUTION_2K ? 0 : 1);
397                 setup_dcp_name ();
398                 break;
399         case Film::J2K_BANDWIDTH:
400                 checked_set (_j2k_bandwidth, double (_film->j2k_bandwidth()) / 1e6);
401                 break;
402         case Film::USE_DCI_NAME:
403                 checked_set (_use_dci_name, _film->use_dci_name ());
404                 setup_dcp_name ();
405                 break;
406         case Film::DCI_METADATA:
407                 setup_dcp_name ();
408                 break;
409         case Film::VIDEO_FRAME_RATE:
410         {
411                 bool done = false;
412                 for (unsigned int i = 0; i < _frame_rate->GetCount(); ++i) {
413                         if (wx_to_std (_frame_rate->GetString(i)) == boost::lexical_cast<string> (_film->video_frame_rate())) {
414                                 checked_set (_frame_rate, i);
415                                 done = true;
416                                 break;
417                         }
418                 }
419
420                 if (!done) {
421                         checked_set (_frame_rate, -1);
422                 }
423
424                 _best_frame_rate->Enable (_film->best_video_frame_rate () != _film->video_frame_rate ());
425                 break;
426         }
427         case Film::AUDIO_CHANNELS:
428                 _audio_channels->SetValue (_film->audio_channels ());
429                 setup_dcp_name ();
430                 break;
431         case Film::SEQUENCE_VIDEO:
432                 checked_set (_sequence_video, _film->sequence_video ());
433                 break;
434         case Film::THREE_D:
435                 checked_set (_three_d, _film->three_d ());
436                 setup_dcp_name ();
437                 break;
438         case Film::INTEROP:
439                 checked_set (_standard, _film->interop() ? 1 : 0);
440                 break;
441         }
442 }
443
444 void
445 FilmEditor::film_content_changed (weak_ptr<Content> weak_content, int property)
446 {
447         ensure_ui_thread ();
448         
449         if (!_film) {
450                 /* We call this method ourselves (as well as using it as a signal handler)
451                    so _film can be 0.
452                 */
453                 return;
454         }
455
456         shared_ptr<Content> content = weak_content.lock ();
457         if (!content || content != selected_content ()) {
458                 return;
459         }
460
461         for (list<FilmEditorPanel*>::iterator i = _panels.begin(); i != _panels.end(); ++i) {
462                 (*i)->film_content_changed (content, property);
463         }
464
465         if (property == FFmpegContentProperty::AUDIO_STREAM) {
466                 setup_dcp_name ();
467         }
468 }
469
470 void
471 FilmEditor::setup_container ()
472 {
473         int n = 0;
474         vector<Ratio const *> ratios = Ratio::all ();
475         vector<Ratio const *>::iterator i = ratios.begin ();
476         while (i != ratios.end() && *i != _film->container ()) {
477                 ++i;
478                 ++n;
479         }
480         
481         if (i == ratios.end()) {
482                 checked_set (_container, -1);
483         } else {
484                 checked_set (_container, n);
485         }
486         
487         setup_dcp_name ();
488 }       
489
490 /** Called when the container widget has been changed */
491 void
492 FilmEditor::container_changed ()
493 {
494         if (!_film) {
495                 return;
496         }
497
498         int const n = _container->GetSelection ();
499         if (n >= 0) {
500                 vector<Ratio const *> ratios = Ratio::all ();
501                 assert (n < int (ratios.size()));
502                 _film->set_container (ratios[n]);
503         }
504 }
505
506 /** Called when the DCP content type widget has been changed */
507 void
508 FilmEditor::dcp_content_type_changed ()
509 {
510         if (!_film) {
511                 return;
512         }
513
514         int const n = _dcp_content_type->GetSelection ();
515         if (n != wxNOT_FOUND) {
516                 _film->set_dcp_content_type (DCPContentType::from_index (n));
517         }
518 }
519
520 /** Sets the Film that we are editing */
521 void
522 FilmEditor::set_film (shared_ptr<Film> f)
523 {
524         set_general_sensitivity (f != 0);
525
526         if (_film == f) {
527                 return;
528         }
529         
530         _film = f;
531
532         if (_film) {
533                 _film->Changed.connect (bind (&FilmEditor::film_changed, this, _1));
534                 _film->ContentChanged.connect (bind (&FilmEditor::film_content_changed, this, _1, _2));
535         }
536
537         if (_film) {
538                 FileChanged (_film->directory ());
539         } else {
540                 FileChanged ("");
541         }
542
543         film_changed (Film::NAME);
544         film_changed (Film::USE_DCI_NAME);
545         film_changed (Film::CONTENT);
546         film_changed (Film::DCP_CONTENT_TYPE);
547         film_changed (Film::CONTAINER);
548         film_changed (Film::RESOLUTION);
549         film_changed (Film::SCALER);
550         film_changed (Film::WITH_SUBTITLES);
551         film_changed (Film::J2K_BANDWIDTH);
552         film_changed (Film::DCI_METADATA);
553         film_changed (Film::VIDEO_FRAME_RATE);
554         film_changed (Film::AUDIO_CHANNELS);
555         film_changed (Film::SEQUENCE_VIDEO);
556         film_changed (Film::THREE_D);
557         film_changed (Film::INTEROP);
558
559         if (!_film->content().empty ()) {
560                 set_selection (_film->content().front ());
561         }
562
563         content_selection_changed ();
564 }
565
566 void
567 FilmEditor::set_general_sensitivity (bool s)
568 {
569         _generally_sensitive = s;
570
571         /* Stuff in the Content / DCP tabs */
572         _name->Enable (s);
573         _use_dci_name->Enable (s);
574         _edit_dci_button->Enable (s);
575         _content->Enable (s);
576         _content_add_file->Enable (s);
577         _content_add_folder->Enable (s);
578         _content_remove->Enable (s);
579         _content_timeline->Enable (s);
580         _dcp_content_type->Enable (s);
581         _frame_rate->Enable (s);
582         _audio_channels->Enable (s);
583         _j2k_bandwidth->Enable (s);
584         _container->Enable (s);
585         _best_frame_rate->Enable (s && _film && _film->best_video_frame_rate () != _film->video_frame_rate ());
586         _sequence_video->Enable (s);
587         _resolution->Enable (s);
588         _scaler->Enable (s);
589         _three_d->Enable (s);
590         _standard->Enable (s);
591
592         /* Set the panels in the content notebook */
593         for (list<FilmEditorPanel*>::iterator i = _panels.begin(); i != _panels.end(); ++i) {
594                 (*i)->Enable (s);
595         }
596 }
597
598 /** Called when the scaler widget has been changed */
599 void
600 FilmEditor::scaler_changed ()
601 {
602         if (!_film) {
603                 return;
604         }
605
606         int const n = _scaler->GetSelection ();
607         if (n >= 0) {
608                 _film->set_scaler (Scaler::from_index (n));
609         }
610 }
611
612 void
613 FilmEditor::use_dci_name_toggled ()
614 {
615         if (!_film) {
616                 return;
617         }
618
619         _film->set_use_dci_name (_use_dci_name->GetValue ());
620 }
621
622 void
623 FilmEditor::edit_dci_button_clicked ()
624 {
625         if (!_film) {
626                 return;
627         }
628
629         DCIMetadataDialog* d = new DCIMetadataDialog (this, _film->dci_metadata ());
630         d->ShowModal ();
631         _film->set_dci_metadata (d->dci_metadata ());
632         d->Destroy ();
633 }
634
635 void
636 FilmEditor::active_jobs_changed (bool a)
637 {
638         set_general_sensitivity (!a);
639 }
640
641 void
642 FilmEditor::setup_dcp_name ()
643 {
644         string s = _film->dcp_name (true);
645         if (s.length() > 28) {
646                 _dcp_name->SetLabel (std_to_wx (s.substr (0, 28)) + N_("..."));
647                 _dcp_name->SetToolTip (std_to_wx (s));
648         } else {
649                 _dcp_name->SetLabel (std_to_wx (s));
650         }
651 }
652
653 void
654 FilmEditor::best_frame_rate_clicked ()
655 {
656         if (!_film) {
657                 return;
658         }
659         
660         _film->set_video_frame_rate (_film->best_video_frame_rate ());
661 }
662
663 void
664 FilmEditor::setup_content ()
665 {
666         string selected_summary;
667         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
668         if (s != -1) {
669                 selected_summary = wx_to_std (_content->GetItemText (s));
670         }
671         
672         _content->DeleteAllItems ();
673
674         ContentList content = _film->content ();
675         for (ContentList::iterator i = content.begin(); i != content.end(); ++i) {
676                 int const t = _content->GetItemCount ();
677                 _content->InsertItem (t, std_to_wx ((*i)->summary ()));
678                 if ((*i)->summary() == selected_summary) {
679                         _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
680                 }
681         }
682
683         if (selected_summary.empty () && !content.empty ()) {
684                 /* Select the item of content if none was selected before */
685                 _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
686         }
687 }
688
689 void
690 FilmEditor::content_add_file_clicked ()
691 {
692         wxFileDialog* d = new wxFileDialog (this, _("Choose a file or files"), wxT (""), wxT (""), wxT ("*.*"), wxFD_MULTIPLE);
693         int const r = d->ShowModal ();
694         d->Destroy ();
695
696         if (r != wxID_OK) {
697                 return;
698         }
699
700         wxArrayString paths;
701         d->GetPaths (paths);
702
703         /* XXX: check for lots of files here and do something */
704
705         for (unsigned int i = 0; i < paths.GetCount(); ++i) {
706                 boost::filesystem::path p (wx_to_std (paths[i]));
707
708                 shared_ptr<Content> c;
709
710                 if (valid_image_file (p)) {
711                         c.reset (new StillImageContent (_film, p));
712                 } else if (SndfileContent::valid_file (p)) {
713                         c.reset (new SndfileContent (_film, p));
714                 } else {
715                         c.reset (new FFmpegContent (_film, p));
716                 }
717
718                 _film->examine_and_add_content (c);
719         }
720 }
721
722 void
723 FilmEditor::content_add_folder_clicked ()
724 {
725         wxDirDialog* d = new wxDirDialog (this, _("Choose a folder"), wxT (""), wxDD_DIR_MUST_EXIST);
726         int const r = d->ShowModal ();
727         d->Destroy ();
728         
729         if (r != wxID_OK) {
730                 return;
731         }
732
733         _film->examine_and_add_content (
734                 shared_ptr<MovingImageContent> (
735                         new MovingImageContent (_film, boost::filesystem::path (wx_to_std (d->GetPath ())))
736                         )
737                 );
738 }
739
740 void
741 FilmEditor::content_remove_clicked ()
742 {
743         shared_ptr<Content> c = selected_content ();
744         if (c) {
745                 _film->remove_content (c);
746         }
747
748         content_selection_changed ();
749 }
750
751 void
752 FilmEditor::content_selection_changed ()
753 {
754         setup_content_sensitivity ();
755         shared_ptr<Content> s = selected_content ();
756
757         /* All other sensitivity in content panels should be triggered by
758            one of these.
759         */
760         film_content_changed (s, ContentProperty::POSITION);
761         film_content_changed (s, ContentProperty::LENGTH);
762         film_content_changed (s, ContentProperty::TRIM_START);
763         film_content_changed (s, ContentProperty::TRIM_END);
764         film_content_changed (s, VideoContentProperty::VIDEO_CROP);
765         film_content_changed (s, VideoContentProperty::VIDEO_RATIO);
766         film_content_changed (s, VideoContentProperty::VIDEO_FRAME_TYPE);
767         film_content_changed (s, VideoContentProperty::COLOUR_CONVERSION);
768         film_content_changed (s, AudioContentProperty::AUDIO_GAIN);
769         film_content_changed (s, AudioContentProperty::AUDIO_DELAY);
770         film_content_changed (s, AudioContentProperty::AUDIO_MAPPING);
771         film_content_changed (s, FFmpegContentProperty::AUDIO_STREAM);
772         film_content_changed (s, FFmpegContentProperty::AUDIO_STREAMS);
773         film_content_changed (s, FFmpegContentProperty::SUBTITLE_STREAM);
774         film_content_changed (s, FFmpegContentProperty::SUBTITLE_STREAMS);
775         film_content_changed (s, FFmpegContentProperty::FILTERS);
776         film_content_changed (s, SubtitleContentProperty::SUBTITLE_OFFSET);
777         film_content_changed (s, SubtitleContentProperty::SUBTITLE_SCALE);
778 }
779
780 /** Set up broad sensitivity based on the type of content that is selected */
781 void
782 FilmEditor::setup_content_sensitivity ()
783 {
784         _content_add_file->Enable (_generally_sensitive);
785         _content_add_folder->Enable (_generally_sensitive);
786
787         shared_ptr<Content> selection = selected_content ();
788
789         _content_remove->Enable (selection && _generally_sensitive);
790         _content_timeline->Enable (_generally_sensitive);
791
792         _video_panel->Enable    (selection && dynamic_pointer_cast<VideoContent>  (selection) && _generally_sensitive);
793         _audio_panel->Enable    (selection && dynamic_pointer_cast<AudioContent>  (selection) && _generally_sensitive);
794         _subtitle_panel->Enable (selection && dynamic_pointer_cast<FFmpegContent> (selection) && _generally_sensitive);
795         _timing_panel->Enable   (selection && _generally_sensitive);
796 }
797
798 shared_ptr<Content>
799 FilmEditor::selected_content ()
800 {
801         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
802         if (s == -1) {
803                 return shared_ptr<Content> ();
804         }
805
806         ContentList c = _film->content ();
807         if (s < 0 || size_t (s) >= c.size ()) {
808                 return shared_ptr<Content> ();
809         }
810         
811         return c[s];
812 }
813
814 shared_ptr<VideoContent>
815 FilmEditor::selected_video_content ()
816 {
817         shared_ptr<Content> c = selected_content ();
818         if (!c) {
819                 return shared_ptr<VideoContent> ();
820         }
821
822         return dynamic_pointer_cast<VideoContent> (c);
823 }
824
825 shared_ptr<AudioContent>
826 FilmEditor::selected_audio_content ()
827 {
828         shared_ptr<Content> c = selected_content ();
829         if (!c) {
830                 return shared_ptr<AudioContent> ();
831         }
832
833         return dynamic_pointer_cast<AudioContent> (c);
834 }
835
836 shared_ptr<SubtitleContent>
837 FilmEditor::selected_subtitle_content ()
838 {
839         shared_ptr<Content> c = selected_content ();
840         if (!c) {
841                 return shared_ptr<SubtitleContent> ();
842         }
843
844         return dynamic_pointer_cast<SubtitleContent> (c);
845 }
846
847 void
848 FilmEditor::content_timeline_clicked ()
849 {
850         if (_timeline_dialog) {
851                 _timeline_dialog->Destroy ();
852                 _timeline_dialog = 0;
853         }
854         
855         _timeline_dialog = new TimelineDialog (this, _film);
856         _timeline_dialog->Show ();
857 }
858
859 void
860 FilmEditor::set_selection (weak_ptr<Content> wc)
861 {
862         ContentList content = _film->content ();
863         for (size_t i = 0; i < content.size(); ++i) {
864                 if (content[i] == wc.lock ()) {
865                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
866                 } else {
867                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED);
868                 }
869         }
870 }
871
872 void
873 FilmEditor::sequence_video_changed ()
874 {
875         if (!_film) {
876                 return;
877         }
878         
879         _film->set_sequence_video (_sequence_video->GetValue ());
880 }
881
882 void
883 FilmEditor::content_right_click (wxListEvent& ev)
884 {
885         ContentList cl;
886         cl.push_back (selected_content ());
887         _menu.popup (cl, ev.GetPoint ());
888 }
889
890 void
891 FilmEditor::three_d_changed ()
892 {
893         if (!_film) {
894                 return;
895         }
896
897         _film->set_three_d (_three_d->GetValue ());
898 }