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