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