Remove unnecessary set_film call.
[dcpomatic.git] / src / wx / content_panel.cc
1 /*
2     Copyright (C) 2012-2018 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 "lib/audio_content.h"
31 #include "lib/text_content.h"
32 #include "lib/video_content.h"
33 #include "lib/ffmpeg_content.h"
34 #include "lib/content_factory.h"
35 #include "lib/image_content.h"
36 #include "lib/dcp_content.h"
37 #include "lib/case_insensitive_sorter.h"
38 #include "lib/playlist.h"
39 #include "lib/config.h"
40 #include "lib/log.h"
41 #include "lib/compose.hpp"
42 #include "lib/string_text_file_content.h"
43 #include "lib/string_text_file.h"
44 #include <wx/wx.h>
45 #include <wx/notebook.h>
46 #include <wx/listctrl.h>
47 #include <boost/filesystem.hpp>
48 #include <boost/foreach.hpp>
49 #include <iostream>
50
51 using std::list;
52 using std::string;
53 using std::cout;
54 using std::vector;
55 using std::max;
56 using std::exception;
57 using boost::shared_ptr;
58 using boost::weak_ptr;
59 using boost::dynamic_pointer_cast;
60 using boost::optional;
61
62 #define LOG_GENERAL(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
63
64 ContentPanel::ContentPanel (wxNotebook* n, boost::shared_ptr<Film> film, FilmViewer* viewer)
65         : _video_panel (0)
66         , _audio_panel (0)
67         , _timeline_dialog (0)
68         , _parent (n)
69         , _last_selected_tab (0)
70         , _film (film)
71         , _film_viewer (viewer)
72         , _generally_sensitive (true)
73 {
74         for (int i = 0; i < TEXT_COUNT; ++i) {
75                 _text_panel[i] = 0;
76         }
77
78         _panel = new wxPanel (n);
79         _sizer = new wxBoxSizer (wxVERTICAL);
80         _panel->SetSizer (_sizer);
81
82         _menu = new ContentMenu (_panel);
83
84         {
85                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
86
87                 _content = new wxListCtrl (_panel, wxID_ANY, wxDefaultPosition, wxSize (320, 160), wxLC_REPORT | wxLC_NO_HEADER);
88                 _content->DragAcceptFiles (true);
89                 s->Add (_content, 1, wxEXPAND | wxTOP | wxBOTTOM, 6);
90
91                 _content->InsertColumn (0, wxT(""));
92                 _content->SetColumnWidth (0, 512);
93
94                 wxBoxSizer* b = new wxBoxSizer (wxVERTICAL);
95
96                 _add_file = new wxButton (_panel, wxID_ANY, _("Add file(s)..."));
97                 _add_file->SetToolTip (_("Add video, image, sound or subtitle files to the film."));
98                 b->Add (_add_file, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
99
100                 _add_folder = new wxButton (_panel, wxID_ANY, _("Add folder..."));
101                 _add_folder->SetToolTip (_("Add a folder of image files (which will be used as a moving image sequence) or a folder of sound files."));
102                 b->Add (_add_folder, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
103
104                 _add_dcp = new wxButton (_panel, wxID_ANY, _("Add DCP..."));
105                 _add_dcp->SetToolTip (_("Add a DCP."));
106                 b->Add (_add_dcp, 1, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
107
108                 _remove = new wxButton (_panel, wxID_ANY, _("Remove"));
109                 _remove->SetToolTip (_("Remove the selected piece of content from the film."));
110                 b->Add (_remove, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
111
112                 _earlier = new wxButton (_panel, wxID_ANY, _("Earlier"));
113                 _earlier->SetToolTip (_("Move the selected piece of content earlier in the film."));
114                 b->Add (_earlier, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
115
116                 _later = new wxButton (_panel, wxID_ANY, _("Later"));
117                 _later->SetToolTip (_("Move the selected piece of content later in the film."));
118                 b->Add (_later, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
119
120                 _timeline = new wxButton (_panel, wxID_ANY, _("Timeline..."));
121                 _timeline->SetToolTip (_("Open the timeline for the film."));
122                 b->Add (_timeline, 0, wxEXPAND | wxALL, DCPOMATIC_BUTTON_STACK_GAP);
123
124                 s->Add (b, 0, wxALL, 4);
125
126                 _sizer->Add (s, 0, wxEXPAND | wxALL, 6);
127         }
128
129         _notebook = new wxNotebook (_panel, wxID_ANY);
130         _sizer->Add (_notebook, 1, wxEXPAND | wxTOP, 6);
131
132         _timing_panel = new TimingPanel (this, _film_viewer);
133         _notebook->AddPage (_timing_panel, _("Timing"), false);
134
135         _content->Bind (wxEVT_LIST_ITEM_SELECTED, boost::bind (&ContentPanel::selection_changed, this));
136         _content->Bind (wxEVT_LIST_ITEM_DESELECTED, boost::bind (&ContentPanel::selection_changed, this));
137         _content->Bind (wxEVT_LIST_ITEM_RIGHT_CLICK, boost::bind (&ContentPanel::right_click, this, _1));
138         _content->Bind (wxEVT_DROP_FILES, boost::bind (&ContentPanel::files_dropped, this, _1));
139         _add_file->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_file_clicked, this));
140         _add_folder->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_folder_clicked, this));
141         _add_dcp->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::add_dcp_clicked, this));
142         _remove->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::remove_clicked, this, false));
143         _earlier->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::earlier_clicked, this));
144         _later->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::later_clicked, this));
145         _timeline->Bind (wxEVT_BUTTON, boost::bind (&ContentPanel::timeline_clicked, this));
146 }
147
148 ContentList
149 ContentPanel::selected ()
150 {
151         ContentList sel;
152         long int s = -1;
153         while (true) {
154                 s = _content->GetNextItem (s, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
155                 if (s == -1) {
156                         break;
157                 }
158
159                 ContentList cl = _film->content();
160                 if (s < int (cl.size())) {
161                         sel.push_back (cl[s]);
162                 }
163         }
164
165         return sel;
166 }
167
168 ContentList
169 ContentPanel::selected_video ()
170 {
171         ContentList vc;
172
173         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
174                 if (i->video) {
175                         vc.push_back (i);
176                 }
177         }
178
179         return vc;
180 }
181
182 ContentList
183 ContentPanel::selected_audio ()
184 {
185         ContentList ac;
186
187         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
188                 if (i->audio) {
189                         ac.push_back (i);
190                 }
191         }
192
193         return ac;
194 }
195
196 ContentList
197 ContentPanel::selected_text ()
198 {
199         ContentList sc;
200
201         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
202                 if (!i->text.empty()) {
203                         sc.push_back (i);
204                 }
205         }
206
207         return sc;
208 }
209
210 FFmpegContentList
211 ContentPanel::selected_ffmpeg ()
212 {
213         FFmpegContentList sc;
214
215         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
216                 shared_ptr<FFmpegContent> t = dynamic_pointer_cast<FFmpegContent> (i);
217                 if (t) {
218                         sc.push_back (t);
219                 }
220         }
221
222         return sc;
223 }
224
225 void
226 ContentPanel::film_changed (Film::Property p)
227 {
228         switch (p) {
229         case Film::CONTENT:
230         case Film::CONTENT_ORDER:
231                 setup ();
232                 break;
233         default:
234                 break;
235         }
236
237         BOOST_FOREACH (ContentSubPanel* i, panels()) {
238                 i->film_changed (p);
239         }
240 }
241
242 void
243 ContentPanel::selection_changed ()
244 {
245         if (_last_selected == selected()) {
246                 /* This was triggered by a re-build of the view but the selection
247                    did not really change.
248                 */
249                 return;
250         }
251
252         _last_selected = selected ();
253
254         setup_sensitivity ();
255
256         BOOST_FOREACH (ContentSubPanel* i, panels()) {
257                 i->content_selection_changed ();
258         }
259
260         optional<DCPTime> go_to;
261         BOOST_FOREACH (shared_ptr<Content> i, selected()) {
262                 DCPTime p;
263                 p = i->position();
264                 if (dynamic_pointer_cast<StringTextFileContent>(i) && i->paths_valid()) {
265                         /* Rather special case; if we select a text subtitle file jump to its
266                            first subtitle.
267                         */
268                         StringTextFile ts (dynamic_pointer_cast<StringTextFileContent>(i));
269                         if (ts.first()) {
270                                 p += DCPTime(ts.first().get(), _film->active_frame_rate_change(i->position()));
271                         }
272                 }
273                 if (!go_to || p < go_to.get()) {
274                         go_to = p;
275                 }
276         }
277
278         if (go_to && Config::instance()->jump_to_selected() && signal_manager) {
279                 signal_manager->when_idle(boost::bind(&FilmViewer::set_position, _film_viewer, go_to.get().ceil(_film->video_frame_rate())));
280         }
281
282         if (_timeline_dialog) {
283                 _timeline_dialog->set_selection (selected());
284         }
285
286         /* Make required tabs visible */
287
288         if (_notebook->GetPageCount() > 1) {
289                 /* There's more than one tab in the notebook so the current selection could be meaningful
290                    to the user; store it so that we can try to restore it later.
291                 */
292                 _last_selected_tab = 0;
293                 if (_notebook->GetSelection() != wxNOT_FOUND) {
294                         _last_selected_tab = _notebook->GetPage(_notebook->GetSelection());
295                 }
296         }
297
298         bool have_video = false;
299         bool have_audio = false;
300         bool have_text[TEXT_COUNT] = { false, false };
301         BOOST_FOREACH (shared_ptr<Content> i, selected()) {
302                 if (i->video) {
303                         have_video = true;
304                 }
305                 if (i->audio) {
306                         have_audio = true;
307                 }
308                 BOOST_FOREACH (shared_ptr<TextContent> j, i->text) {
309                         have_text[j->original_type()] = true;
310                 }
311         }
312
313         int off = 0;
314
315         if (have_video && !_video_panel) {
316                 _video_panel = new VideoPanel (this);
317                 _notebook->InsertPage (off, _video_panel, _video_panel->name());
318         } else if (!have_video && _video_panel) {
319                 _notebook->DeletePage (off);
320                 _video_panel = 0;
321         }
322
323         if (have_video) {
324                 ++off;
325         }
326
327         if (have_audio && !_audio_panel) {
328                 _audio_panel = new AudioPanel (this);
329                 _notebook->InsertPage (off, _audio_panel, _audio_panel->name());
330         } else if (!have_audio && _audio_panel) {
331                 _notebook->DeletePage (off);
332                 _audio_panel = 0;
333         }
334
335         if (have_audio) {
336                 ++off;
337         }
338
339         for (int i = 0; i < TEXT_COUNT; ++i) {
340                 if (have_text[i] && !_text_panel[i]) {
341                         _text_panel[i] = new TextPanel (this, static_cast<TextType>(i));
342                         _notebook->InsertPage (off, _text_panel[i], _text_panel[i]->name());
343                 } else if (!have_text[i] && _text_panel[i]) {
344                         _notebook->DeletePage (off);
345                         _text_panel[i] = 0;
346                 }
347                 if (have_text[i]) {
348                         ++off;
349                 }
350         }
351
352         /* Set up the tab selection */
353
354         bool done = false;
355         for (size_t i = 0; i < _notebook->GetPageCount(); ++i) {
356                 if (_notebook->GetPage(i) == _last_selected_tab) {
357                         _notebook->SetSelection (i);
358                         done = true;
359                 }
360         }
361
362         if (!done && _notebook->GetPageCount() > 0) {
363                 _notebook->SetSelection (0);
364         }
365
366         setup_sensitivity ();
367         SelectionChanged ();
368 }
369
370 void
371 ContentPanel::add_file_clicked ()
372 {
373         /* This method is also called when Ctrl-A is pressed, so check that our notebook page
374            is visible.
375         */
376         if (_parent->GetCurrentPage() != _panel || !_film) {
377                 return;
378         }
379
380         /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using
381            non-Latin filenames or paths.
382         */
383         wxFileDialog* d = new wxFileDialog (
384                 _panel,
385                 _("Choose a file or files"),
386                 wxT (""),
387                 wxT (""),
388                 wxT ("All files|*.*|Subtitle files|*.srt;*.xml|Audio files|*.wav;*.w64;*.flac;*.aif;*.aiff"),
389                 wxFD_MULTIPLE | wxFD_CHANGE_DIR
390                 );
391
392         int const r = d->ShowModal ();
393
394         if (r != wxID_OK) {
395                 d->Destroy ();
396                 return;
397         }
398
399         wxArrayString paths;
400         d->GetPaths (paths);
401         list<boost::filesystem::path> path_list;
402         for (unsigned int i = 0; i < paths.GetCount(); ++i) {
403                 path_list.push_back (wx_to_std (paths[i]));
404         }
405         add_files (path_list);
406
407         d->Destroy ();
408 }
409
410 void
411 ContentPanel::add_folder_clicked ()
412 {
413         wxDirDialog* d = new wxDirDialog (_panel, _("Choose a folder"), wxT (""), wxDD_DIR_MUST_EXIST);
414         int r = d->ShowModal ();
415         boost::filesystem::path const path (wx_to_std (d->GetPath ()));
416         d->Destroy ();
417
418         if (r != wxID_OK) {
419                 return;
420         }
421
422         list<shared_ptr<Content> > content;
423
424         try {
425                 content = content_factory (_film, path);
426         } catch (exception& e) {
427                 error_dialog (_parent, e.what());
428                 return;
429         }
430
431         if (content.empty ()) {
432                 error_dialog (_parent, _("No content found in this folder."));
433                 return;
434         }
435
436         BOOST_FOREACH (shared_ptr<Content> i, content) {
437                 shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
438                 if (ic) {
439                         ImageSequenceDialog* e = new ImageSequenceDialog (_panel);
440                         r = e->ShowModal ();
441                         float const frame_rate = e->frame_rate ();
442                         e->Destroy ();
443
444                         if (r != wxID_OK) {
445                                 return;
446                         }
447
448                         ic->set_video_frame_rate (frame_rate);
449                 }
450
451                 _film->examine_and_add_content (i);
452         }
453 }
454
455 void
456 ContentPanel::add_dcp_clicked ()
457 {
458         wxDirDialog* d = new wxDirDialog (_panel, _("Choose a DCP folder"), wxT (""), wxDD_DIR_MUST_EXIST);
459         int r = d->ShowModal ();
460         boost::filesystem::path const path (wx_to_std (d->GetPath ()));
461         d->Destroy ();
462
463         if (r != wxID_OK) {
464                 return;
465         }
466
467         try {
468                 _film->examine_and_add_content (shared_ptr<Content> (new DCPContent (_film, path)));
469         } catch (exception& e) {
470                 error_dialog (_parent, e.what());
471         }
472 }
473
474 /** @return true if this remove "click" should be ignored */
475 bool
476 ContentPanel::remove_clicked (bool hotkey)
477 {
478         /* If the method was called because Delete was pressed check that our notebook page
479            is visible and that the content list is focussed.
480         */
481         if (hotkey && (_parent->GetCurrentPage() != _panel || !_content->HasFocus())) {
482                 return true;
483         }
484
485         BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
486                 _film->remove_content (i);
487         }
488
489         selection_changed ();
490         return false;
491 }
492
493 void
494 ContentPanel::timeline_clicked ()
495 {
496         if (!_film) {
497                 return;
498         }
499
500         if (_timeline_dialog) {
501                 _timeline_dialog->Destroy ();
502                 _timeline_dialog = 0;
503         }
504
505         _timeline_dialog = new TimelineDialog (this, _film);
506         _timeline_dialog->set_selection (selected());
507         _timeline_dialog->Show ();
508 }
509
510 void
511 ContentPanel::right_click (wxListEvent& ev)
512 {
513         _menu->popup (_film, selected (), TimelineContentViewList (), ev.GetPoint ());
514 }
515
516 /** Set up broad sensitivity based on the type of content that is selected */
517 void
518 ContentPanel::setup_sensitivity ()
519 {
520         _add_file->Enable (_generally_sensitive);
521         _add_folder->Enable (_generally_sensitive);
522         _add_dcp->Enable (_generally_sensitive);
523
524         ContentList selection = selected ();
525         ContentList video_selection = selected_video ();
526         ContentList audio_selection = selected_audio ();
527
528         _remove->Enable   (_generally_sensitive && !selection.empty());
529         _earlier->Enable  (_generally_sensitive && selection.size() == 1);
530         _later->Enable    (_generally_sensitive && selection.size() == 1);
531         _timeline->Enable (_generally_sensitive && _film && !_film->content().empty());
532
533         if (_video_panel) {
534                 _video_panel->Enable (_generally_sensitive && video_selection.size() > 0);
535         }
536         if (_audio_panel) {
537                 _audio_panel->Enable (_generally_sensitive && audio_selection.size() > 0);
538         }
539         for (int i = 0; i < TEXT_COUNT; ++i) {
540                 if (_text_panel[i]) {
541                         _text_panel[i]->Enable (_generally_sensitive && selection.size() == 1 && !selection.front()->text.empty());
542                 }
543         }
544         _timing_panel->Enable   (_generally_sensitive);
545 }
546
547 void
548 ContentPanel::set_film (shared_ptr<Film> film)
549 {
550         if (_audio_panel) {
551                 _audio_panel->set_film (film);
552         }
553
554         _film = film;
555
556         film_changed (Film::CONTENT);
557         film_changed (Film::AUDIO_CHANNELS);
558         selection_changed ();
559         setup_sensitivity ();
560 }
561
562 void
563 ContentPanel::set_general_sensitivity (bool s)
564 {
565         _generally_sensitive = s;
566         setup_sensitivity ();
567 }
568
569 void
570 ContentPanel::earlier_clicked ()
571 {
572         ContentList sel = selected ();
573         if (sel.size() == 1) {
574                 _film->move_content_earlier (sel.front ());
575                 selection_changed ();
576         }
577 }
578
579 void
580 ContentPanel::later_clicked ()
581 {
582         ContentList sel = selected ();
583         if (sel.size() == 1) {
584                 _film->move_content_later (sel.front ());
585                 selection_changed ();
586         }
587 }
588
589 void
590 ContentPanel::set_selection (weak_ptr<Content> wc)
591 {
592         ContentList content = _film->content ();
593         for (size_t i = 0; i < content.size(); ++i) {
594                 if (content[i] == wc.lock ()) {
595                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
596                 } else {
597                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED);
598                 }
599         }
600 }
601
602 void
603 ContentPanel::set_selection (ContentList cl)
604 {
605         ContentList content = _film->content ();
606         for (size_t i = 0; i < content.size(); ++i) {
607                 if (find(cl.begin(), cl.end(), content[i]) != cl.end()) {
608                         _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
609                 } else {
610                         _content->SetItemState (i, 0, wxLIST_STATE_SELECTED);
611                 }
612         }
613 }
614
615 void
616 ContentPanel::film_content_changed (int property)
617 {
618         if (
619                 property == ContentProperty::PATH ||
620                 property == DCPContentProperty::NEEDS_ASSETS ||
621                 property == DCPContentProperty::NEEDS_KDM ||
622                 property == DCPContentProperty::NAME
623                 ) {
624
625                 setup ();
626         }
627
628         BOOST_FOREACH (ContentSubPanel* i, panels()) {
629                 i->film_content_changed (property);
630         }
631 }
632
633 void
634 ContentPanel::setup ()
635 {
636         ContentList content = _film->content ();
637
638         Content* selected_content = 0;
639         int const s = _content->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
640         if (s != -1) {
641                 wxListItem item;
642                 item.SetId (s);
643                 item.SetMask (wxLIST_MASK_DATA);
644                 _content->GetItem (item);
645                 selected_content = reinterpret_cast<Content*> (item.GetData ());
646         }
647
648         _content->DeleteAllItems ();
649
650         BOOST_FOREACH (shared_ptr<Content> i, content) {
651                 int const t = _content->GetItemCount ();
652                 bool const valid = i->paths_valid ();
653
654                 /* Temporary debugging for Igor */
655                 BOOST_FOREACH (boost::filesystem::path j, i->paths()) {
656                         LOG_GENERAL ("Check %1 %2 answer %3", j.string(), boost::filesystem::exists(j) ? "yes" : "no", valid ? "yes" : "no");
657                 }
658
659                 shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (i);
660                 bool const needs_kdm = dcp && dcp->needs_kdm ();
661                 bool const needs_assets = dcp && dcp->needs_assets ();
662
663                 wxString s = std_to_wx (i->summary ());
664
665                 if (!valid) {
666                         s = _("MISSING: ") + s;
667                 }
668
669                 if (needs_kdm) {
670                         s = _("NEEDS KDM: ") + s;
671                 }
672
673                 if (needs_assets) {
674                         s = _("NEEDS OV: ") + s;
675                 }
676
677                 wxListItem item;
678                 item.SetId (t);
679                 item.SetText (s);
680                 item.SetData (i.get ());
681                 _content->InsertItem (item);
682
683                 if (i.get() == selected_content) {
684                         _content->SetItemState (t, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
685                 }
686
687                 if (!valid || needs_kdm || needs_assets) {
688                         _content->SetItemTextColour (t, *wxRED);
689                 }
690         }
691
692         if (!selected_content && !content.empty ()) {
693                 /* Select the item of content if none was selected before */
694                 _content->SetItemState (0, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
695         }
696
697         setup_sensitivity ();
698 }
699
700 void
701 ContentPanel::files_dropped (wxDropFilesEvent& event)
702 {
703         if (!_film) {
704                 return;
705         }
706
707         wxString* paths = event.GetFiles ();
708         list<boost::filesystem::path> path_list;
709         for (int i = 0; i < event.GetNumberOfFiles(); i++) {
710                 path_list.push_back (wx_to_std (paths[i]));
711         }
712
713         add_files (path_list);
714 }
715
716 void
717 ContentPanel::add_files (list<boost::filesystem::path> paths)
718 {
719         /* It has been reported that the paths returned from e.g. wxFileDialog are not always sorted;
720            I can't reproduce that, but sort them anyway.  Don't use ImageFilenameSorter as a normal
721            alphabetical sort is expected here.
722         */
723
724         paths.sort (CaseInsensitiveSorter ());
725
726         /* XXX: check for lots of files here and do something */
727
728         try {
729                 BOOST_FOREACH (boost::filesystem::path i, paths) {
730                         BOOST_FOREACH (shared_ptr<Content> j, content_factory (_film, i)) {
731                                 _film->examine_and_add_content (j);
732                         }
733                 }
734         } catch (exception& e) {
735                 error_dialog (_parent, e.what());
736         }
737 }
738
739 list<ContentSubPanel*>
740 ContentPanel::panels () const
741 {
742         list<ContentSubPanel*> p;
743         if (_video_panel) {
744                 p.push_back (_video_panel);
745         }
746         if (_audio_panel) {
747                 p.push_back (_audio_panel);
748         }
749         for (int i = 0; i < TEXT_COUNT; ++i) {
750                 if (_text_panel[i]) {
751                         p.push_back (_text_panel[i]);
752                 }
753         }
754         p.push_back (_timing_panel);
755         return p;
756 }