1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: viewport.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sw.hxx"
35 #include "hintids.hxx"
36 #include <vcl/help.hxx>
37 #include <svx/ruler.hxx>
38 #include <svx/paperinf.hxx>
39 #include <svx/lrspitem.hxx>
40 #include <sfx2/bindings.hxx>
45 #include <swmodule.hxx>
46 #include <viewopt.hxx>
59 #include <usrpref.hxx>
60 #include <pagedesc.hxx>
61 #include <workctrl.hxx>
62 #include <crsskip.hxx>
64 #include <PostItMgr.hxx>
66 #include <IDocumentSettingAccess.hxx>
68 //Das SetVisArea der DocShell darf nicht vom InnerResizePixel gerufen werden.
69 //Unsere Einstellungen muessen aber stattfinden.
70 #ifndef WB_RIGHT_ALIGNED
71 #define WB_RIGHT_ALIGNED ((WinBits)0x00008000)
74 static BOOL bProtectDocShellVisArea
= FALSE
;
76 static USHORT nPgNum
= 0;
78 BOOL
SwView::IsDocumentBorder()
80 return GetDocShell()->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED
||
81 pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
) ||
82 SVX_ZOOM_PAGEWIDTH_NOBORDER
== (SvxZoomType
)pWrtShell
->GetViewOptions()->GetZoomType();
85 inline long GetLeftMargin( SwView
&rView
)
87 SvxZoomType eType
= (SvxZoomType
)rView
.GetWrtShell().GetViewOptions()->GetZoomType();
88 long lRet
= rView
.GetWrtShell().GetAnyCurRect(RECT_PAGE_PRT
).Left();
89 return eType
== SVX_ZOOM_PERCENT
? lRet
+ DOCUMENTBORDER
:
90 eType
== SVX_ZOOM_PAGEWIDTH
|| eType
== SVX_ZOOM_PAGEWIDTH_NOBORDER
? 0 :
91 lRet
+ DOCUMENTBORDER
+ nLeftOfst
;
94 //-------------------------------------------------------------------------
96 void lcl_GetPos(SwView
* pView
,
98 SwScrollbar
* pScrollbar
,
101 SwWrtShell
&rSh
= pView
->GetWrtShell();
102 const Size
aDocSz( rSh
.GetDocSize() );
104 const long lBorder
= bBorder
? DOCUMENTBORDER
: DOCUMENTBORDER
* 2;
105 BOOL bHori
= pScrollbar
->IsHoriScroll();
107 const long lPos
= pScrollbar
->GetThumbPos() + (bBorder
? DOCUMENTBORDER
: 0);
108 long Point:: *pPt
= bHori
? &Point::nA
: &Point::nB
;
109 long Size:: *pSz
= bHori
? &Size::nA
: &Size::nB
;
111 long lDelta
= lPos
- rSh
.VisArea().Pos().*pPt
;
112 const long lSize
= aDocSz
.*pSz
+ lBorder
;
113 // Bug 11693: sollte rechts oder unten zuviel Wiese sein, dann muss
114 // diese von der VisArea herausgerechnet werden!
115 long nTmp
= pView
->GetVisArea().Right()+lDelta
;
116 if ( bHori
&& nTmp
> lSize
)
117 lDelta
-= nTmp
- lSize
;
118 nTmp
= pView
->GetVisArea().Bottom()+lDelta
;
119 if ( !bHori
&& nTmp
> lSize
)
120 lDelta
-= nTmp
- lSize
;
123 if ( bBorder
&& rPos
.*pPt
< DOCUMENTBORDER
)
124 rPos
.*pPt
= DOCUMENTBORDER
;
127 /*--------------------------------------------------------------------
128 Beschreibung: Nullpunkt Lineal setzen
129 --------------------------------------------------------------------*/
131 void SwView::InvalidateRulerPos()
133 static USHORT __READONLY_DATA aInval
[] =
135 SID_ATTR_PARA_LRSPACE
, SID_RULER_BORDERS
, SID_RULER_PAGE_POS
,
136 SID_RULER_LR_MIN_MAX
, SID_ATTR_LONG_ULSPACE
, SID_ATTR_LONG_LRSPACE
,
137 SID_RULER_BORDER_DISTANCE
,
138 SID_ATTR_PARA_LRSPACE_VERTICAL
, SID_RULER_BORDERS_VERTICAL
,
139 SID_RULER_TEXT_RIGHT_TO_LEFT
,
140 SID_RULER_ROWS
, SID_RULER_ROWS_VERTICAL
, FN_STAT_PAGE
,
144 GetViewFrame()->GetBindings().Invalidate(aInval
);
146 DBG_ASSERT(pHRuler
, "warum ist das Lineal nicht da?");
147 pHRuler
->ForceUpdate();
148 pVRuler
->ForceUpdate();
151 /*--------------------------------------------------------------------
152 Beschreibung: begrenzt das Scrollen soweit, dass jeweils nur einen
153 viertel Bildschirm bis vor das Ende des Dokumentes
154 gescrollt werden kann.
155 --------------------------------------------------------------------*/
157 long SwView::SetHScrollMax( long lMax
)
159 const long lBorder
= IsDocumentBorder() ? DOCUMENTBORDER
: DOCUMENTBORDER
* 2;
160 const long lSize
= GetDocSz().Width() + lBorder
- aVisArea
.GetWidth();
162 // bei negativen Werten ist das Dokument vollstaendig sichtbar;
163 // in diesem Fall kein Scrollen
164 return Max( Min( lMax
, lSize
), 0L );
168 long SwView::SetVScrollMax( long lMax
)
170 const long lBorder
= IsDocumentBorder() ? DOCUMENTBORDER
: DOCUMENTBORDER
* 2;
171 long lSize
= GetDocSz().Height() + lBorder
- aVisArea
.GetHeight();
172 return Max( Min( lMax
, lSize
), 0L ); // siehe horz.
176 Point
SwView::AlignToPixel(const Point
&rPt
) const
178 return GetEditWin().PixelToLogic( GetEditWin().LogicToPixel( rPt
) );
181 /*--------------------------------------------------------------------
182 Beschreibung: Dokumentgroesse hat sich geaendert
183 --------------------------------------------------------------------*/
185 void SwView::DocSzChgd(const Size
&rSz
)
188 extern int bDocSzUpdated
;
193 if( !pWrtShell
|| aVisArea
.IsEmpty() ) // keine Shell -> keine Aenderung
195 bDocSzUpdated
= FALSE
;
199 //Wenn Text geloescht worden ist, kann es sein, dass die VisArea hinter
200 //den sichtbaren Bereich verweist
201 Rectangle
aNewVisArea( aVisArea
);
202 BOOL bModified
= false;
203 SwTwips lGreenOffset
= IsDocumentBorder() ? DOCUMENTBORDER
: DOCUMENTBORDER
* 2;
204 SwTwips lTmp
= aDocSz
.Width() + lGreenOffset
;
206 if ( aNewVisArea
.Right() >= lTmp
)
208 lTmp
= aNewVisArea
.Right() - lTmp
;
209 aNewVisArea
.Right() -= lTmp
;
210 aNewVisArea
.Left() -= lTmp
;
214 lTmp
= aDocSz
.Height() + lGreenOffset
;
215 if ( aNewVisArea
.Bottom() >= lTmp
)
217 lTmp
= aNewVisArea
.Bottom() - lTmp
;
218 aNewVisArea
.Bottom() -= lTmp
;
219 aNewVisArea
.Top() -= lTmp
;
224 SetVisArea( aNewVisArea
, FALSE
);
226 if ( UpdateScrollbars() && !bInOuterResizePixel
&& !bInInnerResizePixel
&&
227 !GetViewFrame()->GetFrame()->IsInPlace())
228 OuterResizePixel( Point(),
229 GetViewFrame()->GetWindow().GetOutputSizePixel() );
232 /*--------------------------------------------------------------------
233 Beschreibung: Visarea neu setzen
234 --------------------------------------------------------------------*/
236 void SwView::SetVisArea( const Rectangle
&rRect
, BOOL bUpdateScrollbar
)
238 const Size
aOldSz( aVisArea
.GetSize() );
240 const Point
aTopLeft( AlignToPixel( rRect
.TopLeft() ));
241 const Point
aBottomRight( AlignToPixel( rRect
.BottomRight() ));
242 Rectangle
aLR( aTopLeft
, aBottomRight
);
244 if( aLR
== aVisArea
)
247 const SwTwips lMin
= IsDocumentBorder() ? DOCUMENTBORDER
: 0;
249 // keine negative Position, keine neg. Groesse
250 if( aLR
.Top() < lMin
)
252 aLR
.Bottom() += lMin
- aLR
.Top();
255 if( aLR
.Left() < lMin
)
257 aLR
.Right() += lMin
- aLR
.Left();
260 if( aLR
.Right() < 0 )
262 if( aLR
.Bottom() < 0 )
265 if( aLR
== aVisArea
)
268 const Size
aSize( aLR
.GetSize() );
269 if( aSize
.Width() < 0 || aSize
.Height() < 0 )
272 //Bevor die Daten veraendert werden ggf. ein Update rufen. Dadurch wird
273 //sichergestellt, da? anliegende Paints korrekt in Dokumentkoordinaten
274 //umgerechnet werden.
275 //Vorsichtshalber tun wir das nur wenn an der Shell eine Action laeuft,
276 //denn dann wir nicht wirklich gepaintet sondern die Rechtecke werden
277 //lediglich (in Dokumentkoordinaten) vorgemerkt.
278 if ( pWrtShell
&& pWrtShell
->ActionPend() )
279 pWrtShell
->GetWin()->Update();
283 const BOOL bOuterResize
= bUpdateScrollbar
&& UpdateScrollbars();
287 pWrtShell
->VisPortChgd( aVisArea
);
288 if ( aOldSz
!= pWrtShell
->VisArea().SSize() &&
289 ( Abs(aOldSz
.Width() - pWrtShell
->VisArea().Width()) > 2 ||
290 Abs(aOldSz
.Height() - pWrtShell
->VisArea().Height()) > 2 ) )
291 pWrtShell
->CheckBrowseView( FALSE
);
294 if ( !bProtectDocShellVisArea
)
296 //Wenn die Groesse der VisArea unveraendert ist, reichen wir die
297 //Groesse der VisArea vom InternalObject weiter. Damit soll der
298 //Transport von Fehlern vermieden werden.
299 Rectangle
aVis( aVisArea
);
300 if ( aVis
.GetSize() == aOldSz
)
301 aVis
.SetSize( GetDocShell()->SfxObjectShell::GetVisArea(ASPECT_CONTENT
).GetSize() );
302 // TODO/LATER: why casting?!
303 //GetDocShell()->SfxInPlaceObject::GetVisArea().GetSize() );
305 //Bei embedded immer mit Modify...
306 // TODO/LATER: why casting?!
307 GetDocShell()->SfxObjectShell::SetVisArea( aVis
);
309 if ( GetDocShell()->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED )
310 GetDocShell()->SfxInPlaceObject::SetVisArea( aVis );
312 GetDocShell()->SvEmbeddedObject::SetVisArea( aVis );*/
315 SfxViewShell::VisAreaChanged( aVisArea
);
317 InvalidateRulerPos();
319 SwEditWin::ClearTip();
321 if ( bOuterResize
&& !bInOuterResizePixel
&& !bInInnerResizePixel
)
322 OuterResizePixel( Point(),
323 GetViewFrame()->GetWindow().GetOutputSizePixel() );
326 /*--------------------------------------------------------------------
327 Beschreibung: Pos VisArea setzen
328 --------------------------------------------------------------------*/
330 void SwView::SetVisArea( const Point
&rPt
, BOOL bUpdateScrollbar
)
332 //einmal alignen, damit Brushes korrekt angesetzt werden.
333 //MA 31. May. 96: Das geht in der BrowseView schief, weil evlt.
334 //nicht das ganze Dokument sichtbar wird. Da der Inhalt in Frames
335 //passgenau ist, kann nicht aligned werden (bessere Idee?!?!)
336 //MA 29. Oct. 96 (fix: Bild.de, 200%) ganz ohne Alignment geht es nicht
337 //mal sehen wie weit wir mit der halben BrushSize kommen.
338 //TODO: why BRUSH_SIZE?
340 // const long nTmp = GetWrtShell().IsFrameView() ? BRUSH_SIZE/2 : BRUSH_SIZE;
341 const long nTmp
= GetWrtShell().IsFrameView() ? 4 : 8;
342 aPt
= GetEditWin().LogicToPixel( aPt
);
343 aPt
.X() -= aPt
.X() % nTmp
;
344 aPt
.Y() -= aPt
.Y() % nTmp
;
345 aPt
= GetEditWin().PixelToLogic( aPt
);
347 if ( aPt
== aVisArea
.TopLeft() )
350 const long lXDiff
= aVisArea
.Left() - aPt
.X();
351 const long lYDiff
= aVisArea
.Top() - aPt
.Y();
352 SetVisArea( Rectangle( aPt
,
353 Point( aVisArea
.Right() - lXDiff
, aVisArea
.Bottom() - lYDiff
) ),
358 void SwView::CheckVisArea()
360 pHScrollbar
->SetAuto( pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
) &&
361 !GetViewFrame()->GetFrame()->IsInPlace() );
362 if ( IsDocumentBorder() )
364 if ( aVisArea
.Left() != DOCUMENTBORDER
||
365 aVisArea
.Top() != DOCUMENTBORDER
)
367 Rectangle
aNewVisArea( aVisArea
);
368 aNewVisArea
.Move( DOCUMENTBORDER
- aVisArea
.Left(),
369 DOCUMENTBORDER
- aVisArea
.Top() );
370 SetVisArea( aNewVisArea
, TRUE
);
375 /*--------------------------------------------------------------------
376 Beschreibung: Sichtbaren Bereich berechnen
378 OUT Point *pPt: neue Position des sichtbaren
380 IN Rectangle &rRect: Rechteck, das sich innerhalb des neuen
381 sichtbaren Bereiches befinden soll
382 USHORT nRange optional exakte Angabe des Bereiches,
383 um den ggfs. gescrollt werden soll
384 --------------------------------------------------------------------*/
386 void SwView::CalcPt( Point
*pPt
, const Rectangle
&rRect
,
387 USHORT nRangeX
, USHORT nRangeY
)
390 const SwTwips lMin
= IsDocumentBorder() ? DOCUMENTBORDER
: 0;
392 long nYScroll
= GetYScroll();
393 long nDesHeight
= rRect
.GetHeight();
394 long nCurHeight
= aVisArea
.GetHeight();
395 nYScroll
= Min(nYScroll
, nCurHeight
- nDesHeight
); // wird es knapp, dann nicht zuviel scrollen
396 if(nDesHeight
> nCurHeight
) // die Hoehe reicht nicht aus, dann interessiert nYScroll nicht mehr
398 pPt
->Y() = rRect
.Top();
399 pPt
->Y() = Max( lMin
, pPt
->Y() );
401 else if ( rRect
.Top() < aVisArea
.Top() ) //Verschiebung nach oben
403 pPt
->Y() = rRect
.Top() - (nRangeY
!= USHRT_MAX
? nRangeY
: nYScroll
);
404 pPt
->Y() = Max( lMin
, pPt
->Y() );
406 else if( rRect
.Bottom() > aVisArea
.Bottom() ) //Verschiebung nach unten
408 pPt
->Y() = rRect
.Bottom() -
409 (aVisArea
.GetHeight()) + ( nRangeY
!= USHRT_MAX
?
410 nRangeY
: nYScroll
);
411 pPt
->Y() = SetVScrollMax( pPt
->Y() );
413 long nXScroll
= GetXScroll();
414 if ( rRect
.Right() > aVisArea
.Right() ) //Verschiebung nach rechts
416 pPt
->X() = rRect
.Right() -
417 (aVisArea
.GetWidth()) +
418 (nRangeX
!= USHRT_MAX
? nRangeX
: nXScroll
);
419 pPt
->X() = SetHScrollMax( pPt
->X() );
421 else if ( rRect
.Left() < aVisArea
.Left() ) //Verschiebung nach links
423 pPt
->X() = rRect
.Left() - (nRangeX
!= USHRT_MAX
? nRangeX
: nXScroll
);
424 pPt
->X() = Max( ::GetLeftMargin( *this ) + nLeftOfst
, pPt
->X() );
425 pPt
->X() = Min( rRect
.Left() - nScrollX
, pPt
->X() );
426 pPt
->X() = Max( 0L, pPt
->X() );
430 /*--------------------------------------------------------------------
431 Beschreibung: Scrolling
432 --------------------------------------------------------------------*/
434 BOOL
SwView::IsScroll( const Rectangle
&rRect
) const
436 return bCenterCrsr
|| bTopCrsr
|| !aVisArea
.IsInside(rRect
);
440 void SwView::Scroll( const Rectangle
&rRect
, USHORT nRangeX
, USHORT nRangeY
)
442 if ( aVisArea
.IsEmpty() )
445 Rectangle
aOldVisArea( aVisArea
);
448 Window
* pCareWn
= ViewShell::GetCareWin(GetWrtShell());
451 Rectangle
aDlgRect( GetEditWin().PixelToLogic(
452 pCareWn
->GetWindowExtentsRelative( &GetEditWin() ) ) );
453 // Nur, wenn der Dialog nicht rechts oder links der VisArea liegt:
454 if ( aDlgRect
.Left() < aVisArea
.Right() &&
455 aDlgRect
.Right() > aVisArea
.Left() )
457 // Falls wir nicht zentriert werden sollen, in der VisArea liegen
458 // und nicht vom Dialog ueberdeckt werden ...
459 if ( !bCenterCrsr
&& aOldVisArea
.IsInside( rRect
)
460 && ( rRect
.Left() > aDlgRect
.Right()
461 || rRect
.Right() < aDlgRect
.Left()
462 || rRect
.Top() > aDlgRect
.Bottom()
463 || rRect
.Bottom() < aDlgRect
.Top() ) )
466 // Ist oberhalb oder unterhalb der Dialogs mehr Platz?
467 long nTopDiff
= aDlgRect
.Top() - aVisArea
.Top();
468 long nBottomDiff
= aVisArea
.Bottom() - aDlgRect
.Bottom();
469 if ( nTopDiff
< nBottomDiff
)
471 if ( nBottomDiff
> 0 ) // Ist unterhalb ueberhaupt Platz?
472 { // dann verschieben wir die Oberkante und merken uns dies
473 nDiffY
= aDlgRect
.Bottom() - aVisArea
.Top();
474 aVisArea
.Top() += nDiffY
;
479 if ( nTopDiff
> 0 ) // Ist oberhalb ueberhaupt Platz?
480 aVisArea
.Bottom() = aDlgRect
.Top(); // Unterkante aendern
486 if( !(bCenterCrsr
|| bTopCrsr
) && aVisArea
.IsInside( rRect
) )
488 aVisArea
= aOldVisArea
;
491 //falls das Rechteck groesser als der sichtbare Bereich -->
493 Size
aSize( rRect
.GetSize() );
494 const Size
aVisSize( aVisArea
.GetSize() );
495 if( !aVisArea
.IsEmpty() && (
496 aSize
.Width() + GetXScroll() > aVisSize
.Width() ||
497 aSize
.Height()+ GetYScroll() > aVisSize
.Height() ))
499 Point
aPt( aVisArea
.TopLeft() );
500 aSize
.Width() = Min( aSize
.Width(), aVisSize
.Width() );
501 aSize
.Height()= Min( aSize
.Height(),aVisSize
.Height());
503 CalcPt( &aPt
, Rectangle( rRect
.TopLeft(), aSize
),
504 static_cast< USHORT
>((aVisSize
.Width() - aSize
.Width()) / 2),
505 static_cast< USHORT
>((aVisSize
.Height()- aSize
.Height())/ 2) );
509 const long nBorder
= IsDocumentBorder() ? DOCUMENTBORDER
: 0;
510 aPt
.Y() = Min( Max( nBorder
, rRect
.Top() ),
511 aDocSz
.Height() + nBorder
-
512 aVisArea
.GetHeight() );
515 aVisArea
= aOldVisArea
;
521 Point
aPt( aVisArea
.TopLeft() );
522 CalcPt( &aPt
, rRect
, nRangeX
, nRangeY
);
526 const long nBorder
= IsDocumentBorder() ? DOCUMENTBORDER
: 0;
527 aPt
.Y() = Min( Max( nBorder
, rRect
.Top() ),
528 aDocSz
.Height() + nBorder
-
529 aVisArea
.GetHeight() );
533 aVisArea
= aOldVisArea
;
539 Point
aPnt( aVisArea
.TopLeft() );
540 // ... in Y-Richtung auf jeden Fall
541 aPnt
.Y() += ( rRect
.Top() + rRect
.Bottom()
542 - aVisArea
.Top() - aVisArea
.Bottom() ) / 2 - nDiffY
;
543 // ... in X-Richtung nur, wenn das Rechteck rechts oder links aus der
544 // VisArea hinausragt.
545 if ( rRect
.Right() > aVisArea
.Right() || rRect
.Left() < aVisArea
.Left() )
547 aPnt
.X() += ( rRect
.Left() + rRect
.Right()
548 - aVisArea
.Left() - aVisArea
.Right() ) / 2;
549 aPnt
.X() = SetHScrollMax( aPnt
.X() );
550 const SwTwips lMin
= IsDocumentBorder() ? DOCUMENTBORDER
: 0;
551 aPnt
.X() = Max( (GetLeftMargin( *this ) - lMin
) + nLeftOfst
, aPnt
.X() );
553 aVisArea
= aOldVisArea
;
555 { // Wenn wir nur einem Dialog ausweichen wollen, wollen wir nicht ueber
556 // das Ende des Dokument hinausgehen.
557 aPnt
.Y() = SetVScrollMax( aPnt
.Y() );
562 /*--------------------------------------------------------------------
563 Beschreibung: Seitenweises Scrollen
564 Liefern den Wert, um den bei PageUp / -Down gescrollt werden soll
565 --------------------------------------------------------------------*/
567 BOOL
SwView::GetPageScrollUpOffset( SwTwips
&rOff
) const
569 if ( !aVisArea
.Top() || !aVisArea
.GetHeight() )
571 long nYScrl
= GetYScroll() / 2;
572 rOff
= -(aVisArea
.GetHeight() - nYScrl
);
573 //nicht vor den Dokumentanfang scrollen
574 if( aVisArea
.Top() - rOff
< 0 )
575 rOff
= rOff
- aVisArea
.Top();
576 else if( GetWrtShell().GetCharRect().Top() < (aVisArea
.Top() + nYScrl
))
582 BOOL
SwView::GetPageScrollDownOffset( SwTwips
&rOff
) const
584 if ( !aVisArea
.GetHeight() ||
585 (aVisArea
.GetHeight() > aDocSz
.Height()) )
587 long nYScrl
= GetYScroll() / 2;
588 rOff
= aVisArea
.GetHeight() - nYScrl
;
589 //nicht hinter das Dokumentende scrollen
590 if ( aVisArea
.Top() + rOff
> aDocSz
.Height() )
591 rOff
= aDocSz
.Height() - aVisArea
.Bottom();
592 else if( GetWrtShell().GetCharRect().Bottom() >
593 ( aVisArea
.Bottom() - nYScrl
))
598 // Seitenweises Blaettern
600 long SwView::PageUp()
602 if (!aVisArea
.GetHeight())
605 Point
aPos(aVisArea
.TopLeft());
606 aPos
.Y() -= aVisArea
.GetHeight() - (GetYScroll() / 2);
607 aPos
.Y() = Max(0L, aPos
.Y());
613 long SwView::PageDown()
615 if ( !aVisArea
.GetHeight() )
617 Point
aPos( aVisArea
.TopLeft() );
618 aPos
.Y() += aVisArea
.GetHeight() - (GetYScroll() / 2);
619 aPos
.Y() = SetVScrollMax( aPos
.Y() );
625 long SwView::PhyPageUp()
627 //aktuell sichtbare Seite erfragen, nicht formatieren
628 USHORT nActPage
= pWrtShell
->GetNextPrevPageNum( FALSE
);
630 if( USHRT_MAX
!= nActPage
)
632 const Point
aPt( aVisArea
.Left(),
633 pWrtShell
->GetPagePos( nActPage
).Y() );
634 Point
aAlPt( AlignToPixel( aPt
) );
635 // falls ein Unterschied besteht, wurde abgeschnitten --> dann
636 // einen Pixel addieren, damit kein Rest der Vorgaengerseite
638 if( aPt
.Y() != aAlPt
.Y() )
639 aAlPt
.Y() += 3 * GetEditWin().PixelToLogic( Size( 0, 1 ) ).Height();
646 long SwView::PhyPageDown()
648 //aktuell sichtbare Seite erfragen, nicht formatieren
649 USHORT nActPage
= pWrtShell
->GetNextPrevPageNum( TRUE
);
650 // falls die letzte Dokumentseite sichtbar ist, nichts tun
651 if( USHRT_MAX
!= nActPage
)
653 const Point
aPt( aVisArea
.Left(),
654 pWrtShell
->GetPagePos( nActPage
).Y() );
655 Point
aAlPt( AlignToPixel( aPt
) );
656 // falls ein Unterschied besteht, wurde abgeschnitten --> dann
657 // einen Pixel addieren, damit kein Rest der Vorgaengerseite sichtbar ist
658 if( aPt
.Y() != aAlPt
.Y() )
659 aAlPt
.Y() += 3 * GetEditWin().PixelToLogic( Size( 0, 1 ) ).Height();
666 long SwView::PageUpCrsr( BOOL bSelect
)
670 const USHORT eType
= pWrtShell
->GetFrmType(0,TRUE
);
671 if ( eType
& FRMTYPE_FOOTNOTE
)
673 pWrtShell
->MoveCrsr();
674 pWrtShell
->GotoFtnAnchor();
675 pWrtShell
->Right(CRSR_SKIP_CHARS
, FALSE
, 1, FALSE
);
681 if ( GetPageScrollUpOffset( lOff
) &&
682 (pWrtShell
->IsCrsrReadonly() ||
683 !pWrtShell
->PageCrsr( lOff
, bSelect
)) &&
686 pWrtShell
->ResetCursorStack();
693 long SwView::PageDownCrsr(BOOL bSelect
)
696 if ( GetPageScrollDownOffset( lOff
) &&
697 (pWrtShell
->IsCrsrReadonly() ||
698 !pWrtShell
->PageCrsr( lOff
, bSelect
)) &&
701 pWrtShell
->ResetCursorStack();
707 /*------------------------------------------------------------------------
708 Beschreibung: Handler der Scrollbars
709 ------------------------------------------------------------------------*/
711 IMPL_LINK( SwView
, ScrollHdl
, SwScrollbar
*, pScrollbar
)
713 if ( GetWrtShell().ActionPend() )
716 if ( pScrollbar
->GetType() == SCROLL_DRAG
)
717 pWrtShell
->EnableSmooth( FALSE
);
719 if(!pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
) &&
720 pScrollbar
->GetType() == SCROLL_DRAG
)
722 //Hier wieder auskommentieren wenn das mitscrollen nicht gewuenscht ist.
723 // JP 21.07.00: the end scrollhandler invalidate the FN_STAT_PAGE,
724 // so we dont must do it agin.
725 long nOldPge
= nPgNum
;
726 EndScrollHdl(pScrollbar
);
728 Point
aPos( aVisArea
.TopLeft() );
729 lcl_GetPos(this, aPos
, pScrollbar
, IsDocumentBorder());
735 if(pWrtShell
->GetPageNumber( aPos
.Y(), FALSE
, nPhNum
, nVirtNum
, sDisplay
))
737 // JP 21.07.00: the end scrollhandler invalidate the FN_STAT_PAGE,
738 // so we dont must do it agin.
739 // if(!GetViewFrame()->GetFrame()->IsInPlace())
740 // S F X_BINDINGS().Update(FN_STAT_PAGE);
743 if( pWrtShell
->GetPageCnt() > 1 && Help::IsQuickHelpEnabled() )
745 if( !nOldPge
|| nOldPge
!= nPhNum
)
748 aRect
.Left() = pScrollbar
->GetParent()->OutputToScreenPixel(
749 pScrollbar
->GetPosPixel() ).X() -8;
750 aRect
.Top() = pScrollbar
->OutputToScreenPixel(
751 pScrollbar
->GetPointerPosPixel() ).Y();
752 aRect
.Right() = aRect
.Left();
753 aRect
.Bottom() = aRect
.Top();
755 String
sPageStr( GetPageStr( nPhNum
, nVirtNum
, sDisplay
));
756 SwContentAtPos
aCnt( SwContentAtPos::SW_OUTLINE
);
757 pWrtShell
->GetContentAtPos( aPos
, aCnt
);
758 if( aCnt
.sStr
.Len() )
760 sPageStr
+= String::CreateFromAscii(
761 RTL_CONSTASCII_STRINGPARAM( " - " ));
762 sPageStr
.Insert( aCnt
.sStr
, 0, 80 );
763 sPageStr
.SearchAndReplaceAll( '\t', ' ' );
764 sPageStr
.SearchAndReplaceAll( 0x0a, ' ' );
767 Help::ShowQuickHelp( pScrollbar
, aRect
, sPageStr
,
768 QUICKHELP_RIGHT
|QUICKHELP_VCENTER
);
775 EndScrollHdl(pScrollbar
);
777 if ( pScrollbar
->GetType() == SCROLL_DRAG
)
778 pWrtShell
->EnableSmooth( TRUE
);
782 /*------------------------------------------------------------------------
783 Beschreibung: Handler der Scrollbars
784 ------------------------------------------------------------------------*/
786 IMPL_LINK( SwView
, EndScrollHdl
, SwScrollbar
*, pScrollbar
)
788 if ( !GetWrtShell().ActionPend() )
793 Help::ShowQuickHelp(pScrollbar
, Rectangle(), aEmptyStr
, 0);
795 Point
aPos( aVisArea
.TopLeft() );
796 BOOL bBorder
= IsDocumentBorder();
797 lcl_GetPos(this, aPos
, pScrollbar
, bBorder
);
798 if ( bBorder
&& aPos
== aVisArea
.TopLeft() )
801 SetVisArea( aPos
, FALSE
);
803 GetViewFrame()->GetBindings().Update(FN_STAT_PAGE
);
808 /*--------------------------------------------------------------------
811 berechnet die Groesse von aVisArea abhaengig von der Groesse
812 des EditWin auf dem Schirm.
814 --------------------------------------------------------------------*/
816 void SwView::CalcVisArea( const Size
&rOutPixel
)
819 Rectangle
aRect( aTopLeft
, rOutPixel
);
820 aTopLeft
= GetEditWin().PixelToLogic( aTopLeft
);
821 Point
aBottomRight( GetEditWin().PixelToLogic( aRect
.BottomRight() ) );
823 aRect
.Left() = aTopLeft
.X();
824 aRect
.Top() = aTopLeft
.Y();
825 aRect
.Right() = aBottomRight
.X();
826 aRect
.Bottom() = aBottomRight
.Y();
828 //Die Verschiebungen nach rechts und/oder unten koennen jetzt falsch
829 //sein (z.B. Zoom aendern, Viewgroesse aendern.
830 const long lBorder
= IsDocumentBorder() ? DOCUMENTBORDER
: DOCUMENTBORDER
*2;
833 const long lWidth
= GetWrtShell().GetDocSize().Width() + lBorder
;
834 if ( aRect
.Right() > lWidth
)
836 long lDelta
= aRect
.Right() - lWidth
;
837 aRect
.Left() -= lDelta
;
838 aRect
.Right() -= lDelta
;
843 const long lHeight
= GetWrtShell().GetDocSize().Height() + lBorder
;
844 if ( aRect
.Bottom() > lHeight
)
846 long lDelta
= aRect
.Bottom() - lHeight
;
847 aRect
.Top() -= lDelta
;
848 aRect
.Bottom() -= lDelta
;
852 GetViewFrame()->GetBindings().Invalidate( SID_ATTR_ZOOM
);
853 GetViewFrame()->GetBindings().Invalidate( SID_ATTR_ZOOMSLIDER
); // for snapping points
856 /*--------------------------------------------------------------------
857 Beschreibung: Bedienelemente neu anordnen
858 --------------------------------------------------------------------*/
861 void SwView::CalcAndSetBorderPixel( SvBorder
&rToFill
, BOOL
/*bInner*/ )
863 BOOL bRightVRuler
= pWrtShell
->GetViewOptions()->IsVRulerRight();
864 if ( pVRuler
->IsVisible() )
866 long nWidth
= pVRuler
->GetSizePixel().Width();
868 rToFill
.Right() = nWidth
;
870 rToFill
.Left() = nWidth
;
873 DBG_ASSERT(pHRuler
, "warum ist das Lineal nicht da?");
874 if ( pHRuler
->IsVisible() )
875 rToFill
.Top() = pHRuler
->GetSizePixel().Height();
877 const StyleSettings
&rSet
= GetEditWin().GetSettings().GetStyleSettings();
878 const long nTmp
= rSet
.GetScrollBarSize();
879 if( pVScrollbar
->IsVisible(FALSE
) )
882 rToFill
.Left() = nTmp
;
884 rToFill
.Right() = nTmp
;
886 //#i32913# in browse mode the visibility of the horizontal scrollbar
887 // depends on the content (fixed width tables may require a scrollbar)
888 if ( pHScrollbar
->IsVisible(pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
)) )
889 rToFill
.Bottom() = nTmp
;
891 SetBorderPixel( rToFill
);
895 void ViewResizePixel( const Window
&rRef
,
899 const BOOL
/*bInner*/,
900 SwScrollbar
& rVScrollbar
,
901 SwScrollbar
& rHScrollbar
,
902 ImageButton
* pPageUpBtn
,
903 ImageButton
* pPageDownBtn
,
904 ImageButton
* pNaviBtn
,
905 Window
& rScrollBarBox
,
911 // ViewResizePixel wird auch von der PreView benutzt!!!
913 const BOOL bHLineal
= pHLineal
&& pHLineal
->IsVisible();
914 const long nHLinSzHeight
= bHLineal
?
915 pHLineal
->GetSizePixel().Height() : 0;
916 const BOOL bVLineal
= pVLineal
&& pVLineal
->IsVisible();
917 const long nVLinSzWidth
= bVLineal
?
918 pVLineal
->GetSizePixel().Width() : 0;
919 long nHBSzHeight2
= rHScrollbar
.IsVisible( FALSE
) || !rHScrollbar
.IsAuto() ?
920 rRef
.GetSettings().GetStyleSettings().GetScrollBarSize() : 0;
922 rHScrollbar
.IsVisible(TRUE
) || (rHScrollbar
.IsVisible( FALSE
) && !rHScrollbar
.IsAuto()) ?
924 long nVBSzWidth
= rVScrollbar
.IsVisible(TRUE
) || (rVScrollbar
.IsVisible( FALSE
) && !rVScrollbar
.IsAuto()) ?
925 rRef
.GetSettings().GetStyleSettings().GetScrollBarSize() : 0;
929 WinBits nStyle
= pVLineal
->GetStyle()&~WB_RIGHT_ALIGNED
;
930 Point
aPos( rOfst
.X(), rOfst
.Y()+nHLinSzHeight
);
933 aPos
.X() += rSize
.Width() - nVLinSzWidth
;
934 nStyle
|= WB_RIGHT_ALIGNED
;
936 Size
aSize( nVLinSzWidth
, rEditSz
.Height() );
938 aSize
.Width() = pVLineal
->GetSizePixel().Width();
939 pVLineal
->SetStyle(nStyle
);
940 pVLineal
->SetPosSizePixel( aPos
, aSize
);
941 if(!pVLineal
->IsVisible())
944 // Lineal braucht ein Resize, sonst funktioniert es nicht im unischtbaren Zustand
947 Size
aSize( rSize
.Width(), nHLinSzHeight
);
948 if ( nVBSzWidth
&& !bVRulerRight
)
949 aSize
.Width() -= nVBSzWidth
;
951 aSize
.Height() = pHLineal
->GetSizePixel().Height();
952 pHLineal
->SetPosSizePixel( rOfst
, aSize
);
953 // #46802 VCL ruft an unsichtbaren Fenstern kein Resize
954 // fuer das Lineal ist das aber keine gute Idee
955 if(!pHLineal
->IsVisible())
959 // Scrollbars und SizeBox anordnen
960 Point aScrollFillPos
;
962 Point
aPos( rOfst
.X(),
963 rOfst
.Y()+rSize
.Height()-nHBSzHeight
);
966 aPos
.X() += nVBSzWidth
;
969 Size
aSize( rSize
.Width(), nHBSzHeight2
);
971 aSize
.Width() -= nVBSzWidth
;
972 rHScrollbar
.SetPosSizePixel( aPos
, aSize
);
973 aScrollFillPos
.Y() = aPos
.Y();
976 Point
aPos( rOfst
.X()+rSize
.Width()-nVBSzWidth
,
978 Size
aSize( nVBSzWidth
, rSize
.Height() );
981 aPos
.X() = rOfst
.X();
984 aPos
.Y() += nHLinSzHeight
;
985 aSize
.Height() -= nHLinSzHeight
;
989 Size
aImgSz( nVBSzWidth
, nVBSzWidth
);
991 //#55949# wenn der Platz fuer Scrollbar und Page-Buttons zu klein wird, dann
992 // werden die Buttons versteckt
993 USHORT nCnt
= pNaviBtn
? 3 : 2;
994 long nSubSize
= (aImgSz
.Width() * nCnt
);
996 BOOL bHidePageButtons
= aSize
.Height() < ((bWebView
? 3 : 2) * nSubSize
);
997 if(!bHidePageButtons
)
998 aSize
.Height() -= nSubSize
;
1000 aImgSz
.Width() = 0; // kein Hide, weil das im Update Scrollbar missverstanden wird
1003 aSize
.Height() -= nHBSzHeight
;
1004 rVScrollbar
.SetPosSizePixel( aPos
, aSize
);
1006 aPos
.Y() += aSize
.Height();
1007 pPageUpBtn
->SetPosSizePixel( aPos
, aImgSz
);
1010 aPos
.Y() += aImgSz
.Height();
1011 pNaviBtn
->SetPosSizePixel(aPos
, aImgSz
);
1014 aPos
.Y() += aImgSz
.Height();
1015 pPageDownBtn
->SetPosSizePixel( aPos
, aImgSz
);
1018 if( rHScrollbar
.IsVisible( FALSE
) )
1020 aScrollFillPos
.X() = aPos
.X();
1022 rScrollBarBox
.SetPosSizePixel( aScrollFillPos
,
1023 Size( nHBSzHeight
, nVBSzWidth
) );
1029 void SwView::ShowAtResize()
1031 bShowAtResize
= FALSE
;
1032 if ( pWrtShell
->GetViewOptions()->IsViewHRuler() )
1037 void SwView::InnerResizePixel( const Point
&rOfst
, const Size
&rSize
)
1039 Size aObjSize
= GetObjectShell()->GetVisArea().GetSize();
1040 if ( aObjSize
.Width() > 0 && aObjSize
.Height() > 0 )
1042 SvBorder
aBorder( GetBorderPixel() );
1043 Size
aSize( rSize
);
1044 aSize
.Width() -= (aBorder
.Left() + aBorder
.Right());
1045 aSize
.Height() -= (aBorder
.Top() + aBorder
.Bottom());
1046 Size aObjSizePixel
= GetWindow()->LogicToPixel( aObjSize
, MAP_TWIP
);
1047 SfxViewShell::SetZoomFactor( Fraction( aSize
.Width(), aObjSizePixel
.Width() ),
1048 Fraction( aSize
.Height(), aObjSizePixel
.Height() ) );
1051 bInInnerResizePixel
= TRUE
;
1052 const BOOL bHScrollVisible
= pHScrollbar
->IsVisible(TRUE
);
1053 const BOOL bVScrollVisible
= pVScrollbar
->IsVisible(TRUE
);
1054 BOOL bRepeat
= FALSE
;
1059 CalcAndSetBorderPixel( aBorder
, TRUE
);
1060 if ( GetViewFrame()->GetFrame()->IsInPlace() )
1062 Size
aViewSize( aSz
);
1063 Point
aViewPos( rOfst
);
1064 aViewSize
.Height() -= (aBorder
.Top() + aBorder
.Bottom());
1065 aViewSize
.Width() -= (aBorder
.Left() + aBorder
.Right());
1066 aViewPos
.X() += aBorder
.Left();
1067 aViewPos
.Y() += aBorder
.Top();
1068 GetEditWin().SetPosSizePixel( aViewPos
, aViewSize
);
1072 aSz
.Height() += aBorder
.Top() + aBorder
.Bottom();
1073 aSz
.Width() += aBorder
.Left() + aBorder
.Right();
1076 Size
aEditSz( GetEditWin().GetOutputSizePixel() );
1077 ViewResizePixel( GetEditWin(), rOfst
, aSz
, aEditSz
, TRUE
, *pVScrollbar
,
1078 *pHScrollbar
, pPageUpBtn
, pPageDownBtn
,
1080 *pScrollFill
, pVRuler
, pHRuler
,
1081 0 != PTR_CAST(SwWebView
, this),
1082 pWrtShell
->GetViewOptions()->IsVRulerRight());
1083 if ( bShowAtResize
)
1086 if( pHRuler
->IsVisible() || pVRuler
->IsVisible() )
1088 const Fraction
& rFrac
= GetEditWin().GetMapMode().GetScaleX();
1090 if (0 != rFrac
.GetDenominator())
1091 nZoom
= USHORT(rFrac
.GetNumerator() * 100L / rFrac
.GetDenominator());
1093 const Fraction
aFrac( nZoom
, 100 );
1094 pVRuler
->SetZoom( aFrac
);
1095 pHRuler
->SetZoom( aFrac
);
1096 InvalidateRulerPos(); //Inhalt invalidieren.
1098 //CursorStack zuruecksetzen, da die Cursorpositionen fuer PageUp/-Down
1099 //nicht mehr zum aktuell sichtbaren Bereich passen
1100 pWrtShell
->ResetCursorStack();
1102 //EditWin niemals einstellen!
1104 //VisArea einstellen, aber dort nicht das SetVisArea der DocShell rufen!
1105 bProtectDocShellVisArea
= TRUE
;
1106 CalcVisArea( aEditSz
);
1107 //visibility changes of the automatic horizontal scrollbar
1108 //require to repeat the ViewResizePixel() call - but only once!
1111 else if(bHScrollVisible
!= pHScrollbar
->IsVisible(TRUE
) ||
1112 bVScrollVisible
!= pVScrollbar
->IsVisible(TRUE
))
1115 bProtectDocShellVisArea
= FALSE
;
1116 bInInnerResizePixel
= FALSE
;
1120 void SwView::OuterResizePixel( const Point
&rOfst
, const Size
&rSize
)
1122 // FME 22.08.2003 #i16909# - return, if no size (caused by minimize window).
1123 if ( bInOuterResizePixel
|| ( !rSize
.Width() && !rSize
.Height() ) )
1125 bInOuterResizePixel
= TRUE
;
1127 // feststellen, ob Scrollbars angezeigt werden duerfen
1128 BOOL bBrowse
= pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
);
1129 BOOL bShowH
= FALSE
,
1133 switch( GetScrollingMode() )
1135 case SCROLLING_DEFAULT
:
1137 const SwViewOption
*pVOpt
= pWrtShell
->GetViewOptions();
1138 if ( !pVOpt
->IsReadonly() || pVOpt
->IsStarOneSetting() )
1140 bShowH
= pVOpt
->IsViewHScrollBar();
1141 bShowV
= pVOpt
->IsViewVScrollBar();
1145 /* kein break hier */
1146 case SCROLLING_AUTO
:
1147 bAuto
= bHAuto
= TRUE
;
1148 bShowH
= bShowV
= TRUE
;
1151 bShowH
= bShowV
= TRUE
;
1154 bShowH
= bShowV
= bHAuto
= FALSE
;
1157 SwDocShell
* pDocSh
= GetDocShell();
1158 BOOL bIsPreview
= pDocSh
->IsPreview();
1161 bShowH
= bShowV
= bHAuto
= bAuto
= FALSE
;
1163 if(pHScrollbar
->IsVisible(FALSE
) != bShowH
)
1164 ShowHScrollbar(bShowH
);
1165 pHScrollbar
->SetAuto( bHAuto
);
1166 if(pVScrollbar
->IsVisible(FALSE
) != bShowV
)
1167 ShowVScrollbar(bShowV
);
1168 pVScrollbar
->SetAuto(bAuto
);
1170 SET_CURR_SHELL( pWrtShell
);
1171 BOOL bRepeat
= FALSE
;
1174 BOOL bUnLockView
= !pWrtShell
->IsViewLocked();
1175 pWrtShell
->LockView( TRUE
);
1176 pWrtShell
->LockPaint();
1180 const BOOL bScroll1
= pVScrollbar
->IsVisible(TRUE
);
1181 const BOOL bScroll2
= pHScrollbar
->IsVisible(TRUE
);
1183 CalcAndSetBorderPixel( aBorder
, FALSE
);
1184 const Size
aEditSz( GetEditWin().GetOutputSizePixel() );
1185 ViewResizePixel( GetEditWin(), rOfst
, rSize
, aEditSz
, FALSE
, *pVScrollbar
,
1186 *pHScrollbar
, pPageUpBtn
, pPageDownBtn
,
1188 *pScrollFill
, pVRuler
, pHRuler
,
1189 0 != PTR_CAST(SwWebView
, this),
1190 pWrtShell
->GetViewOptions()->IsVRulerRight() );
1191 if ( bShowAtResize
)
1194 if( pHRuler
->IsVisible() || pVRuler
->IsVisible() )
1195 InvalidateRulerPos(); //Inhalt invalidieren.
1197 //CursorStack zuruecksetzen, da die Cursorpositionen fuer PageUp/-Down
1198 //nicht mehr zum aktuell sichtbaren Bereich passen
1199 pWrtShell
->ResetCursorStack();
1201 ASSERT( !GetEditWin().IsVisible() ||
1202 (( aEditSz
.Width() > 0 && aEditSz
.Height() > 0 )
1203 || !aVisArea
.IsEmpty()), "Small world, isn't it?" );
1205 //EditWin niemals einstellen!
1207 //Die VisArea muss aber natuerlich eingestellt werden.
1208 //jetzt ist auch der richtige Zeitpunkt den Zoom neu zu berechnen wenn
1209 //es kein einfacher Faktor ist.
1210 pWrtShell
->StartAction();
1211 CalcVisArea( aEditSz
);
1213 //Damit auch beim outplace editing die Seitenbreite sofort
1215 //TODO/LATER: is that still necessary?!
1217 if ( pDocSh->GetCreateMode() == SFX_CREATE_MODE_EMBEDDED )
1219 pDocSh->SfxInPlaceObject::GetVisArea() );*/
1220 if ( pWrtShell
->GetViewOptions()->GetZoomType() != SVX_ZOOM_PERCENT
&&
1221 !pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
) )
1222 _SetZoom( aEditSz
, (SvxZoomType
)pWrtShell
->GetViewOptions()->GetZoomType(), 100, TRUE
);
1223 pWrtShell
->EndAction();
1225 bRepeat
= bScroll1
!= pVScrollbar
->IsVisible(TRUE
);
1227 bRepeat
= bScroll2
!= pHScrollbar
->IsVisible(TRUE
);
1229 //Nicht endlosschleifen. Moeglichst dann stoppen wenn die
1230 //(Auto-)Scrollbars sichtbar sind.
1232 ( nCnt
> 10 || ( nCnt
> 3 && bHAuto
&& bAuto
) )
1240 if( pVScrollbar
->IsVisible(FALSE
) || pVScrollbar
->IsAuto())
1242 BOOL bShowButtons
= pVScrollbar
->IsVisible(TRUE
);
1243 if(pPageUpBtn
&& pPageUpBtn
->IsVisible() != bShowButtons
)
1245 pPageUpBtn
->Show(bShowButtons
);
1247 pPageDownBtn
->Show(bShowButtons
);
1249 pNaviBtn
->Show(bShowButtons
);
1253 pWrtShell
->UnlockPaint();
1255 pWrtShell
->LockView( FALSE
);
1257 bInOuterResizePixel
= FALSE
;
1261 mpPostItMgr
->CalcRects();
1262 mpPostItMgr
->LayoutPostIts();
1267 void SwView::SetZoomFactor( const Fraction
&rX
, const Fraction
&rY
)
1269 const Fraction
&rFrac
= rX
< rY
? rX
: rY
;
1270 SetZoom( SVX_ZOOM_PERCENT
, (short) long(rFrac
* Fraction( 100, 1 )) );
1272 //Um Rundungsfehler zu minimieren lassen wir von der Basisklasse ggf.
1273 //auch die krummen Werte einstellen
1274 SfxViewShell::SetZoomFactor( rX
, rY
);
1278 Size
SwView::GetOptimalSizePixel() const
1281 if ( pWrtShell
->getIDocumentSettingAccess()->get(IDocumentSettingAccess::BROWSE_MODE
) )
1282 aPgSize
= SvxPaperInfo::GetPaperSize(PAPER_A4
);
1285 aPgSize
= GetWrtShell().GetAnyCurRect(RECT_PAGE
).SSize();
1286 aPgSize
.Width() += DOCUMENTBORDER
* 2;
1288 const SwPageDesc
&rDesc
= pWrtShell
->GetPageDesc( pWrtShell
->GetCurPageDesc() );
1289 if( nsUseOnPage::PD_MIRROR
== rDesc
.GetUseOn() )
1291 const SvxLRSpaceItem
&rLRSpace
= rDesc
.GetMaster().GetLRSpace();
1292 const SvxLRSpaceItem
&rLeftLRSpace
= rDesc
.GetLeft().GetLRSpace();
1293 aPgSize
.Width() += Abs( long(rLeftLRSpace
.GetLeft()) - long(rLRSpace
.GetLeft()) );
1296 return GetEditWin().LogicToPixel( aPgSize
);
1300 BOOL
SwView::UpdateScrollbars()
1303 if ( !aVisArea
.IsEmpty() )
1305 const BOOL bBorder
= IsDocumentBorder();
1306 Rectangle
aTmpRect( aVisArea
);
1309 Point
aPt( DOCUMENTBORDER
, DOCUMENTBORDER
);
1310 aPt
= AlignToPixel( aPt
);
1311 aTmpRect
.Move( -aPt
.X(), -aPt
.Y() );
1314 Size
aTmpSz( aDocSz
);
1315 const long lOfst
= bBorder
? 0 : DOCUMENTBORDER
* 2L;
1316 aTmpSz
.Width() += lOfst
; aTmpSz
.Height() += lOfst
;
1319 const BOOL bVScrollVisible
= pVScrollbar
->IsVisible(TRUE
);
1320 pVScrollbar
->DocSzChgd( aTmpSz
);
1321 pVScrollbar
->ViewPortChgd( aTmpRect
);
1323 BOOL bShowButtons
= pVScrollbar
->IsVisible(TRUE
);
1324 if(pPageUpBtn
&& pPageUpBtn
->IsVisible() != bShowButtons
)
1326 pPageUpBtn
->Show(bShowButtons
);
1328 pPageDownBtn
->Show(bShowButtons
);
1330 pNaviBtn
->Show(bShowButtons
);
1333 if ( bVScrollVisible
!= pVScrollbar
->IsVisible(TRUE
) )
1337 const BOOL bHScrollVisible
= pHScrollbar
->IsVisible(TRUE
);
1338 pHScrollbar
->DocSzChgd( aTmpSz
);
1339 pHScrollbar
->ViewPortChgd( aTmpRect
);
1340 if ( bHScrollVisible
!= pHScrollbar
->IsVisible(TRUE
) )
1342 pScrollFill
->Show(pHScrollbar
->IsVisible(TRUE
) && pVScrollbar
->IsVisible(TRUE
) );
1351 if ( GetWrtShell().IsInSelect() )
1352 GetWrtShell().EndSelect(); //#32427#
1353 SfxViewShell::Move();
1356 BOOL
SwView::HandleWheelCommands( const CommandEvent
& rCEvt
)
1359 const CommandWheelData
* pWData
= rCEvt
.GetWheelData();
1360 if( pWData
&& COMMAND_WHEEL_ZOOM
== pWData
->GetMode() )
1362 USHORT nFact
= pWrtShell
->GetViewOptions()->GetZoom();
1363 if( 0L > pWData
->GetDelta() )
1364 nFact
= static_cast< USHORT
>(Max( 20, nFact
- 10 ));
1366 nFact
= static_cast< USHORT
>(Min( 600, nFact
+ 10 ));
1368 SetZoom( SVX_ZOOM_PERCENT
, nFact
);
1373 if (pWData
&& (COMMAND_WHEEL_SCROLL
==pWData
->GetMode()) && (((ULONG
)0xFFFFFFFF) == pWData
->GetScrollLines()))
1375 if (pWData
->GetDelta()<0)
1382 bOk
= pEditWin
->HandleScrollCommand( rCEvt
,
1383 pHScrollbar
, pVScrollbar
);