Lines Matching refs:mpHorScrollBar
52 mpHorScrollBar = mpVerScrollBar = 0; in DBG_NAME()
88 if ( !mpHorScrollBar ) in ensureScrollBars()
90 mpHorScrollBar = new ScrollBar( GetWindow() , WB_HORZ ); in ensureScrollBars()
91 mpHorScrollBar->SetLineSize( 4 ); in ensureScrollBars()
92 mpHorScrollBar->SetPageSize( 15 ); in ensureScrollBars()
93 mpHorScrollBar->Show(); in ensureScrollBars()
94 mpHorScrollBar->SetScrollHdl( LINK( this, VCLXScroller, ScrollHdl ) ); in ensureScrollBars()
108 mpHorScrollBar->SetRangeMin( 0 ); in allocateArea()
109 mpHorScrollBar->SetRangeMax( SAL_MAX( maChildRequisition.Width - rArea.Width, 0 ) ); in allocateArea()
113 int thumbX = mpHorScrollBar->GetThumbPos(); in allocateArea()
116 int thumbHeight = mpHorScrollBar->GetSizePixel().getHeight(); in allocateArea()
118 mpHorScrollBar->SetPosSizePixel( rArea.X, rArea.Y + rArea.Height - thumbHeight - 2, in allocateArea()
135 assert( mpHorScrollBar && mpVerScrollBar ); in getMinimumSize()
138 int thumbHeight = mpHorScrollBar->GetSizePixel().getHeight(); in getMinimumSize()