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