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