Lines Matching refs:mpVScrollBar

111 	ScrollBar*			mpVScrollBar;  member in ImpSvMEdit
176 ScrollBar* GetVScrollBar() { return mpVScrollBar; } in GetVScrollBar()
183 ,mpVScrollBar(NULL) in ImpSvMEdit()
196 const sal_Bool bHaveVScroll = (NULL != mpVScrollBar); in ImpUpdateSrollBarVis()
219 delete mpVScrollBar; in ImpUpdateSrollBarVis()
220 mpVScrollBar = bNeedVScroll ? new ScrollBar( pSvMultiLineEdit, WB_VSCROLL|WB_DRAG ) : NULL; in ImpUpdateSrollBarVis()
224 mpVScrollBar->Show(); in ImpUpdateSrollBarVis()
225 mpVScrollBar->SetScrollHdl( LINK( this, ImpSvMEdit, ScrollHdl ) ); in ImpUpdateSrollBarVis()
295 delete mpVScrollBar; in ~ImpSvMEdit()
301 if ( mpVScrollBar ) in ImpSetScrollBarRanges()
304 mpVScrollBar->SetRange( Range( 0, (long)nTextHeight-1 ) ); in ImpSetScrollBarRanges()
319 if ( mpHScrollBar || mpVScrollBar ) in ImpInitScrollBars()
333 if ( mpVScrollBar ) in ImpInitScrollBars()
335 mpVScrollBar->SetVisibleSize( aOutSz.Height() ); in ImpInitScrollBars()
336 mpVScrollBar->SetPageSize( aOutSz.Height() * 8 / 10 ); in ImpInitScrollBars()
337 mpVScrollBar->SetLineSize( aCharBox.Height() ); in ImpInitScrollBars()
338 mpVScrollBar->SetThumbPos( mpTextWindow->GetTextView()->GetStartDocPos().Y() ); in ImpInitScrollBars()
357 if ( pCurScrollBar == mpVScrollBar ) in IMPL_LINK()
462 if ( mpVScrollBar ) in Resize()
471 if ( mpVScrollBar ) in Resize()
475 mpVScrollBar->SetPosSizePixel( 0, 0, nSBWidth, aSz.Height() ); in Resize()
479mpVScrollBar->SetPosSizePixel( aEditSize.Width()-nSBWidth, 0, nSBWidth, aSz.Height() ); in Resize()
573 if ( mpVScrollBar ) in Notify()
574 mpVScrollBar->SetThumbPos( mpTextWindow->GetTextView()->GetStartDocPos().Y() ); in Notify()
684 if ( mpVScrollBar ) in CalcMinimumSize()
685 aSz.Width() += mpVScrollBar->GetSizePixel().Width(); in CalcMinimumSize()
711 if ( mpVScrollBar ) in CalcSize()
712 aSz.Width() += mpVScrollBar->GetSizePixel().Width(); in CalcSize()
731 if ( mpVScrollBar ) in Enable()
732 mpVScrollBar->Enable( bEnable ); in Enable()
742 mpTextWindow->HandleScrollCommand( rCEvt, mpHScrollBar, mpVScrollBar ); in HandleCommand()