Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
e36c8a67
Kaydet (Commit)
e36c8a67
authored
Ock 10, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#68961: Check visible range during scrolling, and re-paint if necessary.
Change-Id: I47383cc0c4cf0ec48ce621ba5acac33db44ba313
üst
deb39c01
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
9 deletions
+24
-9
tabview.hxx
sc/source/ui/inc/tabview.hxx
+6
-0
tabview.cxx
sc/source/ui/view/tabview.cxx
+4
-0
tabview3.cxx
sc/source/ui/view/tabview3.cxx
+13
-0
tabview4.cxx
sc/source/ui/view/tabview4.cxx
+1
-9
No files found.
sc/source/ui/inc/tabview.hxx
Dosyayı görüntüle @
e36c8a67
...
...
@@ -208,6 +208,12 @@ private:
void
PaintRangeFinderEntry
(
ScRangeFindData
*
pData
,
SCTAB
nTab
);
/**
* Check the visible grid area to see if the visible range has changed. If
* so, update the stored visible range, and re-paint the grid area.
*/
void
UpdateGrid
();
protected
:
void
UpdateHeaderWidth
(
const
ScVSplitPos
*
pWhich
=
NULL
,
const
SCROW
*
pPosY
=
NULL
);
...
...
sc/source/ui/view/tabview.cxx
Dosyayı görüntüle @
e36c8a67
...
...
@@ -1236,6 +1236,8 @@ void ScTabView::ScrollX( long nDeltaX, ScHSplitPos eWhich, bool bUpdBars )
if
(
pColOutline
[
eWhich
])
pColOutline
[
eWhich
]
->
ScrollPixel
(
nDiff
);
if
(
bUpdBars
)
UpdateScrollBars
();
else
UpdateGrid
();
}
if
(
nDeltaX
==
1
||
nDeltaX
==-
1
)
...
...
@@ -1321,6 +1323,8 @@ void ScTabView::ScrollY( long nDeltaY, ScVSplitPos eWhich, bool bUpdBars )
if
(
pRowOutline
[
eWhich
])
pRowOutline
[
eWhich
]
->
ScrollPixel
(
nDiff
);
if
(
bUpdBars
)
UpdateScrollBars
();
else
UpdateGrid
();
}
if
(
nDeltaY
==
1
||
nDeltaY
==-
1
)
...
...
sc/source/ui/view/tabview3.cxx
Dosyayı görüntüle @
e36c8a67
...
...
@@ -2109,6 +2109,19 @@ void ScTabView::PaintRangeFinderEntry (ScRangeFindData* pData, const SCTAB nTab)
}
}
void
ScTabView
::
UpdateGrid
()
{
if
(
!
aViewData
.
IsActive
())
return
;
if
(
!
UpdateVisibleRange
())
// Visible range hasn't changed. No need to re-paint.
return
;
SC_MOD
()
->
AnythingChanged
();
// if visible area has changed
PaintGrid
();
}
void
ScTabView
::
PaintRangeFinder
(
long
nNumber
)
{
ScInputHandler
*
pHdl
=
SC_MOD
()
->
GetInputHdl
(
aViewData
.
GetViewShell
()
);
...
...
sc/source/ui/view/tabview4.cxx
Dosyayı görüntüle @
e36c8a67
...
...
@@ -424,15 +424,7 @@ void ScTabView::UpdateScrollBars()
}
// set visible area for online spelling
if
(
aViewData
.
IsActive
()
)
{
if
(
UpdateVisibleRange
())
{
SC_MOD
()
->
AnythingChanged
();
// if visible area has changed
PaintGrid
();
}
}
UpdateGrid
();
}
#ifndef HDR_SLIDERSIZE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment