diff options
author | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2013-09-26 21:42:34 +0200 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-21 02:05:24 -0600 |
commit | 3e8fe4d8e19be2ccd8f5bb898530e2f615a90321 (patch) | |
tree | c2e055474868d6e397e96f10086282aa58991809 /sw | |
parent | 979f05eee3dafba60f6b93744183035e9cc8be81 (diff) |
Remove the Navigator buttons below the scrollbar in Writer
Discussion was here: http://nabble.documentfoundation.org/Libreoffice-ux-advise-Remove-the-Navigator-button-below-the-scrollbar-in-Writer-td4083097.html
Change-Id: I04b33a8e992c87b8e7519dc62c208e6dc116f8e1
Reviewed-on: https://gerrit.libreoffice.org/6045
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/inc/view.hxx | 2 | ||||
-rw-r--r-- | sw/source/ui/inc/workctrl.hxx | 25 | ||||
-rw-r--r-- | sw/source/ui/ribbar/workctrl.cxx | 74 | ||||
-rw-r--r-- | sw/source/ui/ribbar/workctrl.src | 17 | ||||
-rw-r--r-- | sw/source/ui/uiview/pview.cxx | 40 | ||||
-rw-r--r-- | sw/source/ui/uiview/view.cxx | 6 | ||||
-rw-r--r-- | sw/source/ui/uiview/view.hrc | 6 | ||||
-rw-r--r-- | sw/source/ui/uiview/view.src | 17 | ||||
-rw-r--r-- | sw/source/ui/uiview/viewfunc.hxx | 5 | ||||
-rw-r--r-- | sw/source/ui/uiview/viewmdi.cxx | 53 | ||||
-rw-r--r-- | sw/source/ui/uiview/viewport.cxx | 67 |
11 files changed, 9 insertions, 303 deletions
diff --git a/sw/source/ui/inc/view.hxx b/sw/source/ui/inc/view.hxx index 3c8576198c17..f9481bd781ca 100644 --- a/sw/source/ui/inc/view.hxx +++ b/sw/source/ui/inc/view.hxx @@ -57,7 +57,6 @@ class SdrView; class Dialog; class SdrObject; class SdrPageView; -class SwNaviImageButton; class SwHlpImageButton; class SwView; class SwEditWin; @@ -214,7 +213,6 @@ class SW_DLLPUBLIC SwView: public SfxViewShell SwHlpImageButton *m_pPageUpBtn, *m_pPageDownBtn; - SwNaviImageButton *m_pNaviBtn; SwGlossaryHdl *m_pGlosHdl; // handle text block SwDrawBase *m_pDrawActual; diff --git a/sw/source/ui/inc/workctrl.hxx b/sw/source/ui/inc/workctrl.hxx index 2b7f7c609fba..0d4a3d800c6c 100644 --- a/sw/source/ui/inc/workctrl.hxx +++ b/sw/source/ui/inc/workctrl.hxx @@ -172,31 +172,6 @@ public: }; //---------------------------------------------------------------------------- -// -//---------------------------------------------------------------------------- - -class SwNaviImageButton : public ImageButton -{ - SwScrollNaviPopup* pPopup; - Image aImage; - OUString sQuickText; - SfxPopupWindow* pPopupWindow; - SfxPopupWindow* pFloatingWindow; - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame; - - protected: - DECL_LINK( PopupModeEndHdl, void * ); - DECL_LINK( ClosePopupWindow, SfxPopupWindow * ); - - virtual void Click(); - virtual void DataChanged( const DataChangedEvent& rDCEvt ); - void SetPopupWindow( SfxPopupWindow* pWindow ); - - public: - SwNaviImageButton(Window* pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame ); -}; - -//---------------------------------------------------------------------------- // ImageButtons have to set the HelpText themselves if needed //---------------------------------------------------------------------------- diff --git a/sw/source/ui/ribbar/workctrl.cxx b/sw/source/ui/ribbar/workctrl.cxx index 5dd71951ecb7..a9c96c7705cb 100644 --- a/sw/source/ui/ribbar/workctrl.cxx +++ b/sw/source/ui/ribbar/workctrl.cxx @@ -596,54 +596,6 @@ OUString SwScrollNaviPopup::GetQuickHelpText(sal_Bool bNext) return SW_RESSTR(nResId); } -void SwNaviImageButton::Click() -{ - pPopup = new - SwScrollNaviPopup( FN_SCROLL_NAVIGATION, - m_xFrame, this ); - Point aPos = OutputToScreenPixel(Point(0,0)); - Rectangle aRect(aPos, GetSizePixel()); - SetPopupWindow( pPopup ); - pPopup->StartPopupMode(aRect, FLOATWIN_POPUPMODE_LEFT|FLOATWIN_POPUPMODE_ALLOWTEAROFF); -} - -void SwNaviImageButton::SetPopupWindow( SfxPopupWindow* pWindow ) -{ - pPopupWindow = pWindow; - pPopupWindow->SetPopupModeEndHdl( LINK( this, SwNaviImageButton, PopupModeEndHdl )); - pPopupWindow->SetDeleteLink_Impl( LINK( this, SwNaviImageButton, ClosePopupWindow )); -} - -IMPL_LINK_NOARG(SwNaviImageButton, PopupModeEndHdl) -{ - if ( pPopupWindow->IsVisible() ) - { - // Replace floating window with popup window and destroy - // floating window instance. - delete pFloatingWindow; - pFloatingWindow = pPopupWindow; - pPopupWindow = 0; - } - else - { - // Popup window has been closed by the user. No replacement, instance - // will destroy itself. - pPopupWindow = 0; - } - - return 1; -} - -IMPL_LINK( SwNaviImageButton, ClosePopupWindow, SfxPopupWindow *, pWindow ) -{ - if ( pWindow == pFloatingWindow ) - pFloatingWindow = 0; - else - pPopupWindow = 0; - - return 1; -} - void SwHlpImageButton::RequestHelp( const HelpEvent& rHEvt ) { @@ -652,32 +604,6 @@ void SwHlpImageButton::RequestHelp( const HelpEvent& rHEvt ) ImageButton::RequestHelp(rHEvt); } -SwNaviImageButton::SwNaviImageButton( - Window* pParent, - const Reference< XFrame >& rFrame ) : - ImageButton(pParent, SW_RES(BTN_NAVI)), - pPopup(0), - aImage(SW_RES(IMG_BTN)), - sQuickText(SW_RESSTR(ST_QUICK)), - pPopupWindow(0), - pFloatingWindow(0), - m_xFrame( rFrame ) -{ - FreeResource(); - SetStyle(GetStyle()|WB_NOPOINTERFOCUS); - SetQuickHelpText(sQuickText); - SetModeImage( aImage ); -} - -void SwNaviImageButton::DataChanged( const DataChangedEvent& rDCEvt ) -{ - if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && - (rDCEvt.GetFlags() & SETTINGS_STYLE) ) - SetModeImage( aImage ); - - Window::DataChanged( rDCEvt ); -} - class SwZoomBox_Impl : public ComboBox { sal_uInt16 nSlotId; diff --git a/sw/source/ui/ribbar/workctrl.src b/sw/source/ui/ribbar/workctrl.src index 23e60add838c..f3592d0a7a8e 100644 --- a/sw/source/ui/ribbar/workctrl.src +++ b/sw/source/ui/ribbar/workctrl.src @@ -368,23 +368,6 @@ String STR_IMGBTN_TBLFML_ERR_DOWN { Text [ en-US ] = "Next faulty table formula"; }; -ImageButton BTN_NAVI -{ - HelpID = HID_NAVIGATION_IMGBTN ; - SVLOOK = TRUE ; - HIDE = TRUE ; - RectStyle = TRUE ; - SmallStyle = TRUE ; - Image IMG_BTN - { - ImageBitmap = Bitmap { File = "navigation.png" ; }; - MaskColor = IMAGE_MASK_COLOR ; - }; - String ST_QUICK - { - Text [ en-US ] = "Navigation" ; - }; -}; ComboBox RID_PVIEW_ZOOM_LB { HelpId = HID_PVIEW_ZOOM_LB; diff --git a/sw/source/ui/uiview/pview.cxx b/sw/source/ui/uiview/pview.cxx index abf1ca9b4e80..cf2263ac2c46 100644 --- a/sw/source/ui/uiview/pview.cxx +++ b/sw/source/ui/uiview/pview.cxx @@ -1148,8 +1148,6 @@ SwPagePreview::SwPagePreview(SfxViewFrame *pViewFrame, SfxViewShell* pOldSh): sPageStr(SW_RES(STR_PAGE)), pHScrollbar(0), pVScrollbar(0), - pPageUpBtn(0), - pPageDownBtn(0), pScrollFill(new ScrollBarBox( &pViewFrame->GetWindow(), pViewFrame->GetFrame().GetParentFrame() ? 0 : WB_SIZEABLE )), mnPageCount( 0 ), @@ -1225,9 +1223,6 @@ SwPagePreview::~SwPagePreview() delete pScrollFill; delete pHScrollbar; delete pVScrollbar; - delete pPageUpBtn; - delete pPageDownBtn; - } SwDocShell* SwPagePreview::GetDocShell() @@ -1242,27 +1237,12 @@ int SwPagePreview::_CreateScrollbar( sal_Bool bHori ) OSL_ENSURE( !*ppScrollbar, "check beforehand!" ); - if( !bHori ) - { - - pPageUpBtn = new ImageButton(pMDI, SW_RES( BTN_PAGEUP ) ); - pPageUpBtn->SetHelpId(GetStaticInterface()->GetSlot(FN_PAGEUP)->GetCommand()); - pPageDownBtn = new ImageButton(pMDI, SW_RES( BTN_PAGEDOWN ) ); - pPageDownBtn->SetHelpId(GetStaticInterface()->GetSlot(FN_PAGEDOWN)->GetCommand()); - Link aLk( LINK( this, SwPagePreview, BtnPage ) ); - pPageUpBtn->SetClickHdl( aLk ); - pPageDownBtn->SetClickHdl( aLk ); - pPageUpBtn->Show(); - pPageDownBtn->Show(); - } - *ppScrollbar = new SwScrollbar( pMDI, bHori ); ScrollDocSzChg(); (*ppScrollbar)->EnableDrag( sal_True ); (*ppScrollbar)->SetEndScrollHdl( LINK( this, SwPagePreview, EndScrollHdl )); - (*ppScrollbar)->SetScrollHdl( LINK( this, SwPagePreview, ScrollHdl )); InvalidateBorder(); @@ -1270,17 +1250,6 @@ int SwPagePreview::_CreateScrollbar( sal_Bool bHori ) return 1; } -// Button-Handler - -IMPL_LINK_INLINE_START( SwPagePreview, BtnPage, Button *, pButton ) -{ - // use new helper method to perform page up - // respectively page down. - _ExecPgUpAndPgDown( pButton == pPageUpBtn ); - return 0; -} -IMPL_LINK_INLINE_END( SwPagePreview, BtnPage, Button *, pButton ) - int SwPagePreview::ChgPage( int eMvMode, int bUpdateScrollbar ) { Rectangle aPixVisArea( aViewWin.LogicToPixel( aVisArea ) ); @@ -1331,9 +1300,7 @@ void SwPagePreview::InnerResizePixel( const Point &rOfst, const Size &rSize ) aRect += aBorder; ViewResizePixel( aViewWin, aRect.TopLeft(), aRect.GetSize(), aViewWin.GetOutputSizePixel(), - sal_True, - *pVScrollbar, *pHScrollbar, pPageUpBtn, pPageDownBtn, 0, - *pScrollFill ); + *pVScrollbar, *pHScrollbar, *pScrollFill ); // Never set EditWin ! // Never set VisArea ! @@ -1361,8 +1328,7 @@ void SwPagePreview::OuterResizePixel( const Point &rOfst, const Size &rSize ) SvBorder aBorderNew; CalcAndSetBorderPixel( aBorderNew, sal_False ); ViewResizePixel( aViewWin, rOfst, rSize, aViewWin.GetOutputSizePixel(), - sal_False, *pVScrollbar, - *pHScrollbar, pPageUpBtn, pPageDownBtn, 0, *pScrollFill ); + *pVScrollbar, *pHScrollbar, *pScrollFill ); } void SwPagePreview::SetVisArea( const Rectangle &rRect, sal_Bool bUpdateScrollbar ) @@ -1621,8 +1587,6 @@ void SwPagePreview::ScrollViewSzChg() bShowVScrollbar = false; ShowVScrollbar(bShowVScrollbar); - pPageUpBtn->Show(bShowVScrollbar); - pPageDownBtn->Show(bShowVScrollbar); } if(pHScrollbar) { diff --git a/sw/source/ui/uiview/view.cxx b/sw/source/ui/uiview/view.cxx index 701ea542c54b..9e3090972dd4 100644 --- a/sw/source/ui/uiview/view.cxx +++ b/sw/source/ui/uiview/view.cxx @@ -709,9 +709,6 @@ SwView::SwView( SfxViewFrame *_pFrame, SfxViewShell* pOldSh ) GetViewFrame()->GetBindings(), WB_VSCROLL | WB_EXTRAFIELD | WB_BORDER )), m_pTogglePageBtn(0), - m_pPageUpBtn(0), - m_pPageDownBtn(0), - m_pNaviBtn(0), m_pGlosHdl(0), m_pDrawActual(0), m_pLastTableFormat(0), @@ -1069,9 +1066,6 @@ SwView::~SwView() delete m_pHRuler; delete m_pVRuler; delete m_pTogglePageBtn; - delete m_pPageUpBtn; - delete m_pNaviBtn; - delete m_pPageDownBtn; delete m_pGlosHdl; delete m_pViewImpl; delete m_pEditWin; diff --git a/sw/source/ui/uiview/view.hrc b/sw/source/ui/uiview/view.hrc index 692c45fadc4f..8e7a7298c1b0 100644 --- a/sw/source/ui/uiview/view.hrc +++ b/sw/source/ui/uiview/view.hrc @@ -21,11 +21,6 @@ #include "rcid.hrc" -// BTN - -#define BTN_PAGEDOWN (RC_VIEW_BEGIN) -#define BTN_PAGEUP (RC_VIEW_BEGIN + 1) - // STR #define STR_NUM_LEVEL (RC_VIEW_BEGIN + 3) @@ -56,6 +51,7 @@ #define STR_TEXTOPTIONS (RC_VIEW_BEGIN + 33) #define STR_SAVEACOPY_SRC (RC_VIEW_BEGIN + 34) + // MSG #define MSG_ERR_INSERT_GLOS (RC_VIEW_BEGIN) diff --git a/sw/source/ui/uiview/view.src b/sw/source/ui/uiview/view.src index 665f75d811d2..17794b074479 100644 --- a/sw/source/ui/uiview/view.src +++ b/sw/source/ui/uiview/view.src @@ -25,22 +25,7 @@ #include "popup.hrc" #include "helpid.h" #include "cmdid.h" -ImageButton BTN_PAGEUP -{ - SVLOOK = TRUE ; - HIDE = TRUE ; - RectStyle = TRUE ; - SmallStyle = TRUE ; - SYMBOL = IMAGEBUTTON_PAGEUP ; -}; -ImageButton BTN_PAGEDOWN -{ - SVLOOK = TRUE ; - HIDE = TRUE ; - RectStyle = TRUE ; - SmallStyle = TRUE ; - SYMBOL = IMAGEBUTTON_PAGEDOWN ; -}; + QueryBox DLG_SPECIAL_FORCED { BUTTONS = WB_YES_NO ; diff --git a/sw/source/ui/uiview/viewfunc.hxx b/sw/source/ui/uiview/viewfunc.hxx index d3ec8e5dba00..e2eb9c32c396 100644 --- a/sw/source/ui/uiview/viewfunc.hxx +++ b/sw/source/ui/uiview/viewfunc.hxx @@ -41,16 +41,11 @@ void ViewResizePixel( const Window &rRef, const Point &rOfst, const Size &rSize, const Size &rEditSz, - const sal_Bool bInner, SwScrollbar& rVScrollbar, SwScrollbar& rHScrollbar, - ImageButton* pPageUpBtn, - ImageButton* pPageDownBtn, - ImageButton* pNaviBtn, Window& rScrollBarBox, SvxRuler* pVRuler = 0, SvxRuler* pHRuler = 0, - sal_Bool bWebView = sal_False, sal_Bool bVRulerRight = sal_False ); diff --git a/sw/source/ui/uiview/viewmdi.cxx b/sw/source/ui/uiview/viewmdi.cxx index 526e8f4b3047..b8fc3e0613f2 100644 --- a/sw/source/ui/uiview/viewmdi.cxx +++ b/sw/source/ui/uiview/viewmdi.cxx @@ -300,9 +300,6 @@ int SwView::_CreateScrollbar( sal_Bool bHori ) OSL_ENSURE( !*ppScrollbar, "check beforehand!" ); - if( !bHori ) - CreatePageButtons( !m_bShowAtResize ); - *ppScrollbar = new SwScrollbar( pMDI, bHori ); UpdateScrollbars(); if(bHori) @@ -324,43 +321,6 @@ int SwView::_CreateScrollbar( sal_Bool bHori ) return 1; } -void SwView::CreatePageButtons(sal_Bool bShow) -{ - Window *pMDI = &GetViewFrame()->GetWindow(); - m_pPageUpBtn = new SwHlpImageButton(pMDI, SW_RES( BTN_PAGEUP ), sal_True ); - m_pPageUpBtn->SetHelpId(HID_SCRL_PAGEUP); - m_pPageDownBtn = new SwHlpImageButton(pMDI, SW_RES( BTN_PAGEDOWN ), sal_False ); - m_pPageDownBtn->SetHelpId(HID_SCRL_PAGEDOWN); - Reference< XFrame > xFrame = GetViewFrame()->GetFrame().GetFrameInterface(); - m_pNaviBtn = new SwNaviImageButton(pMDI, xFrame ); - m_pNaviBtn->SetHelpId(HID_SCRL_NAVI); - Link aLk( LINK( this, SwView, BtnPage ) ); - m_pPageUpBtn->SetClickHdl( aLk ); - m_pPageDownBtn->SetClickHdl( aLk ); - if(m_nMoveType != NID_PGE) - { - Color aColor(VIEW_IMAGECOLOR); - SetImageButtonColor(aColor); - } - - if(bShow) - { - m_pPageUpBtn->Show(); - m_pPageDownBtn->Show(); - m_pNaviBtn->Show(); - } -}; - -// Button-Handler - -IMPL_LINK( SwView, BtnPage, Button *, pButton ) -{ - // #i75416# move the execution of the search to an asynchronously called static link - bool* pbNext = new bool( (pButton == m_pPageDownBtn) ); - Application::PostUserEvent( STATIC_LINK(this, SwView, MoveNavigationHdl), pbNext ); - return 0; -} - IMPL_STATIC_LINK( SwView, MoveNavigationHdl, bool *, pbNext ) { if ( !pbNext ) @@ -615,7 +575,6 @@ void SwView::SetMoveType(sal_uInt16 nSet) SwView* pView = (SwView*)SfxViewShell::GetFirst(&aTypeId); while( pView ) { - pView->SetImageButtonColor(aColor); pView = (SwView*)SfxViewShell::GetNext(*pView, &aTypeId); } } @@ -626,15 +585,6 @@ void SwView::SetActMark(sal_Int32 nSet) m_nActMark = nSet; } -void SwView::SetImageButtonColor(Color& rColor) -{ - if(m_pPageUpBtn) - { - m_pPageUpBtn->SetControlForeground(rColor); - m_pPageDownBtn->SetControlForeground(rColor); - } -} - void SwView::ShowHScrollbar(sal_Bool bShow) { OSL_ENSURE(m_pHScrollbar, "Scrollbar invalid"); @@ -651,9 +601,6 @@ void SwView::ShowVScrollbar(sal_Bool bShow) { OSL_ENSURE(m_pVScrollbar, "Scrollbar invalid"); m_pVScrollbar->ExtendedShow(bShow); - m_pPageUpBtn->Show(bShow); - m_pPageDownBtn->Show(bShow); - m_pNaviBtn->Show(bShow); } sal_Bool SwView::IsVScrollbarVisible()const diff --git a/sw/source/ui/uiview/viewport.cxx b/sw/source/ui/uiview/viewport.cxx index 1d4acb347873..219f73313eaf 100644 --- a/sw/source/ui/uiview/viewport.cxx +++ b/sw/source/ui/uiview/viewport.cxx @@ -829,16 +829,11 @@ void ViewResizePixel( const Window &rRef, const Point &rOfst, const Size &rSize, const Size &rEditSz, - const sal_Bool /*bInner*/, SwScrollbar& rVScrollbar, SwScrollbar& rHScrollbar, - ImageButton* pPageUpBtn, - ImageButton* pPageDownBtn, - ImageButton* pNaviBtn, Window& rScrollBarBox, SvxRuler* pVRuler, SvxRuler* pHRuler, - sal_Bool bWebView, sal_Bool bVRulerRight ) { // ViewResizePixel is also used by Preview!!! @@ -916,33 +911,11 @@ void ViewResizePixel( const Window &rRef, } } - Size aImgSz( nVBSzWidth, nVBSzWidth ); - - // If the space for scrollbar and page buttons gets too small, - // the buttons will be hidden. - sal_uInt16 nCnt = pNaviBtn ? 3 : 2; - long nSubSize = (aImgSz.Width() * nCnt ); - // - sal_Bool bHidePageButtons = aSize.Height() < ((bWebView ? 3 : 2) * nSubSize); - if(!bHidePageButtons) - aSize.Height() -= nSubSize; - else - aImgSz.Width() = 0; // No hide, because this will be misunderstood - // in the update scrollbar. if ( nHBSzHeight ) aSize.Height() -= nHBSzHeight; rVScrollbar.SetPosSizePixel( aPos, aSize ); aPos.Y() += aSize.Height(); - pPageUpBtn->SetPosSizePixel( aPos, aImgSz ); - if(pNaviBtn) - { - aPos.Y() += aImgSz.Height(); - pNaviBtn->SetPosSizePixel(aPos, aImgSz); - } - - aPos.Y() += aImgSz.Height(); - pPageDownBtn->SetPosSizePixel( aPos, aImgSz ); aScrollFillPos.X() = aPos.X(); } @@ -997,11 +970,8 @@ void SwView::InnerResizePixel( const Point &rOfst, const Size &rSize ) } Size aEditSz( GetEditWin().GetOutputSizePixel() ); - ViewResizePixel( GetEditWin(), rOfst, aSz, aEditSz, sal_True, *m_pVScrollbar, - *m_pHScrollbar, m_pPageUpBtn, m_pPageDownBtn, - m_pNaviBtn, - *m_pScrollFill, m_pVRuler, m_pHRuler, - 0 != PTR_CAST(SwWebView, this), + ViewResizePixel( GetEditWin(), rOfst, aSz, aEditSz, *m_pVScrollbar, + *m_pHScrollbar, *m_pScrollFill, m_pVRuler, m_pHRuler, m_pWrtShell->GetViewOptions()->IsVRulerRight()); if ( m_bShowAtResize ) ShowAtResize(); @@ -1096,11 +1066,8 @@ void SwView::OuterResizePixel( const Point &rOfst, const Size &rSize ) SvBorder aBorder; CalcAndSetBorderPixel( aBorder, sal_False ); const Size aEditSz( GetEditWin().GetOutputSizePixel() ); - ViewResizePixel( GetEditWin(), rOfst, rSize, aEditSz, sal_False, *m_pVScrollbar, - *m_pHScrollbar, m_pPageUpBtn, m_pPageDownBtn, - m_pNaviBtn, - *m_pScrollFill, m_pVRuler, m_pHRuler, - 0 != PTR_CAST(SwWebView, this), + ViewResizePixel( GetEditWin(), rOfst, rSize, aEditSz, *m_pVScrollbar, + *m_pHScrollbar, *m_pScrollFill, m_pVRuler, m_pHRuler, m_pWrtShell->GetViewOptions()->IsVRulerRight() ); if ( m_bShowAtResize ) ShowAtResize(); @@ -1147,20 +1114,7 @@ void SwView::OuterResizePixel( const Point &rOfst, const Size &rSize ) bRepeat = sal_False; } - }while ( bRepeat ); - - if( m_pVScrollbar->IsVisible(sal_False) || m_pVScrollbar->IsAuto()) - { - sal_Bool bShowButtons = m_pVScrollbar->IsVisible(sal_True); - if(m_pPageUpBtn && m_pPageUpBtn->IsVisible() != bShowButtons) - { - m_pPageUpBtn->Show(bShowButtons); - if(m_pPageDownBtn) - m_pPageDownBtn->Show(bShowButtons); - if(m_pNaviBtn) - m_pNaviBtn->Show(bShowButtons); - } - } + } while ( bRepeat ); m_pWrtShell->UnlockPaint(); if( bUnLockView ) @@ -1207,17 +1161,6 @@ sal_Bool SwView::UpdateScrollbars() const sal_Bool bVScrollVisible = m_pVScrollbar->IsVisible(sal_True); m_pVScrollbar->DocSzChgd( aTmpSz ); m_pVScrollbar->ViewPortChgd( aTmpRect ); - - sal_Bool bShowButtons = m_pVScrollbar->IsVisible(sal_True); - if(m_pPageUpBtn && m_pPageUpBtn->IsVisible() != bShowButtons) - { - m_pPageUpBtn->Show(bShowButtons); - if(m_pPageDownBtn) - m_pPageDownBtn->Show(bShowButtons); - if(m_pNaviBtn) - m_pNaviBtn->Show(bShowButtons); - } - if ( bVScrollVisible != m_pVScrollbar->IsVisible(sal_True) ) bRet = sal_True; } |