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