From 83e99babaa4ae7d5479912bbda9bcd653ab0ccb3 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 9 Aug 2019 12:39:35 +0100 Subject: Resolves: tdf#126790 use TopLevelWindowLocker in welded help path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4340d021b63609189d3179a7bcff7fac4fcef69d Reviewed-on: https://gerrit.libreoffice.org/77195 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- include/vcl/waitobj.hxx | 4 ++-- sfx2/source/appl/sfxhelp.cxx | 6 ++++++ vcl/source/window/dialog.cxx | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/include/vcl/waitobj.hxx b/include/vcl/waitobj.hxx index a136a73b455a..682153a1e892 100644 --- a/include/vcl/waitobj.hxx +++ b/include/vcl/waitobj.hxx @@ -26,7 +26,7 @@ #include #include -namespace weld { class Window; } +namespace weld { class Widget; } class VCL_DLLPUBLIC WaitObject { @@ -48,7 +48,7 @@ private: std::stack>> m_aBusyStack; public: // lock all toplevels, except the argument - void incBusy(const weld::Window* pIgnore); + void incBusy(const weld::Widget* pIgnore); // unlock previous lock void decBusy(); bool isBusy() const { return !m_aBusyStack.empty(); } diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 409edaf57e16..ee6fbb63e133 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -1281,8 +1281,11 @@ bool SfxHelp::Start_Impl(const OUString& rURL, weld::Widget* pWidget, const OUSt SvtHelpOptions aHelpOptions; bool bShowOfflineHelpPopUp = aHelpOptions.IsOfflineHelpPopUp(); + TopLevelWindowLocker aBusy; + if(bShowOfflineHelpPopUp) { + aBusy.incBusy(pWidget); std::unique_ptr xBuilder(Application::CreateBuilder(pWidget, "sfx/ui/helpmanual.ui")); std::unique_ptr xQueryBox(xBuilder->weld_message_dialog("onlinehelpmanual")); std::unique_ptr m_xHideOfflineHelpCB(xBuilder->weld_check_button("hidedialog")); @@ -1293,6 +1296,7 @@ bool SfxHelp::Start_Impl(const OUString& rURL, weld::Widget* pWidget, const OUSt short OnlineHelpBox = xQueryBox->run(); bShowOfflineHelpPopUp = OnlineHelpBox != RET_OK; aHelpOptions.SetOfflineHelpPopUp(!m_xHideOfflineHelpCB->get_state()); + aBusy.decBusy(); } if(!bShowOfflineHelpPopUp) { @@ -1300,8 +1304,10 @@ bool SfxHelp::Start_Impl(const OUString& rURL, weld::Widget* pWidget, const OUSt return true; else { + aBusy.incBusy(pWidget); NoHelpErrorBox aErrBox(pWidget); aErrBox.run(); + aBusy.decBusy(); return false; } } diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx index 76cbe8983af7..cc90dc3d625a 100644 --- a/vcl/source/window/dialog.cxx +++ b/vcl/source/window/dialog.cxx @@ -1598,7 +1598,7 @@ void Dialog::Activate() SystemWindow::Activate(); } -void TopLevelWindowLocker::incBusy(const weld::Window* pIgnore) +void TopLevelWindowLocker::incBusy(const weld::Widget* pIgnore) { // lock any toplevel windows from being closed until busy is over std::vector> aTopLevels; -- cgit