Make ignore video option respect OK/Cancel.
authorCarl Hetherington <cth@carlh.net>
Fri, 14 Oct 2022 23:10:46 +0000 (01:10 +0200)
committerCarl Hetherington <cth@carlh.net>
Sat, 15 Oct 2022 21:24:56 +0000 (23:24 +0200)
src/wx/content_advanced_dialog.cc
src/wx/content_advanced_dialog.h
src/wx/content_menu.cc

index 567a7c50350dd616eefbb268897da3a96e03fb56..1a2a8b6a36a83a3e3b001622c5e451985ada8ac1 100644 (file)
@@ -99,8 +99,8 @@ ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Conte
        sizer->Add (_burnt_subtitle_language->sizer(), wxGBPosition(r, 1), wxGBSpan(1, 2), wxEXPAND);
        ++r;
 
-       auto ignore_video = new wxCheckBox (this, wxID_ANY, _("Ignore this content's video and use only audio, subtitles and closed captions"));
-       sizer->Add (ignore_video, wxGBPosition(r, 0), wxGBSpan(1, 3));
+       _ignore_video = new wxCheckBox (this, wxID_ANY, _("Ignore this content's video and use only audio, subtitles and closed captions"));
+       sizer->Add(_ignore_video, wxGBPosition(r, 0), wxGBSpan(1, 3));
        ++r;
 
        auto overall = new wxBoxSizer (wxVERTICAL);
@@ -112,8 +112,8 @@ ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Conte
 
        SetSizerAndFit (overall);
 
-       ignore_video->Enable (static_cast<bool>(_content->video));
-       ignore_video->SetValue (_content->video ? !content->video->use() : false);
+       _ignore_video->Enable(static_cast<bool>(_content->video));
+       _ignore_video->SetValue(_content->video ? !content->video->use() : false);
        setup_filters ();
 
        bool const single_frame_image_content = dynamic_pointer_cast<const ImageContent>(_content) && _content->number_of_paths() == 1;
@@ -128,7 +128,6 @@ ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Conte
        _burnt_subtitle->SetValue (_content->video && static_cast<bool>(_content->video->burnt_subtitle_language()));
        _burnt_subtitle_language->set (_content->video ? _content->video->burnt_subtitle_language() : boost::none);
 
-       ignore_video->Bind (wxEVT_CHECKBOX, bind(&ContentAdvancedDialog::ignore_video_changed, this, _1));
        _filters_button->Bind (wxEVT_BUTTON, bind(&ContentAdvancedDialog::edit_filters, this));
        _set_video_frame_rate->Bind (wxEVT_BUTTON, bind(&ContentAdvancedDialog::set_video_frame_rate, this));
        _video_frame_rate->Bind (wxEVT_TEXT, boost::bind(&ContentAdvancedDialog::video_frame_rate_changed, this));
@@ -139,12 +138,10 @@ ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Conte
 }
 
 
-void
-ContentAdvancedDialog::ignore_video_changed (wxCommandEvent& ev)
+bool
+ContentAdvancedDialog::ignore_video() const
 {
-        if (_content->video) {
-                _content->video->set_use (!ev.IsChecked());
-        }
+       return _ignore_video->GetValue();
 }
 
 
index 1dd2b472d917a8e715bdd80a0ffeee95faf2232e..b765fa9fbef3d524b0d6c9145d67e6c9ceaca4c9 100644 (file)
@@ -37,8 +37,9 @@ class ContentAdvancedDialog : public wxDialog
 public:
        ContentAdvancedDialog (wxWindow* parent, std::shared_ptr<Content> content);
 
+       bool ignore_video() const;
+
 private:
-       void ignore_video_changed (wxCommandEvent& ev);
        void edit_filters ();
        void filters_changed (std::vector<Filter const *> filters);
        void setup_filters ();
@@ -56,5 +57,6 @@ private:
        wxButton* _set_video_frame_rate;
        wxCheckBox* _burnt_subtitle;
        LanguageTagWidget* _burnt_subtitle_language;
+       wxCheckBox* _ignore_video;
 };
 
index 6c4864239223e06e58fa842f4fe9cf5ac4364957..9ef674fd1fa578958034add522a4db3e8514e533 100644 (file)
@@ -43,6 +43,7 @@
 #include "lib/image_content.h"
 #include "lib/job_manager.h"
 #include "lib/playlist.h"
+#include "lib/scope_guard.h"
 #include "lib/video_content.h"
 #include <dcp/cpl.h>
 #include <dcp/decrypted_kdm.h>
@@ -461,9 +462,19 @@ ContentMenu::properties ()
 void
 ContentMenu::advanced ()
 {
-       auto d = new ContentAdvancedDialog (_parent, _content.front());
-       d->ShowModal ();
-       d->Destroy ();
+       DCPOMATIC_ASSERT(!_content.empty());
+
+       auto content = _content.front();
+       auto dialog = new ContentAdvancedDialog(_parent, content);
+       ScopeGuard sg = [dialog]() { dialog->Destroy(); };
+
+       if (dialog->ShowModal() == wxID_CANCEL) {
+               return;
+       }
+
+       if (content->video) {
+               content->video->set_use(!dialog->ignore_video());
+       }
 }