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
b179235f
Kaydet (Commit)
b179235f
authored
May 07, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
center slide after changing zoom
Change-Id: I08698b06d0485d2cd3573af665e0621b42d37349
üst
34ae7b16
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
ViewShell.hxx
sd/source/ui/inc/ViewShell.hxx
+1
-0
viewshe2.cxx
sd/source/ui/view/viewshe2.cxx
+27
-0
viewshel.cxx
sd/source/ui/view/viewshel.cxx
+1
-0
No files found.
sd/source/ui/inc/ViewShell.hxx
Dosyayı görüntüle @
b179235f
...
@@ -206,6 +206,7 @@ public:
...
@@ -206,6 +206,7 @@ public:
virtual
void
UpdateScrollBars
(
void
);
virtual
void
UpdateScrollBars
(
void
);
void
Scroll
(
long
nX
,
long
nY
);
void
Scroll
(
long
nX
,
long
nY
);
void
ScrollLines
(
long
nX
,
long
nY
);
void
ScrollLines
(
long
nX
,
long
nY
);
void
ScrollCenter
();
virtual
void
SetZoom
(
long
nZoom
);
virtual
void
SetZoom
(
long
nZoom
);
virtual
void
SetZoomRect
(
const
Rectangle
&
rZoomRect
);
virtual
void
SetZoomRect
(
const
Rectangle
&
rZoomRect
);
void
InitWindows
(
const
Point
&
rViewOrigin
,
const
Size
&
rViewSize
,
void
InitWindows
(
const
Point
&
rViewOrigin
,
const
Size
&
rViewSize
,
...
...
sd/source/ui/view/viewshe2.cxx
Dosyayı görüntüle @
b179235f
...
@@ -365,6 +365,33 @@ void ViewShell::SetZoom(long nZoom)
...
@@ -365,6 +365,33 @@ void ViewShell::SetZoom(long nZoom)
UpdateScrollBars
();
UpdateScrollBars
();
}
}
namespace
{
void
CenterScrollBar
(
ScrollBar
*
pBar
)
{
long
nVisSize
=
pBar
->
GetVisibleSize
();
long
nMin
=
pBar
->
GetRangeMin
();
long
nMax
=
pBar
->
GetRangeMax
();
long
nLen
=
nMax
-
nMin
-
nVisSize
;
long
nPos
=
nMin
+
nLen
/
2
;
pBar
->
DoScroll
(
nPos
);
}
}
void
ViewShell
::
ScrollCenter
()
{
if
(
mpHorizontalScrollBar
.
get
()
!=
NULL
)
CenterScrollBar
(
mpHorizontalScrollBar
.
get
());
//zoom mode with no panning of the current slide, i.e. the
//scrollbar is in change slide mode not pan slide mode
if
(
IsPageFlipMode
())
return
;
if
(
mpVerticalScrollBar
.
get
()
!=
NULL
)
CenterScrollBar
(
mpVerticalScrollBar
.
get
());
}
/**
/**
* Set zoom rectangle for active window. Sets all split windows to the same zoom
* Set zoom rectangle for active window. Sets all split windows to the same zoom
* factor.
* factor.
...
...
sd/source/ui/view/viewshel.cxx
Dosyayı görüntüle @
b179235f
...
@@ -683,6 +683,7 @@ bool ViewShell::HandleScrollCommand(const CommandEvent& rCEvt, ::sd::Window* pWi
...
@@ -683,6 +683,7 @@ bool ViewShell::HandleScrollCommand(const CommandEvent& rCEvt, ::sd::Window* pWi
nNewZoom
=
std
::
min
(
(
long
)
pWin
->
GetMaxZoom
(),
basegfx
::
zoomtools
::
zoomIn
(
nOldZoom
));
nNewZoom
=
std
::
min
(
(
long
)
pWin
->
GetMaxZoom
(),
basegfx
::
zoomtools
::
zoomIn
(
nOldZoom
));
SetZoom
(
nNewZoom
);
SetZoom
(
nNewZoom
);
ScrollCenter
();
//center slide after changing zoom
Invalidate
(
SID_ATTR_ZOOM
);
Invalidate
(
SID_ATTR_ZOOM
);
Invalidate
(
SID_ATTR_ZOOMSLIDER
);
Invalidate
(
SID_ATTR_ZOOMSLIDER
);
...
...
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