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