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