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