diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2016-10-11 22:50:53 +0200 |
---|---|---|
committer | Marco Cecchetti <mrcekets@gmail.com> | 2016-10-14 15:07:56 +0000 |
commit | d4ddc8cb005887e4b2810006425cccf12937347f (patch) | |
tree | a2def9f4d5e4d89eef1b4e099557be6245c2763c /sc | |
parent | cec94a4ecaad666f7222598fd1e2ad9ac05fb878 (diff) |
LOK: Calc: fixed missed tile invalidations on cell text editing
What's new:
1) when an edit view is killed, the area which was used by the edit
view is invalidated for both own window and other view windows after
the edit view has been destroyed;
2) when an edit view is created or its out area is expanded, the
windows of other views are invalidated too;
3) when a vertical scroll occurs in the edit view area the windows of
other view are invalidated too;
4) same methods renaming since now we add/remove windows not edit
views.
Change-Id: Iac54f5b182c9562f08bb724f9ddde1c26cffa2e7
Reviewed-on: https://gerrit.libreoffice.org/29783
Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Tested-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/tabview.hxx | 4 | ||||
-rw-r--r-- | sc/source/ui/view/tabview3.cxx | 34 | ||||
-rw-r--r-- | sc/source/ui/view/tabview5.cxx | 6 | ||||
-rw-r--r-- | sc/source/ui/view/viewdata.cxx | 54 |
4 files changed, 64 insertions, 34 deletions
diff --git a/sc/source/ui/inc/tabview.hxx b/sc/source/ui/inc/tabview.hxx index c04d027f5a1c..cadeb94e9cc1 100644 --- a/sc/source/ui/inc/tabview.hxx +++ b/sc/source/ui/inc/tabview.hxx @@ -491,8 +491,8 @@ public: void InvalidateAttribs(); void OnLibreOfficeKitTabChanged(); - void AddEditViewToOtherView(SfxViewShell* pViewShell, ScSplitPos eWhich); - void RemoveEditViewFromOtherView(SfxViewShell* pViewShell, ScSplitPos eWhich); + void AddWindowToForeignEditView(SfxViewShell* pViewShell, ScSplitPos eWhich); + void RemoveWindowFromForeignEditView(SfxViewShell* pViewShell, ScSplitPos eWhich); void MakeEditView( ScEditEngineDefaulter* pEngine, SCCOL nCol, SCROW nRow ); void KillEditView( bool bNoPaint ); void UpdateEditView(); diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx index 06ef0b9dff9f..6c387bfa70cf 100644 --- a/sc/source/ui/view/tabview3.cxx +++ b/sc/source/ui/view/tabview3.cxx @@ -1941,12 +1941,12 @@ void ScTabView::SetTabNo( SCTAB nTab, bool bNew, bool bExtendSelection, bool bSa } } -void ScTabView::AddEditViewToOtherView(SfxViewShell* pViewShell, ScSplitPos eWhich) +void ScTabView::AddWindowToForeignEditView(SfxViewShell* pViewShell, ScSplitPos eWhich) { aExtraEditViewManager.Add(pViewShell, eWhich); } -void ScTabView::RemoveEditViewFromOtherView(SfxViewShell* pViewShell, ScSplitPos eWhich) +void ScTabView::RemoveWindowFromForeignEditView(SfxViewShell* pViewShell, ScSplitPos eWhich) { aExtraEditViewManager.Remove(pViewShell, eWhich); } @@ -1968,7 +1968,7 @@ void ScTabView::OnLibreOfficeKitTabChanged() { if (rOtherViewData.HasEditView( (ScSplitPos)(i))) { - pThisViewShell->AddEditViewToOtherView(pOtherViewShell, (ScSplitPos)(i)); + pThisViewShell->AddWindowToForeignEditView(pOtherViewShell, (ScSplitPos)(i)); } } } @@ -1978,7 +1978,7 @@ void ScTabView::OnLibreOfficeKitTabChanged() { if (rOtherViewData.HasEditView( (ScSplitPos)(i))) { - pThisViewShell->RemoveEditViewFromOtherView(pOtherViewShell, (ScSplitPos)(i)); + pThisViewShell->RemoveWindowFromForeignEditView(pOtherViewShell, (ScSplitPos)(i)); } } } @@ -2070,6 +2070,7 @@ void ScTabView::KillEditView( bool bNoPaint ) SCROW nRow2 = aViewData.GetEditEndRow(); bool bPaint[4]; bool bNotifyAcc = false; + Rectangle aRectangle[4]; bool bExtended = nRow1 != nRow2; // column is painted to the end anyway @@ -2080,7 +2081,12 @@ void ScTabView::KillEditView( bool bNoPaint ) { bPaint[i] = aViewData.HasEditView( (ScSplitPos) i ); if (bPaint[i]) + { bNotifyAcc = true; + + EditView* pView = aViewData.GetEditView( (ScSplitPos) i ); + aRectangle[i] = pView->GetInvalidateRect(); + } } // #108931#; notify accessibility before all things happen @@ -2096,8 +2102,26 @@ void ScTabView::KillEditView( bool bNoPaint ) pGridWin[i]->SetMapMode(pGridWin[i]->GetDrawMapMode()); + if (comphelper::LibreOfficeKit::isActive()) + { + const Rectangle& rInvRect = aRectangle[i]; + pGridWin[i]->Invalidate(rInvRect); + + // invalidate other views + auto lInvalidateWindows = + [&rInvRect] (ScTabView* pTabView) + { + for (ScGridWindow* pWin: pTabView->pGridWin) + { + if (pWin) + pWin->Invalidate(rInvRect); + } + }; + + SfxLokHelper::forEachOtherView(GetViewData().GetViewShell(), lInvalidateWindows); + } // #i73567# the cell still has to be repainted - if (bExtended || ( bAtCursor && !bNoPaint )) + else if (bExtended || ( bAtCursor && !bNoPaint )) { pGridWin[i]->Draw( nCol1, nRow1, nCol2, nRow2, SC_UPDATE_ALL ); pGridWin[i]->UpdateSelectionOverlay(); diff --git a/sc/source/ui/view/tabview5.cxx b/sc/source/ui/view/tabview5.cxx index 10a39b3a2555..fdb0823baa8e 100644 --- a/sc/source/ui/view/tabview5.cxx +++ b/sc/source/ui/view/tabview5.cxx @@ -163,18 +163,18 @@ ScTabView::~ScTabView() { ScTabViewShell* pThisViewShell = GetViewData().GetViewShell(); - auto lRemoveEditView = + auto lRemoveWindows = [pThisViewShell] (ScTabViewShell* pOtherViewShell) { ScViewData& rOtherViewData = pOtherViewShell->GetViewData(); for (int k = 0; k < 4; ++k) { if (rOtherViewData.HasEditView((ScSplitPos)(k))) - pThisViewShell->RemoveEditViewFromOtherView(pOtherViewShell, (ScSplitPos)(k)); + pThisViewShell->RemoveWindowFromForeignEditView(pOtherViewShell, (ScSplitPos)(k)); } }; - SfxLokHelper::forEachOtherView(pThisViewShell, lRemoveEditView); + SfxLokHelper::forEachOtherView(pThisViewShell, lRemoveWindows); } aViewData.KillEditView(); // solange GridWin's noch existieren diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx index d14d72183f07..a569559536fd 100644 --- a/sc/source/ui/view/viewdata.cxx +++ b/sc/source/ui/view/viewdata.cxx @@ -76,15 +76,15 @@ using namespace com::sun::star; namespace { -void lcl_LOKRemoveEditView(ScTabViewShell* pTabViewShell, ScSplitPos eWhich) +void lcl_LOKRemoveWindow(ScTabViewShell* pTabViewShell, ScSplitPos eWhich) { if (comphelper::LibreOfficeKit::isActive()) { - auto lRemoveEditView = + auto lRemoveWindows = [pTabViewShell, eWhich] (ScTabViewShell* pOtherViewShell) - { pOtherViewShell->RemoveEditViewFromOtherView(pTabViewShell, eWhich); }; + { pOtherViewShell->RemoveWindowFromForeignEditView(pTabViewShell, eWhich); }; - SfxLokHelper::forEachOtherView(pTabViewShell, lRemoveEditView); + SfxLokHelper::forEachOtherView(pTabViewShell, lRemoveWindows); } } @@ -987,13 +987,13 @@ void ScViewData::SetEditEngine( ScSplitPos eWhich, } else { - lcl_LOKRemoveEditView(GetViewShell(), eWhich); + lcl_LOKRemoveWindow(GetViewShell(), eWhich); pEditView[eWhich]->SetEditEngine(pNewEngine); } if (pEditView[eWhich]->GetWindow() != pWin) { - lcl_LOKRemoveEditView(GetViewShell(), eWhich); + lcl_LOKRemoveWindow(GetViewShell(), eWhich); pEditView[eWhich]->SetWindow(pWin); OSL_FAIL("EditView Window has changed"); } @@ -1008,6 +1008,23 @@ void ScViewData::SetEditEngine( ScSplitPos eWhich, } } + // add windows from other views + if (comphelper::LibreOfficeKit::isActive()) + { + ScTabViewShell* pThisViewShell = GetViewShell(); + SCTAB nThisTabNo = GetTabNo(); + auto lAddWindows = + [pThisViewShell, nThisTabNo, eWhich] (ScTabViewShell* pOtherViewShell) + { + ScViewData& rOtherViewData = pOtherViewShell->GetViewData(); + SCTAB nOtherTabNo = rOtherViewData.GetTabNo(); + if (nThisTabNo == nOtherTabNo) + pOtherViewShell->AddWindowToForeignEditView(pThisViewShell, eWhich); + }; + + SfxLokHelper::forEachOtherView(pThisViewShell, lAddWindows); + } + // bei IdleFormat wird manchmal ein Cursor gemalt, wenn die View schon weg ist (23576) EEControlBits nEC = pNewEngine->GetControlWord(); @@ -1163,23 +1180,6 @@ void ScViewData::SetEditEngine( ScSplitPos eWhich, pEditView[eWhich]->Invalidate(); // needed? // needed, wenn position changed - - if (comphelper::LibreOfficeKit::isActive()) - { - ScTabViewShell* pThisViewShell = GetViewShell(); - SCTAB nThisTabNo = GetTabNo(); - auto lAddEditView = - [pThisViewShell, nThisTabNo, eWhich] (ScTabViewShell* pOtherViewShell) - { - ScViewData& rOtherViewData = pOtherViewShell->GetViewData(); - SCTAB nOtherTabNo = rOtherViewData.GetTabNo(); - if (nThisTabNo == nOtherTabNo) - pOtherViewShell->AddEditViewToOtherView(pThisViewShell, eWhich); - }; - - SfxLokHelper::forEachOtherView(pThisViewShell, lAddEditView); - } - } IMPL_LINK( ScViewData, EditEngineHdl, EditStatus&, rStatus, void ) @@ -1379,6 +1379,9 @@ void ScViewData::EditGrowX() else if ( !bAsianVertical && !bGrowToLeft && !bGrowCentered ) aArea.Left() = nOldRight; pWin->Invalidate(aArea); + + // invalidate other views + pCurView->InvalidateOtherViewWindows(aArea); } } @@ -1459,6 +1462,9 @@ void ScViewData::EditGrowY( bool bInitial ) aArea.Top() = nOldBottom; pWin->Invalidate(aArea); + + // invalidate other views + pCurView->InvalidateOtherViewWindows(aArea); } } @@ -1470,7 +1476,7 @@ void ScViewData::ResetEditView() { if (bEditActive[i]) { - lcl_LOKRemoveEditView(GetViewShell(), (ScSplitPos)(i)); + lcl_LOKRemoveWindow(GetViewShell(), (ScSplitPos)(i)); pEngine = pEditView[i]->GetEditEngine(); pEngine->RemoveView(pEditView[i]); pEditView[i]->SetOutputArea( Rectangle() ); |