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