Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / wx / content_panel.cc
1 /*
2     Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "content_panel.h"
22 #include "wx_util.h"
23 #include "video_panel.h"
24 #include "audio_panel.h"
25 #include "text_panel.h"
26 #include "timing_panel.h"
27 #include "timeline_dialog.h"
28 #include "image_sequence_dialog.h"
29 #include "film_viewer.h"
30 #include "dcpomatic_button.h"
31 #include "lib/audio_content.h"
32 #include "lib/text_content.h"
33 #include "lib/video_content.h"
34 #include "lib/ffmpeg_content.h"
35 #include "lib/content_factory.h"
36 #include "lib/image_content.h"
37 #include "lib/dcp_content.h"
38 #include "lib/case_insensitive_sorter.h"
39 #include "lib/playlist.h"
40 #include "lib/config.h"
41 #include "lib/log.h"
42 #include "lib/compose.hpp"
43 #include "lib/string_text_file_content.h"
44 #include "lib/string_text_file.h"
45 #include "lib/dcpomatic_log.h"
46 #include <wx/wx.h>
47 #include <wx/notebook.h>
48 #include <wx/listctrl.h>
49 #include <wx/display.h>
50 #include <boost/filesystem.hpp>
51 #include <boost/foreach.hpp>
52 #include <iostream>
53
54 using std::list;
55 using std::string;
56 using std::cout;
57 using std::vector;
58 using std::max;
59 using std::exception;
60 using boost::shared_ptr;
61 using boost::weak_ptr;
62 using boost::dynamic_pointer_cast;
63 using boost::optional;
64 using namespace dcpomatic;
65
66 class LimitedSplitter : public wxSplitterWindow
67 {
68 public:
69         LimitedSplitter (wxWindow* parent)
70                 : wxSplitterWindow (parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSP_NOBORDER | wxSP_3DSASH | wxSP_LIVE_UPDATE)
71         {
72                 /* This value doesn't really mean much but we just want to stop double-click on the
73                    divider from shrinking the bottom panel (#1601).
74                 */
75                 SetMinimumPaneSize (64);
76         }
77
78         bool OnSashPositionChange (int new_position)
79         {
80                 /* Try to stop the top bit of the splitter getting so small that buttons disappear */
81                 return new_position > 220;
82         }
83 };
84
85 ContentPanel::ContentPanel (wxNotebook* n, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
86         : _video_panel (0)
87         , _audio_panel (0)
88         , _timeline_dialog (0)
89         , _parent (n)
90         , _last_selected_tab (0)
91         , _film (film)
92         , _film_viewer (viewer)
93         , _generally_sensitive (true)
94         , _ignore_deselect (false)
95         , _no_check_selection (false)
96 {
97         for (int i = 0; i < TEXT_COUNT; ++i) {
98                 _text_panel[i] = 0;
99         }
100
101         _splitter = new LimitedSplitter (n);
102         optional<wxRect> screen;
103         int const sn = wxDisplay::GetFromWindow(_splitter);
104         if (sn >= 0) {
105                 screen = wxDisplay(sn).GetClientArea();
106         }
107         wxPanel* top = new wxPanel (_splitter);
108
109         _menu = new ContentMenu (_splitter);
110
111
112         {
113                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
114
115                 _content = new wxListCtrl (top, wxID_ANY, wxDefaultPosition, wxSize (320, 160), wxLC_REPORT | wxLC_NO_HEADER);
116                 _content->DragAcceptFiles (true);
117                 s->Add (_content, 1, wxEXPAND | wxTOP | wxBOTTOM, 6);
118
119                 _content->InsertColumn (0, wxT(""));
120                 _content->SetColumnWidth (0, 512);
121
122                 wxBoxSizer* b = new wxBoxSizer (wxVERTICAL);
123
124                 _add_file = new Button (top, _("Add file(s)..."));
125                 _add_file->SetToolTip (_("Add video, image, sound or subtitle files to the film."));
126                 b->Add (_add_file, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
127
128                 _add_folder = new Button (top, _("Add folder..."));
129                 _add_folder->SetToolTip (_("Add a folder of image files (which will be used as a moving image sequence) or a folder of sound files."));
130                 b->Add (_add_folder, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
131
132                 _add_dcp = new Button (top, _("Add DCP..."));
133                 _add_dcp->SetToolTip (_("Add a DCP."));
134                 b->Add (_add_dcp, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
135
136                 _remove = new Button (top, _("Remove"));
137                 _remove->SetToolTip (_("Remove the selected piece of content from the film."));
138                 b->Add (_remove, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
139
140                 _earlier = new Button (top, _("Earlier"));
141                 _earlier->SetToolTip (_("Move the selected piece of content earlier in the film."));
142                 b->Add (_earlier, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
143
144                 _later = new Button (top, _("Later"));
145                 _later->SetToolTip (_("Move the selected piece of content later in the film."));
146                 b->Add (_later, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
147
148                 _timeline = new Button (top, _("Timeline..."));
149                 _timeline->SetToolTip (_("Open the timeline for the film."));
150                 b->Add (_timeline, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
151
152                 s->Add (b, 0, wxALL, 4);
153                 top->SetSizer (s);
154         }
155
156         _notebook = new wxNotebook (_splitter, wxID_ANY);
157
158         /* This is a hack to try and make the content notebook a sensible size; large on big displays but small
159            enough on small displays to leave space for the content area.
160         */
161         if (screen) {
162                 _splitter->SplitHorizontally (top, _notebook, screen->height > 800 ? -600 : -150);
163         }
164
165         _timing_panel = new TimingPanel (this, _film_viewer);
166         _notebook->AddPage (_timing_panel, _("Timing"), false);
167
168         _content->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&ContentPanel::item_selected, this));
169         _content->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&ContentPanel::item_deselected, this));
170         _content->Bind (wxEVT_LIST_ITEM_RIGHT_CLICK, boost::bind (&ContentPanel::right_click, this, _1));
171         _content->Bind (wxEVT_DROP_FILES, boost::bind (&ContentPanel::files_dropped, this, _1));
172         _add_file->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_file_clicked, this));
173         _add_folder->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_folder_clicked, this));
174         _add_dcp->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_dcp_clicked, this));
175         _remove->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::remove_clicked, this, false));
176         _earlier->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::earlier_clicked, this));
177         _later->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::later_clicked, this));
178         _timeline->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::timeline_clicked, this));
179 }
180
181 ContentList
182 ContentPanel::selected ()
183 {
184         ContentList sel;
185         long int s = -1;
186         while (true) {
187                 s = _content->GetNextItem (s, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
188                 if (s == -1) {
189                         break;
190                 }
191
192                 ContentList cl = _film->content();
193                 if (s < int (cl.size())) {
194                         sel.push_back (cl[s]);
195                 }
196         }
197
198         return sel;
199 }
200
201 ContentList
202 ContentPanel::selected_video ()
203 {
204         ContentList vc;
205
206         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
207                 if (i->video) {
208                         vc.push_back (i);
209                 }
210         }
211
212         return vc;
213 }
214
215 ContentList
216 ContentPanel::selected_audio ()
217 {
218         ContentList ac;
219
220         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
221                 if (i->audio) {
222                         ac.push_back (i);
223                 }
224         }
225
226         return ac;
227 }
228
229 ContentList
230 ContentPanel::selected_text ()
231 {
232         ContentList sc;
233
234         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
235                 if (!i->text.empty()) {
236                         sc.push_back (i);
237                 }
238         }
239
240         return sc;
241 }
242
243 FFmpegContentList
244 ContentPanel::selected_ffmpeg ()
245 {
246         FFmpegContentList sc;
247
248         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
249                 shared_ptr<FFmpegContent> t = dynamic_pointer_cast<FFmpegContent> (i);
250                 if (t) {
251                         sc.push_back (t);
252                 }
253         }
254
255         return sc;
256 }
257
258 void
259 ContentPanel::film_changed (Film::Property p)
260 {
261         switch (p) {
262         case Film::CONTENT:
263         case Film::CONTENT_ORDER:
264                 setup ();
265                 break;
266         default:
267                 break;
268         }
269
270         BOOST_FOREACH (ContentSubPanel* i, panels()) {
271                 i->film_changed (p);
272         }
273 }
274
275 void
276 ContentPanel::item_deselected ()
277 {
278         /* Maybe this is just a re-click on the same item; if not, _ignore_deselect will stay
279            false and item_deselected_foo will handle the deselection.
280         */
281         _ignore_deselect = false;
282         signal_manager->when_idle (boost::bind (&ContentPanel::item_deselected_idle, this));
283 }
284
285 void
286 ContentPanel::item_deselected_idle ()
287 {
288         if (!_ignore_deselect) {
289                 check_selection ();
290         }
291 }
292
293 void
294 ContentPanel::item_selected ()
295 {
296         _ignore_deselect = true;
297         check_selection ();
298 }
299
300 void
301 ContentPanel::check_selection ()
302 {
303         if (_no_check_selection) {
304                 return;
305         }
306
307         setup_sensitivity ();
308
309         BOOST_FOREACH (ContentSubPanel* i, panels()) {
310                 i->content_selection_changed ();
311         }
312
313         optional<DCPTime> go_to;
314         BOOST_FOREACH (shared_ptr<Content> i, selected()) {
315                 DCPTime p;
316                 p = i->position();
317                 if (dynamic_pointer_cast<StringTextFileContent>(i) && i->paths_valid()) {
318                         /* Rather special case; if we select a text subtitle file jump to its
319                            first subtitle.
320                         */
321                         StringTextFile ts (dynamic_pointer_cast<StringTextFileContent>(i));
322                         if (ts.first()) {
323                                 p += DCPTime(ts.first().get(), _film->active_frame_rate_change(i->position()));
324                         }
325                 }
326                 if (!go_to || p < go_to.get()) {
327                         go_to = p;
328                 }
329         }
330
331         if (go_to && Config::instance()->jump_to_selected() && signal_manager) {
332                 shared_ptr<FilmViewer> fv = _film_viewer.lock ();
333                 DCPOMATIC_ASSERT (fv);
334                 signal_manager->when_idle(boost::bind(&FilmViewer::seek, fv.get(), go_to.get().ceil(_film->video_frame_rate()), true));
335         }
336
337         if (_timeline_dialog) {
338                 _timeline_dialog->set_selection (selected());
339         }
340
341         /* Make required tabs visible */
342
343         if (_notebook->GetPageCount() > 1) {
344                 /* There's more than one tab in the notebook so the current selection could be meaningful
345                    to the user; store it so that we can try to restore it later.
346                 */
347                 _last_selected_tab = 0;
348                 if (_notebook->GetSelection() != wxNOT_FOUND) {
349                         _last_selected_tab = _notebook->GetPage(_notebook->GetSelection());
350                 }
351         }
352
353         bool have_video = false;
354         bool have_audio = false;
355         bool have_text[TEXT_COUNT] = { false, false };
356         BOOST_FOREACH (shared_ptr<Content> i, selected()) {
357                 if (i->video) {
358                         have_video = true;
359                 }
360                 if (i->audio) {
361                         have_audio = true;
362                 }
363                 BOOST_FOREACH (shared_ptr<TextContent> j, i->text) {
364                         have_text[j->original_type()] = true;
365                 }
366         }
367
368         int off = 0;
369
370         if (have_video && !_video_panel) {
371                 _video_panel = new VideoPanel (this);
372                 _notebook->InsertPage (off, _video_panel, _video_panel->name());
373         } else if (!have_video && _video_panel) {
374                 _notebook->DeletePage (off);
375                 _video_panel = 0;
376         }
377
378         if (have_video) {
379                 ++off;
380         }
381
382         if (have_audio && !_audio_panel) {
383                 _audio_panel = new AudioPanel (this);
384                 _notebook->InsertPage (off, _audio_panel, _audio_panel->name());
385         } else if (!have_audio && _audio_panel) {
386                 _notebook->DeletePage (off);
387                 _audio_panel = 0;
388         }
389
390         if (have_audio) {
391                 ++off;
392         }
393
394         for (int i = 0; i < TEXT_COUNT; ++i) {
395                 if (have_text[i] && !_text_panel[i]) {
396                         _text_panel[i] = new TextPanel (this, static_cast<TextType>(i));
397                         _notebook->InsertPage (off, _text_panel[i], _text_panel[i]->name());
398                 } else if (!have_text[i] && _text_panel[i]) {
399                         _notebook->DeletePage (off);
400                         _text_panel[i] = 0;
401                 }
402                 if (have_text[i]) {
403                         ++off;
404                 }
405         }
406
407         /* Set up the tab selection */
408
409         bool done = false;
410         for (size_t i = 0; i < _notebook->GetPageCount(); ++i) {
411                 if (_notebook->GetPage(i) == _last_selected_tab) {
412                         _notebook->SetSelection (i);
413                         done = true;
414                 }
415         }
416
417         if (!done && _notebook->GetPageCount() > 0) {
418                 _notebook->SetSelection (0);
419         }
420
421         setup_sensitivity ();
422         SelectionChanged ();
423 }
424
425 void
426 ContentPanel::add_file_clicked ()
427 {
428         /* This method is also called when Ctrl-A is pressed, so check that our notebook page
429            is visible.
430         */
431         if (_parent->GetCurrentPage() != _splitter || !_film) {
432                 return;
433         }
434
435         /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
436            non-Latin filenames or paths.
437         */
438         wxFileDialog* d = new wxFileDialog (
439                 _splitter,
440                 _("Choose a file or files"),
441                 wxT (""),
442                 wxT (""),
443                 wxT ("All files|*.*|Subtitle files|*.srt;*.xml|Audio files|*.wav;*.w64;*.flac;*.aif;*.aiff"),
444                 wxFD_MULTIPLE | wxFD_CHANGE_DIR
445                 );
446
447         int const r = d->ShowModal ();
448
449         if (r != wxID_OK) {
450                 d->Destroy ();
451                 return;
452         }
453
454         wxArrayString paths;
455         d->GetPaths (paths);
456         list<boost::filesystem::path> path_list;
457         for (unsigned int i = 0; i < paths.GetCount(); ++i) {
458                 path_list.push_back (wx_to_std (paths[i]));
459         }
460         add_files (path_list);
461
462         d->Destroy ();
463 }
464
465 void
466 ContentPanel::add_folder_clicked ()
467 {
468         wxDirDialog* d = new wxDirDialog (_splitter, _("Choose a folder"), wxT(""), wxDD_DIR_MUST_EXIST);
469         int r = d->ShowModal ();
470         boost::filesystem::path const path (wx_to_std (d->GetPath ()));
471         d->Destroy ();
472
473         if (r != wxID_OK) {
474                 return;
475         }
476
477         list<shared_ptr<Content> > content;
478
479         try {
480                 content = content_factory (path);
481         } catch (exception& e) {
482                 error_dialog (_parent, e.what());
483                 return;
484         }
485
486         if (content.empty ()) {
487                 error_dialog (_parent, _("No content found in this folder."));
488                 return;
489         }
490
491         BOOST_FOREACH (shared_ptr<Content> i, content) {
492                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
493                 if (ic) {
494                         ImageSequenceDialog* e = new ImageSequenceDialog (_splitter);
495                         r = e->ShowModal ();
496                         float const frame_rate = e->frame_rate ();
497                         e->Destroy ();
498
499                         if (r != wxID_OK) {
500                                 return;
501                         }
502
503                         ic->set_video_frame_rate (frame_rate);
504                 }
505
506                 _film->examine_and_add_content (i);
507         }
508 }
509
510 void
511 ContentPanel::add_dcp_clicked ()
512 {
513         wxDirDialog* d = new wxDirDialog (_splitter, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST);
514         int r = d->ShowModal ();
515         boost::filesystem::path const path (wx_to_std (d->GetPath ()));
516         d->Destroy ();
517
518         if (r != wxID_OK) {
519                 return;
520         }
521
522         try {
523                 _film->examine_and_add_content (shared_ptr<Content> (new DCPContent (path)));
524         } catch (exception& e) {
525                 error_dialog (_parent, e.what());
526         }
527 }
528
529 /** @return true if this remove "click" should be ignored */
530 bool
531 ContentPanel::remove_clicked (bool hotkey)
532 {
533         /* If the method was called because Delete was pressed check that our notebook page
534            is visible and that the content list is focussed.
535         */
536         if (hotkey && (_parent->GetCurrentPage() != _splitter || !_content->HasFocus())) {
537                 return true;
538         }
539
540         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
541                 _film->remove_content (i);
542         }
543
544         check_selection ();
545         return false;
546 }
547
548 void
549 ContentPanel::timeline_clicked ()
550 {
551         if (!_film) {
552                 return;
553         }
554
555         if (_timeline_dialog) {
556                 _timeline_dialog->Destroy ();
557                 _timeline_dialog = 0;
558         }
559
560         _timeline_dialog = new TimelineDialog (this, _film, _film_viewer);
561         _timeline_dialog->set_selection (selected());
562         _timeline_dialog->Show ();
563 }
564
565 void
566 ContentPanel::right_click (wxListEvent& ev)
567 {
568         _menu->popup (_film, selected (), TimelineContentViewList (), ev.GetPoint ());
569 }
570
571 /** Set up broad sensitivity based on the type of content that is selected */
572 void
573 ContentPanel::setup_sensitivity ()
574 {
575         _add_file->Enable (_generally_sensitive);
576         _add_folder->Enable (_generally_sensitive);
577         _add_dcp->Enable (_generally_sensitive);
578
579         ContentList selection = selected ();
580         ContentList video_selection = selected_video ();
581         ContentList audio_selection = selected_audio ();
582
583         _remove->Enable   (_generally_sensitive && !selection.empty());
584         _earlier->Enable  (_generally_sensitive && selection.size() == 1);
585         _later->Enable    (_generally_sensitive && selection.size() == 1);
586         _timeline->Enable (_generally_sensitive && _film && !_film->content().empty());
587
588         if (_video_panel) {
589                 _video_panel->Enable (_generally_sensitive && video_selection.size() > 0);
590         }
591         if (_audio_panel) {
592                 _audio_panel->Enable (_generally_sensitive && audio_selection.size() > 0);
593         }
594         for (int i = 0; i < TEXT_COUNT; ++i) {
595                 if (_text_panel[i]) {
596                         _text_panel[i]->Enable (_generally_sensitive && selection.size() == 1 && !selection.front()->text.empty());
597                 }
598         }
599         _timing_panel->Enable (_generally_sensitive);
600 }
601
602 void
603 ContentPanel::set_film (shared_ptr<Film> film)
604 {
605         if (_audio_panel) {
606                 _audio_panel->set_film (film);
607         }
608
609         _film = film;
610
611         film_changed (Film::CONTENT);
612         film_changed (Film::AUDIO_CHANNELS);
613
614         if (_film) {
615                 check_selection ();
616         }
617
618         setup_sensitivity ();
619 }
620
621 void
622 ContentPanel::set_general_sensitivity (bool s)
623 {
624         _generally_sensitive = s;
625         setup_sensitivity ();
626 }
627
628 void
629 ContentPanel::earlier_clicked ()
630 {
631         ContentList sel = selected ();
632         if (sel.size() == 1) {
633                 _film->move_content_earlier (sel.front ());
634                 check_selection ();
635         }
636 }
637
638 void
639 ContentPanel::later_clicked ()
640 {
641         ContentList sel = selected ();
642         if (sel.size() == 1) {
643                 _film->move_content_later (sel.front ());
644                 check_selection ();
645         }
646 }
647
648 void
649 ContentPanel::set_selection (weak_ptr<Content> wc)
650 {
651         ContentList content = _film->content ();
652         for (size_t i = 0; i < content.size(); ++i) {
653                 if (content[i] == wc.lock ()) {
654                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
655                 } else {
656                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED);
657                 }
658         }
659 }
660
661 void
662 ContentPanel::set_selection (ContentList cl)
663 {
664         _no_check_selection = true;
665
666         ContentList content = _film->content ();
667         for (size_t i = 0; i < content.size(); ++i) {
668                 if (find(cl.begin(), cl.end(), content[i]) != cl.end()) {
669                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
670                 } else {
671                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED);
672                 }
673         }
674
675         _no_check_selection = false;
676         check_selection ();
677 }
678
679 void
680 ContentPanel::film_content_changed (int property)
681 {
682         if (
683                 property == ContentProperty::PATH ||
684                 property == DCPContentProperty::NEEDS_ASSETS ||
685                 property == DCPContentProperty::NEEDS_KDM ||
686                 property == DCPContentProperty::NAME
687                 ) {
688
689                 setup ();
690         }
691
692         BOOST_FOREACH (ContentSubPanel* i, panels()) {
693                 i->film_content_changed (property);
694         }
695 }
696
697 void
698 ContentPanel::setup ()
699 {
700         if (!_film) {
701                 _content->DeleteAllItems ();
702                 setup_sensitivity ();
703                 return;
704         }
705
706         ContentList content = _film->content ();
707
708         Content* selected_content = 0;
709         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
710         if (s != -1) {
711                 wxListItem item;
712                 item.SetId (s);
713                 item.SetMask (wxLIST_MASK_DATA);
714                 _content->GetItem (item);
715                 selected_content = reinterpret_cast<Content*> (item.GetData ());
716         }
717
718         _content->DeleteAllItems ();
719
720         BOOST_FOREACH (shared_ptr<Content> i, content) {
721                 int const t = _content->GetItemCount ();
722                 bool const valid = i->paths_valid ();
723
724                 shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (i);
725                 bool const needs_kdm = dcp && dcp->needs_kdm ();
726                 bool const needs_assets = dcp && dcp->needs_assets ();
727
728                 wxString s = std_to_wx (i->summary ());
729
730                 if (!valid) {
731                         s = _("MISSING: ") + s;
732                 }
733
734                 if (needs_kdm) {
735                         s = _("NEEDS KDM: ") + s;
736                 }
737
738                 if (needs_assets) {
739                         s = _("NEEDS OV: ") + s;
740                 }
741
742                 wxListItem item;
743                 item.SetId (t);
744                 item.SetText (s);
745                 item.SetData (i.get ());
746                 _content->InsertItem (item);
747
748                 if (i.get() == selected_content) {
749                         _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
750                 }
751
752                 if (!valid || needs_kdm || needs_assets) {
753                         _content->SetItemTextColour (t, *wxRED);
754                 }
755         }
756
757         if (!selected_content && !content.empty ()) {
758                 /* Select the item of content if none was selected before */
759                 _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
760         }
761
762         setup_sensitivity ();
763 }
764
765 void
766 ContentPanel::files_dropped (wxDropFilesEvent& event)
767 {
768         if (!_film) {
769                 return;
770         }
771
772         wxString* paths = event.GetFiles ();
773         list<boost::filesystem::path> path_list;
774         for (int i = 0; i < event.GetNumberOfFiles(); i++) {
775                 path_list.push_back (wx_to_std (paths[i]));
776         }
777
778         add_files (path_list);
779 }
780
781 void
782 ContentPanel::add_files (list<boost::filesystem::path> paths)
783 {
784         /* It has been reported that the paths returned from e.g. wxFileDialog are not always sorted;
785            I can't reproduce that, but sort them anyway.  Don't use ImageFilenameSorter as a normal
786            alphabetical sort is expected here.
787         */
788
789         paths.sort (CaseInsensitiveSorter ());
790
791         /* XXX: check for lots of files here and do something */
792
793         try {
794                 BOOST_FOREACH (boost::filesystem::path i, paths) {
795                         BOOST_FOREACH (shared_ptr<Content> j, content_factory(i)) {
796                                 _film->examine_and_add_content (j);
797                         }
798                 }
799         } catch (exception& e) {
800                 error_dialog (_parent, e.what());
801         }
802 }
803
804 list<ContentSubPanel*>
805 ContentPanel::panels () const
806 {
807         list<ContentSubPanel*> p;
808         if (_video_panel) {
809                 p.push_back (_video_panel);
810         }
811         if (_audio_panel) {
812                 p.push_back (_audio_panel);
813         }
814         for (int i = 0; i < TEXT_COUNT; ++i) {
815                 if (_text_panel[i]) {
816                         p.push_back (_text_panel[i]);
817                 }
818         }
819         p.push_back (_timing_panel);
820         return p;
821 }