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