Remove an optimisation to not run the body of ContentPanel::check_selection
[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         _last_selected = selected ();
308
309         setup_sensitivity ();
310
311         BOOST_FOREACH (ContentSubPanel* i, panels()) {
312                 i->content_selection_changed ();
313         }
314
315         optional<DCPTime> go_to;
316         BOOST_FOREACH (shared_ptr<Content> i, selected()) {
317                 DCPTime p;
318                 p = i->position();
319                 if (dynamic_pointer_cast<StringTextFileContent>(i) && i->paths_valid()) {
320                         /* Rather special case; if we select a text subtitle file jump to its
321                            first subtitle.
322                         */
323                         StringTextFile ts (dynamic_pointer_cast<StringTextFileContent>(i));
324                         if (ts.first()) {
325                                 p += DCPTime(ts.first().get(), _film->active_frame_rate_change(i->position()));
326                         }
327                 }
328                 if (!go_to || p < go_to.get()) {
329                         go_to = p;
330                 }
331         }
332
333         if (go_to && Config::instance()->jump_to_selected() && signal_manager) {
334                 shared_ptr<FilmViewer> fv = _film_viewer.lock ();
335                 DCPOMATIC_ASSERT (fv);
336                 signal_manager->when_idle(boost::bind(&FilmViewer::seek, fv.get(), go_to.get().ceil(_film->video_frame_rate()), true));
337         }
338
339         if (_timeline_dialog) {
340                 _timeline_dialog->set_selection (selected());
341         }
342
343         /* Make required tabs visible */
344
345         if (_notebook->GetPageCount() > 1) {
346                 /* There's more than one tab in the notebook so the current selection could be meaningful
347                    to the user; store it so that we can try to restore it later.
348                 */
349                 _last_selected_tab = 0;
350                 if (_notebook->GetSelection() != wxNOT_FOUND) {
351                         _last_selected_tab = _notebook->GetPage(_notebook->GetSelection());
352                 }
353         }
354
355         bool have_video = false;
356         bool have_audio = false;
357         bool have_text[TEXT_COUNT] = { false, false };
358         BOOST_FOREACH (shared_ptr<Content> i, selected()) {
359                 if (i->video) {
360                         have_video = true;
361                 }
362                 if (i->audio) {
363                         have_audio = true;
364                 }
365                 BOOST_FOREACH (shared_ptr<TextContent> j, i->text) {
366                         have_text[j->original_type()] = true;
367                 }
368         }
369
370         int off = 0;
371
372         if (have_video && !_video_panel) {
373                 _video_panel = new VideoPanel (this);
374                 _notebook->InsertPage (off, _video_panel, _video_panel->name());
375         } else if (!have_video && _video_panel) {
376                 _notebook->DeletePage (off);
377                 _video_panel = 0;
378         }
379
380         if (have_video) {
381                 ++off;
382         }
383
384         if (have_audio && !_audio_panel) {
385                 _audio_panel = new AudioPanel (this);
386                 _notebook->InsertPage (off, _audio_panel, _audio_panel->name());
387         } else if (!have_audio && _audio_panel) {
388                 _notebook->DeletePage (off);
389                 _audio_panel = 0;
390         }
391
392         if (have_audio) {
393                 ++off;
394         }
395
396         for (int i = 0; i < TEXT_COUNT; ++i) {
397                 if (have_text[i] && !_text_panel[i]) {
398                         _text_panel[i] = new TextPanel (this, static_cast<TextType>(i));
399                         _notebook->InsertPage (off, _text_panel[i], _text_panel[i]->name());
400                 } else if (!have_text[i] && _text_panel[i]) {
401                         _notebook->DeletePage (off);
402                         _text_panel[i] = 0;
403                 }
404                 if (have_text[i]) {
405                         ++off;
406                 }
407         }
408
409         /* Set up the tab selection */
410
411         bool done = false;
412         for (size_t i = 0; i < _notebook->GetPageCount(); ++i) {
413                 if (_notebook->GetPage(i) == _last_selected_tab) {
414                         _notebook->SetSelection (i);
415                         done = true;
416                 }
417         }
418
419         if (!done && _notebook->GetPageCount() > 0) {
420                 _notebook->SetSelection (0);
421         }
422
423         setup_sensitivity ();
424         SelectionChanged ();
425 }
426
427 void
428 ContentPanel::add_file_clicked ()
429 {
430         /* This method is also called when Ctrl-A is pressed, so check that our notebook page
431            is visible.
432         */
433         if (_parent->GetCurrentPage() != _splitter || !_film) {
434                 return;
435         }
436
437         /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
438            non-Latin filenames or paths.
439         */
440         wxFileDialog* d = new wxFileDialog (
441                 _splitter,
442                 _("Choose a file or files"),
443                 wxT (""),
444                 wxT (""),
445                 wxT ("All files|*.*|Subtitle files|*.srt;*.xml|Audio files|*.wav;*.w64;*.flac;*.aif;*.aiff"),
446                 wxFD_MULTIPLE | wxFD_CHANGE_DIR
447                 );
448
449         int const r = d->ShowModal ();
450
451         if (r != wxID_OK) {
452                 d->Destroy ();
453                 return;
454         }
455
456         wxArrayString paths;
457         d->GetPaths (paths);
458         list<boost::filesystem::path> path_list;
459         for (unsigned int i = 0; i < paths.GetCount(); ++i) {
460                 path_list.push_back (wx_to_std (paths[i]));
461         }
462         add_files (path_list);
463
464         d->Destroy ();
465 }
466
467 void
468 ContentPanel::add_folder_clicked ()
469 {
470         wxDirDialog* d = new wxDirDialog (_splitter, _("Choose a folder"), wxT(""), wxDD_DIR_MUST_EXIST);
471         int r = d->ShowModal ();
472         boost::filesystem::path const path (wx_to_std (d->GetPath ()));
473         d->Destroy ();
474
475         if (r != wxID_OK) {
476                 return;
477         }
478
479         list<shared_ptr<Content> > content;
480
481         try {
482                 content = content_factory (path);
483         } catch (exception& e) {
484                 error_dialog (_parent, e.what());
485                 return;
486         }
487
488         if (content.empty ()) {
489                 error_dialog (_parent, _("No content found in this folder."));
490                 return;
491         }
492
493         BOOST_FOREACH (shared_ptr<Content> i, content) {
494                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
495                 if (ic) {
496                         ImageSequenceDialog* e = new ImageSequenceDialog (_splitter);
497                         r = e->ShowModal ();
498                         float const frame_rate = e->frame_rate ();
499                         e->Destroy ();
500
501                         if (r != wxID_OK) {
502                                 return;
503                         }
504
505                         ic->set_video_frame_rate (frame_rate);
506                 }
507
508                 _film->examine_and_add_content (i);
509         }
510 }
511
512 void
513 ContentPanel::add_dcp_clicked ()
514 {
515         wxDirDialog* d = new wxDirDialog (_splitter, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST);
516         int r = d->ShowModal ();
517         boost::filesystem::path const path (wx_to_std (d->GetPath ()));
518         d->Destroy ();
519
520         if (r != wxID_OK) {
521                 return;
522         }
523
524         try {
525                 _film->examine_and_add_content (shared_ptr<Content> (new DCPContent (path)));
526         } catch (exception& e) {
527                 error_dialog (_parent, e.what());
528         }
529 }
530
531 /** @return true if this remove "click" should be ignored */
532 bool
533 ContentPanel::remove_clicked (bool hotkey)
534 {
535         /* If the method was called because Delete was pressed check that our notebook page
536            is visible and that the content list is focussed.
537         */
538         if (hotkey && (_parent->GetCurrentPage() != _splitter || !_content->HasFocus())) {
539                 return true;
540         }
541
542         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
543                 _film->remove_content (i);
544         }
545
546         check_selection ();
547         return false;
548 }
549
550 void
551 ContentPanel::timeline_clicked ()
552 {
553         if (!_film) {
554                 return;
555         }
556
557         if (_timeline_dialog) {
558                 _timeline_dialog->Destroy ();
559                 _timeline_dialog = 0;
560         }
561
562         _timeline_dialog = new TimelineDialog (this, _film, _film_viewer);
563         _timeline_dialog->set_selection (selected());
564         _timeline_dialog->Show ();
565 }
566
567 void
568 ContentPanel::right_click (wxListEvent& ev)
569 {
570         _menu->popup (_film, selected (), TimelineContentViewList (), ev.GetPoint ());
571 }
572
573 /** Set up broad sensitivity based on the type of content that is selected */
574 void
575 ContentPanel::setup_sensitivity ()
576 {
577         _add_file->Enable (_generally_sensitive);
578         _add_folder->Enable (_generally_sensitive);
579         _add_dcp->Enable (_generally_sensitive);
580
581         ContentList selection = selected ();
582         ContentList video_selection = selected_video ();
583         ContentList audio_selection = selected_audio ();
584
585         _remove->Enable   (_generally_sensitive && !selection.empty());
586         _earlier->Enable  (_generally_sensitive && selection.size() == 1);
587         _later->Enable    (_generally_sensitive && selection.size() == 1);
588         _timeline->Enable (_generally_sensitive && _film && !_film->content().empty());
589
590         if (_video_panel) {
591                 _video_panel->Enable (_generally_sensitive && video_selection.size() > 0);
592         }
593         if (_audio_panel) {
594                 _audio_panel->Enable (_generally_sensitive && audio_selection.size() > 0);
595         }
596         for (int i = 0; i < TEXT_COUNT; ++i) {
597                 if (_text_panel[i]) {
598                         _text_panel[i]->Enable (_generally_sensitive && selection.size() == 1 && !selection.front()->text.empty());
599                 }
600         }
601         _timing_panel->Enable (_generally_sensitive);
602 }
603
604 void
605 ContentPanel::set_film (shared_ptr<Film> film)
606 {
607         if (_audio_panel) {
608                 _audio_panel->set_film (film);
609         }
610
611         _film = film;
612
613         film_changed (Film::CONTENT);
614         film_changed (Film::AUDIO_CHANNELS);
615
616         if (_film) {
617                 check_selection ();
618         }
619
620         setup_sensitivity ();
621 }
622
623 void
624 ContentPanel::set_general_sensitivity (bool s)
625 {
626         _generally_sensitive = s;
627         setup_sensitivity ();
628 }
629
630 void
631 ContentPanel::earlier_clicked ()
632 {
633         ContentList sel = selected ();
634         if (sel.size() == 1) {
635                 _film->move_content_earlier (sel.front ());
636                 check_selection ();
637         }
638 }
639
640 void
641 ContentPanel::later_clicked ()
642 {
643         ContentList sel = selected ();
644         if (sel.size() == 1) {
645                 _film->move_content_later (sel.front ());
646                 check_selection ();
647         }
648 }
649
650 void
651 ContentPanel::set_selection (weak_ptr<Content> wc)
652 {
653         ContentList content = _film->content ();
654         for (size_t i = 0; i < content.size(); ++i) {
655                 if (content[i] == wc.lock ()) {
656                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
657                 } else {
658                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED);
659                 }
660         }
661 }
662
663 void
664 ContentPanel::set_selection (ContentList cl)
665 {
666         _no_check_selection = true;
667
668         ContentList content = _film->content ();
669         for (size_t i = 0; i < content.size(); ++i) {
670                 if (find(cl.begin(), cl.end(), content[i]) != cl.end()) {
671                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
672                 } else {
673                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED);
674                 }
675         }
676
677         _no_check_selection = false;
678         check_selection ();
679 }
680
681 void
682 ContentPanel::film_content_changed (int property)
683 {
684         if (
685                 property == ContentProperty::PATH ||
686                 property == DCPContentProperty::NEEDS_ASSETS ||
687                 property == DCPContentProperty::NEEDS_KDM ||
688                 property == DCPContentProperty::NAME
689                 ) {
690
691                 setup ();
692         }
693
694         BOOST_FOREACH (ContentSubPanel* i, panels()) {
695                 i->film_content_changed (property);
696         }
697 }
698
699 void
700 ContentPanel::setup ()
701 {
702         if (!_film) {
703                 _content->DeleteAllItems ();
704                 setup_sensitivity ();
705                 return;
706         }
707
708         ContentList content = _film->content ();
709
710         Content* selected_content = 0;
711         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
712         if (s != -1) {
713                 wxListItem item;
714                 item.SetId (s);
715                 item.SetMask (wxLIST_MASK_DATA);
716                 _content->GetItem (item);
717                 selected_content = reinterpret_cast<Content*> (item.GetData ());
718         }
719
720         _content->DeleteAllItems ();
721
722         BOOST_FOREACH (shared_ptr<Content> i, content) {
723                 int const t = _content->GetItemCount ();
724                 bool const valid = i->paths_valid ();
725
726                 shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (i);
727                 bool const needs_kdm = dcp && dcp->needs_kdm ();
728                 bool const needs_assets = dcp && dcp->needs_assets ();
729
730                 wxString s = std_to_wx (i->summary ());
731
732                 if (!valid) {
733                         s = _("MISSING: ") + s;
734                 }
735
736                 if (needs_kdm) {
737                         s = _("NEEDS KDM: ") + s;
738                 }
739
740                 if (needs_assets) {
741                         s = _("NEEDS OV: ") + s;
742                 }
743
744                 wxListItem item;
745                 item.SetId (t);
746                 item.SetText (s);
747                 item.SetData (i.get ());
748                 _content->InsertItem (item);
749
750                 if (i.get() == selected_content) {
751                         _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
752                 }
753
754                 if (!valid || needs_kdm || needs_assets) {
755                         _content->SetItemTextColour (t, *wxRED);
756                 }
757         }
758
759         if (!selected_content && !content.empty ()) {
760                 /* Select the item of content if none was selected before */
761                 _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
762         }
763
764         setup_sensitivity ();
765 }
766
767 void
768 ContentPanel::files_dropped (wxDropFilesEvent& event)
769 {
770         if (!_film) {
771                 return;
772         }
773
774         wxString* paths = event.GetFiles ();
775         list<boost::filesystem::path> path_list;
776         for (int i = 0; i < event.GetNumberOfFiles(); i++) {
777                 path_list.push_back (wx_to_std (paths[i]));
778         }
779
780         add_files (path_list);
781 }
782
783 void
784 ContentPanel::add_files (list<boost::filesystem::path> paths)
785 {
786         /* It has been reported that the paths returned from e.g. wxFileDialog are not always sorted;
787            I can't reproduce that, but sort them anyway.  Don't use ImageFilenameSorter as a normal
788            alphabetical sort is expected here.
789         */
790
791         paths.sort (CaseInsensitiveSorter ());
792
793         /* XXX: check for lots of files here and do something */
794
795         try {
796                 BOOST_FOREACH (boost::filesystem::path i, paths) {
797                         BOOST_FOREACH (shared_ptr<Content> j, content_factory(i)) {
798                                 _film->examine_and_add_content (j);
799                         }
800                 }
801         } catch (exception& e) {
802                 error_dialog (_parent, e.what());
803         }
804 }
805
806 list<ContentSubPanel*>
807 ContentPanel::panels () const
808 {
809         list<ContentSubPanel*> p;
810         if (_video_panel) {
811                 p.push_back (_video_panel);
812         }
813         if (_audio_panel) {
814                 p.push_back (_audio_panel);
815         }
816         for (int i = 0; i < TEXT_COUNT; ++i) {
817                 if (_text_panel[i]) {
818                         p.push_back (_text_panel[i]);
819                 }
820         }
821         p.push_back (_timing_panel);
822         return p;
823 }