Lines Matching refs:m_pVScroll

61         ,m_pVScroll             ( NULL                )  in RichTextControlImpl()
109 delete m_pVScroll; in ~RichTextControlImpl()
322 if ( bVScroll && m_pVScroll ) in EditEngineStatusChanged()
323 m_pVScroll->SetThumbPos( m_pView->GetVisArea().Top() ); in EditEngineStatusChanged()
360 delete m_pVScroll; in ensureScrollbars()
361 m_pVScroll = NULL; in ensureScrollbars()
365 m_pVScroll = new ScrollBar( m_pAntiImpl, WB_VSCROLL | WB_DRAG | WB_REPEAT ); in ensureScrollbars()
366 m_pVScroll->SetScrollHdl ( LINK( this, RichTextControlImpl, OnVScroll ) ); in ensureScrollbars()
367 m_pVScroll->Show(); in ensureScrollbars()
382 if ( m_pHScroll && m_pVScroll ) in ensureScrollbars()
416 long nScrollBarWidth = m_pVScroll ? rStyleSettings.GetScrollBarSize() : 0; in layoutWindow()
442 if ( m_pVScroll ) in layoutWindow()
443m_pVScroll->SetPosSizePixel( Point( aViewportPlaygroundPixel.Width(), 0 ), Size( nScrollBarWidth, … in layoutWindow()
457 if ( m_pVScroll ) in layoutWindow()
459 m_pVScroll->SetVisibleSize( aViewportPlaygroundLogic.Height() ); in layoutWindow()
464 m_pVScroll->SetLineSize( nFontHeight ); in layoutWindow()
466m_pVScroll->SetPageSize( ::std::max( nFontHeight, aViewportPlaygroundLogic.Height() - nFontHeight … in layoutWindow()
495 if ( m_pVScroll ) in updateScrollbars()
498 m_pVScroll->SetRange( Range( 0, nOverallTextHeight ) ); in updateScrollbars()
499 m_pVScroll->SetThumbPos( m_pView->GetVisArea().Top() ); in updateScrollbars()
581 m_pAntiImpl->HandleScrollCommand( _rEvent, m_pHScroll, m_pVScroll ); in HandleCommand()