First hacks on OOBE help.
[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 "wx_help.h"
32 #include "lib/audio_content.h"
33 #include "lib/text_content.h"
34 #include "lib/video_content.h"
35 #include "lib/ffmpeg_content.h"
36 #include "lib/content_factory.h"
37 #include "lib/image_content.h"
38 #include "lib/dcp_content.h"
39 #include "lib/case_insensitive_sorter.h"
40 #include "lib/playlist.h"
41 #include "lib/config.h"
42 #include "lib/log.h"
43 #include "lib/compose.hpp"
44 #include "lib/string_text_file_content.h"
45 #include "lib/string_text_file.h"
46 #include "lib/dcpomatic_log.h"
47 #include <wx/wx.h>
48 #include <wx/notebook.h>
49 #include <wx/listctrl.h>
50 #include <wx/display.h>
51 #include <boost/filesystem.hpp>
52 #include <boost/foreach.hpp>
53 #include <iostream>
54
55 using std::list;
56 using std::string;
57 using std::cout;
58 using std::vector;
59 using std::max;
60 using std::exception;
61 using boost::shared_ptr;
62 using boost::weak_ptr;
63 using boost::dynamic_pointer_cast;
64 using boost::optional;
65 using namespace dcpomatic;
66
67 class LimitedSplitter : public wxSplitterWindow
68 {
69 public:
70         LimitedSplitter (wxWindow* parent)
71                 : wxSplitterWindow (parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSP_NOBORDER | wxSP_3DSASH | wxSP_LIVE_UPDATE)
72         {
73                 /* This value doesn't really mean much but we just want to stop double-click on the
74                    divider from shrinking the bottom panel (#1601).
75                 */
76                 SetMinimumPaneSize (64);
77         }
78
79         bool OnSashPositionChange (int new_position)
80         {
81                 /* Try to stop the top bit of the splitter getting so small that buttons disappear */
82                 return new_position > 220;
83         }
84 };
85
86 ContentPanel::ContentPanel (wxNotebook* n, shared_ptr<Film> film, weak_ptr<FilmViewer> viewer)
87         : _video_panel (0)
88         , _audio_panel (0)
89         , _timeline_dialog (0)
90         , _parent (n)
91         , _last_selected_tab (0)
92         , _film (film)
93         , _film_viewer (viewer)
94         , _generally_sensitive (true)
95         , _ignore_deselect (false)
96         , _no_check_selection (false)
97 {
98         for (int i = 0; i < TEXT_COUNT; ++i) {
99                 _text_panel[i] = 0;
100         }
101
102         _splitter = new LimitedSplitter (n);
103         optional<wxRect> screen;
104         int const sn = wxDisplay::GetFromWindow(_splitter);
105         if (sn >= 0) {
106                 screen = wxDisplay(sn).GetClientArea();
107         }
108         wxPanel* top = new wxPanel (_splitter);
109
110         _menu = new ContentMenu (_splitter);
111
112
113         {
114                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
115
116                 _content = new wxListCtrl (top, wxID_ANY, wxDefaultPosition, wxSize (320, 160), wxLC_REPORT | wxLC_NO_HEADER);
117                 _content->DragAcceptFiles (true);
118                 s->Add (_content, 1, wxEXPAND | wxTOP | wxBOTTOM, 6);
119
120                 _content->InsertColumn (0, wxT(""));
121                 _content->SetColumnWidth (0, 512);
122
123                 wxBoxSizer* b = new wxBoxSizer (wxVERTICAL);
124
125                 _add_file = new Button (top, _("Add file(s)..."));
126                 _add_file->SetToolTip (_("Add video, image, sound or subtitle files to the film."));
127                 b->Add (_add_file, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
128
129                 _add_folder = new Button (top, _("Add folder..."));
130                 _add_folder->SetToolTip (_("Add a folder of image files (which will be used as a moving image sequence) or a folder of sound files."));
131                 b->Add (_add_folder, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
132                 HelpGUI::instance()->landmark (_add_folder, HelpGUI::ADD_FOLDER_BUTTON);
133
134                 _add_dcp = new Button (top, _("Add DCP..."));
135                 _add_dcp->SetToolTip (_("Add a DCP."));
136                 b->Add (_add_dcp, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
137
138                 _remove = new Button (top, _("Remove"));
139                 _remove->SetToolTip (_("Remove the selected piece of content from the film."));
140                 b->Add (_remove, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
141
142                 _earlier = new Button (top, _("Earlier"));
143                 _earlier->SetToolTip (_("Move the selected piece of content earlier in the film."));
144                 b->Add (_earlier, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
145
146                 _later = new Button (top, _("Later"));
147                 _later->SetToolTip (_("Move the selected piece of content later in the film."));
148                 b->Add (_later, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
149
150                 _timeline = new Button (top, _("Timeline..."));
151                 _timeline->SetToolTip (_("Open the timeline for the film."));
152                 b->Add (_timeline, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
153
154                 s->Add (b, 0, wxALL, 4);
155                 top->SetSizer (s);
156         }
157
158         _notebook = new wxNotebook (_splitter, wxID_ANY);
159
160         /* This is a hack to try and make the content notebook a sensible size; large on big displays but small
161            enough on small displays to leave space for the content area.
162         */
163         if (screen) {
164                 _splitter->SplitHorizontally (top, _notebook, screen->height > 800 ? -600 : -150);
165         }
166
167         _timing_panel = new TimingPanel (this, _film_viewer);
168         _notebook->AddPage (_timing_panel, _("Timing"), false);
169
170         _content->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&ContentPanel::item_selected, this));
171         _content->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&ContentPanel::item_deselected, this));
172         _content->Bind (wxEVT_LIST_ITEM_RIGHT_CLICK, boost::bind (&ContentPanel::right_click, this, _1));
173         _content->Bind (wxEVT_DROP_FILES, boost::bind (&ContentPanel::files_dropped, this, _1));
174         _add_file->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_file_clicked, this));
175         _add_folder->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_folder_clicked, this));
176         _add_dcp->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_dcp_clicked, this));
177         _remove->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::remove_clicked, this, false));
178         _earlier->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::earlier_clicked, this));
179         _later->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::later_clicked, this));
180         _timeline->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::timeline_clicked, this));
181 }
182
183 ContentList
184 ContentPanel::selected ()
185 {
186         ContentList sel;
187         long int s = -1;
188         while (true) {
189                 s = _content->GetNextItem (s, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
190                 if (s == -1) {
191                         break;
192                 }
193
194                 ContentList cl = _film->content();
195                 if (s < int (cl.size())) {
196                         sel.push_back (cl[s]);
197                 }
198         }
199
200         return sel;
201 }
202
203 ContentList
204 ContentPanel::selected_video ()
205 {
206         ContentList vc;
207
208         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
209                 if (i->video) {
210                         vc.push_back (i);
211                 }
212         }
213
214         return vc;
215 }
216
217 ContentList
218 ContentPanel::selected_audio ()
219 {
220         ContentList ac;
221
222         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
223                 if (i->audio) {
224                         ac.push_back (i);
225                 }
226         }
227
228         return ac;
229 }
230
231 ContentList
232 ContentPanel::selected_text ()
233 {
234         ContentList sc;
235
236         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
237                 if (!i->text.empty()) {
238                         sc.push_back (i);
239                 }
240         }
241
242         return sc;
243 }
244
245 FFmpegContentList
246 ContentPanel::selected_ffmpeg ()
247 {
248         FFmpegContentList sc;
249
250         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
251                 shared_ptr<FFmpegContent> t = dynamic_pointer_cast<FFmpegContent> (i);
252                 if (t) {
253                         sc.push_back (t);
254                 }
255         }
256
257         return sc;
258 }
259
260 void
261 ContentPanel::film_changed (Film::Property p)
262 {
263         switch (p) {
264         case Film::CONTENT:
265         case Film::CONTENT_ORDER:
266                 setup ();
267                 break;
268         default:
269                 break;
270         }
271
272         BOOST_FOREACH (ContentSubPanel* i, panels()) {
273                 i->film_changed (p);
274         }
275 }
276
277 void
278 ContentPanel::item_deselected ()
279 {
280         /* Maybe this is just a re-click on the same item; if not, _ignore_deselect will stay
281            false and item_deselected_foo will handle the deselection.
282         */
283         _ignore_deselect = false;
284         signal_manager->when_idle (boost::bind (&ContentPanel::item_deselected_idle, this));
285 }
286
287 void
288 ContentPanel::item_deselected_idle ()
289 {
290         if (!_ignore_deselect) {
291                 check_selection ();
292         }
293 }
294
295 void
296 ContentPanel::item_selected ()
297 {
298         _ignore_deselect = true;
299         check_selection ();
300 }
301
302 void
303 ContentPanel::check_selection ()
304 {
305         if (_no_check_selection) {
306                 return;
307         }
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 }