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