Lines Matching refs:aHorSBar

57 	aHorSBar( pLBView, WB_DRAG | WB_HSCROLL ),  in SvImpLBox()
76 aHorSBar.SetScrollHdl( LINK( this, SvImpLBox, ScrollLeftRightHdl ) ); in SvImpLBox()
77 aHorSBar.SetEndScrollHdl( LINK( this, SvImpLBox, EndScrollHdl ) ); in SvImpLBox()
81 aHorSBar.SetRange( Range(0,0) ); in SvImpLBox()
82 aHorSBar.SetPageSize( 24 ); // Pixel in SvImpLBox()
83 aHorSBar.SetLineSize( 8 ); // Pixel in SvImpLBox()
85 nHorSBarHeight = (short)aHorSBar.GetSizePixel().Height(); in SvImpLBox()
286 aHorSBar.Hide(); in Clear()
287 aHorSBar.SetThumbPos( 0 ); in Clear()
291 aHorSBar.SetRange( aRange ); in Clear()
292 aHorSBar.SetSizePixel(Size(aOutputSize.Width(),nHorSBarHeight)); in Clear()
297 if( !aHorSBar.IsVisible() && !aVerSBar.IsVisible() ) in Clear()
753 long nPos = aHorSBar.GetThumbPos(); in IMPL_LINK_INLINE_END()
1219 aHorSBar.SetPosSizePixel( aHorPos, aHorSize ); in PositionScrollBars()
1323 nTemp = aHorSBar.GetThumbPos(); in AdjustScrollBars()
1324 aHorSBar.SetVisibleSize( aOSize.Width() ); in AdjustScrollBars()
1325 long nNewThumbPos = aHorSBar.GetThumbPos(); in AdjustScrollBars()
1326 Range aRange( aHorSBar.GetRange() ); in AdjustScrollBars()
1330 aHorSBar.SetRange( aRange ); in AdjustScrollBars()
1351 aHorSBar.Show(); in AdjustScrollBars()
1355 aHorSBar.Hide(); in AdjustScrollBars()
1383 if( aHorSBar.IsVisible()) in Resize()
1384 aHorSBar.Invalidate(); in Resize()
1467 if( !aHorSBar.IsVisible() ) in ShowVerSBar()
1472 aHorSBar.Update(); in ShowVerSBar()
1476 Range aRange( aHorSBar.GetRange() ); in ShowVerSBar()
1480 aHorSBar.SetRange( aRange ); in ShowVerSBar()
1491 if( aHorSBar.IsVisible() ) in ShowVerSBar()
2352 long nThumb = aHorSBar.GetThumbPos(); in KeyInput()
2353 nThumb += aHorSBar.GetLineSize(); in KeyInput()
2354 long nOldThumb = aHorSBar.GetThumbPos(); in KeyInput()
2355 aHorSBar.SetThumbPos( nThumb ); in KeyInput()
2357 nThumb -= aHorSBar.GetThumbPos(); in KeyInput()
2384 long nThumb = aHorSBar.GetThumbPos(); in KeyInput()
2385 nThumb -= aHorSBar.GetLineSize(); in KeyInput()
2386 long nOldThumb = aHorSBar.GetThumbPos(); in KeyInput()
2387 aHorSBar.SetThumbPos( nThumb ); in KeyInput()
2389 nThumb -= aHorSBar.GetThumbPos(); in KeyInput()
3128 && pView->HandleScrollCommand( rCEvt, &aHorSBar, &aVerSBar ) ) in Command()