X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_panel.cc;h=456dbcb56db8f1980f890dbfba07408ff482996c;hb=fe851f2e6e57d3a8781ecc173089c19632c521e3;hp=a25e37a2ad1df70d774f76513d1d88f419cd4df4;hpb=0c66eff01358e75ff524f395aeb634ec34a47313;p=dcpomatic.git diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index a25e37a2a..456dbcb56 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -30,6 +30,7 @@ #include "timeline_dialog.h" #include "timing_panel.h" #include "video_panel.h" +#include "wx_ptr.h" #include "wx_util.h" #include "lib/audio_content.h" #include "lib/case_insensitive_sorter.h" @@ -45,7 +46,6 @@ #include "lib/image_content.h" #include "lib/log.h" #include "lib/playlist.h" -#include "lib/scope_guard.h" #include "lib/string_text_file.h" #include "lib/string_text_file_content.h" #include "lib/text_content.h" @@ -595,7 +595,7 @@ ContentPanel::add_file_clicked () /* The wxFD_CHANGE_DIR here prevents a `could not set working directory' error 123 on Windows when using non-Latin filenames or paths. */ - auto dialog = new FileDialog( + auto dialog = make_wx( _splitter, _("Choose a file or files"), wxT("All files|*.*|Subtitle files|*.srt;*.xml|Audio files|*.wav;*.w64;*.flac;*.aif;*.aiff"), @@ -604,8 +604,6 @@ ContentPanel::add_file_clicked () add_files_override_path() ); - ScopeGuard sg = [dialog]() { dialog->Destroy(); }; - if (dialog->show()) { add_files(dialog->paths()); } @@ -615,8 +613,7 @@ ContentPanel::add_file_clicked () void ContentPanel::add_folder_clicked () { - auto d = new DirDialog(_splitter, _("Choose a folder"), wxDD_DIR_MUST_EXIST, "AddFilesPath", add_files_override_path()); - ScopeGuard sg = [d]() { d->Destroy(); }; + auto d = make_wx(_splitter, _("Choose a folder"), wxDD_DIR_MUST_EXIST, "AddFilesPath", add_files_override_path()); if (d->show()) { add_folder(d->path()); } @@ -643,8 +640,7 @@ ContentPanel::add_folder(boost::filesystem::path folder) for (auto i: content) { auto ic = dynamic_pointer_cast (i); if (ic) { - auto e = new ImageSequenceDialog (_splitter); - ScopeGuard sg = [e]() { e->Destroy(); }; + auto e = make_wx(_splitter); if (e->ShowModal() != wxID_OK) { return; @@ -660,8 +656,7 @@ ContentPanel::add_folder(boost::filesystem::path folder) void ContentPanel::add_dcp_clicked () { - auto d = new DirDialog(_splitter, _("Choose a DCP folder"), wxDD_DIR_MUST_EXIST, "AddFilesPath", add_files_override_path()); - ScopeGuard sg = [d]() { d->Destroy(); }; + auto d = make_wx(_splitter, _("Choose a DCP folder"), wxDD_DIR_MUST_EXIST, "AddFilesPath", add_files_override_path()); if (d->show()) { add_dcp(d->path()); } @@ -714,12 +709,7 @@ ContentPanel::timeline_clicked () return; } - if (_timeline_dialog) { - _timeline_dialog->Destroy (); - _timeline_dialog = nullptr; - } - - _timeline_dialog = new TimelineDialog (this, _film, _film_viewer); + _timeline_dialog.reset(this, _film, _film_viewer); _timeline_dialog->set_selection (selected()); _timeline_dialog->Show (); }