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