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