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