summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwsh4.cxx
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2016-09-16 12:36:06 +0200
committerMarco Cecchetti <mrcekets@gmail.com>2016-10-03 12:05:59 +0000
commitf5ed92549b9f113cbe252820a01a098b2b9d65ab (patch)
tree56ac9776c3d506ab77c0137e9e8f1d39de93f94e /sc/source/ui/view/tabvwsh4.cxx
parent348dcf1edb1a45027b52ba1e6f15bbf4d484a2c5 (diff)
LOK - when a view is enabled, the existing edit views are killed
A view is notified about killing its own edit view, if any, in 4 cases: - before being deactivated - soon after being activated - when a 'cursor position changed' event occurs in any view - when a 'selection changed' event occurs in any view Now these notifications are skipped when LOK is active. Change-Id: I94020987a35b1450ec41e2fa5fcce8cfa7e92130 Reviewed-on: https://gerrit.libreoffice.org/28948 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'sc/source/ui/view/tabvwsh4.cxx')
-rw-r--r--sc/source/ui/view/tabvwsh4.cxx22
1 files changed, 19 insertions, 3 deletions
diff --git a/sc/source/ui/view/tabvwsh4.cxx b/sc/source/ui/view/tabvwsh4.cxx
index c4ff1faf96e9..c82210680f0a 100644
--- a/sc/source/ui/view/tabvwsh4.cxx
+++ b/sc/source/ui/view/tabvwsh4.cxx
@@ -99,11 +99,20 @@
#include <com/sun/star/chart2/XChartType.hpp>
#include <sfx2/lokhelper.hxx>
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
+#include <comphelper/lok.hxx>
extern SfxViewShell* pScActiveViewShell; // global.cxx
using namespace com::sun::star;
+struct BoolLock
+{
+ bool& mflag;
+ explicit BoolLock( bool& flag ) : mflag(flag)
+ { mflag = true; }
+ ~BoolLock() { mflag = false; }
+};
+
void ScTabViewShell::Activate(bool bMDI)
{
SfxViewShell::Activate(bMDI);
@@ -114,7 +123,7 @@ void ScTabViewShell::Activate(bool bMDI)
{
// for input row (ClearCache)
ScModule* pScMod = SC_MOD();
- pScMod->ViewShellChanged();
+ pScMod->ViewShellChanged(/*bStopEditing=*/ !comphelper::LibreOfficeKit::isActive());
ActivateView( true, bFirstActivate );
@@ -154,7 +163,7 @@ void ScTabViewShell::Activate(bool bMDI)
}
}
- UpdateInputHandler( true );
+ UpdateInputHandler( /*bForce=*/ true, /*bStopEditing=*/ !comphelper::LibreOfficeKit::isActive() );
if ( bFirstActivate )
{
@@ -237,7 +246,7 @@ void ScTabViewShell::Deactivate(bool bMDI)
bIsActive = false;
ScInputHandler* pHdl = SC_MOD()->GetInputHdl(this);
- if( bMDI )
+ if( bMDI && !comphelper::LibreOfficeKit::isActive())
{
// during shell deactivation, shells must not be switched, or the loop
// through the shell stack (in SfxDispatcher::DoDeactivate_Impl) will not work
@@ -275,12 +284,15 @@ void ScTabViewShell::SetActive()
bool ScTabViewShell::PrepareClose(bool bUI)
{
+ BoolLock aBoolLock(bInPrepareClose);
// Call EnterHandler even in formula mode here,
// so a formula change in an embedded object isn't lost
// (ScDocShell::PrepareClose isn't called then).
ScInputHandler* pHdl = SC_MOD()->GetInputHdl( this );
if ( pHdl && pHdl->IsInputMode() )
+ {
pHdl->EnterHandler();
+ }
// draw text edit mode must be closed
FuPoor* pPoor = GetDrawFuncPtr();
@@ -1669,6 +1681,8 @@ ScTabViewShell::ScTabViewShell( SfxViewFrame* pViewFrame,
bInFormatDialog(false),
bReadOnly(false),
bForceFocusOnCurCell(false),
+ bInPrepareClose(false),
+ bInDispose(false),
nCurRefDlgId(0),
pAccessibilityBroadcaster(nullptr),
mbInSwitch(false)
@@ -1737,6 +1751,8 @@ ScTabViewShell::ScTabViewShell( SfxViewFrame* pViewFrame,
ScTabViewShell::~ScTabViewShell()
{
+ bInDispose = true;
+
// Notify other LOK views that we are going away.
SfxLokHelper::notifyOtherViews(this, LOK_CALLBACK_VIEW_CURSOR_VISIBLE, "visible", "false");
SfxLokHelper::notifyOtherViews(this, LOK_CALLBACK_TEXT_VIEW_SELECTION, "selection", "");