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