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