Lines Matching refs:rScroll
341 void ScTabView::SetScrollBar( ScrollBar& rScroll, long nRangeMax, long nVisible, long nPos, sal_Boo… in SetScrollBar() argument
352 rScroll.SetRange( Range( -nRangeMax, 0 ) ); in SetScrollBar()
353 rScroll.SetVisibleSize( nVisible ); in SetScrollBar()
354 rScroll.SetThumbPos( -nPos - nVisible ); in SetScrollBar()
358 rScroll.SetRange( Range( 0, nRangeMax ) ); in SetScrollBar()
359 rScroll.SetVisibleSize( nVisible ); in SetScrollBar()
360 rScroll.SetThumbPos( nPos ); in SetScrollBar()
365 long ScTabView::GetScrollBarPos( ScrollBar& rScroll, sal_Bool bLayoutRTL ) in GetScrollBarPos() argument
368 return -rScroll.GetThumbPos() - rScroll.GetVisibleSize(); in GetScrollBarPos()
370 return rScroll.GetThumbPos(); in GetScrollBarPos()
375 long lcl_UpdateBar( ScrollBar& rScroll, SCCOLROW nSize ) // Size = (komplette) Zellen in lcl_UpdateBar() argument
380 nOldPos = rScroll.GetThumbPos(); in lcl_UpdateBar()
381 rScroll.SetPageSize( static_cast<long>(nSize) ); in lcl_UpdateBar()
382 nNewPos = rScroll.GetThumbPos(); in lcl_UpdateBar()
384 rScroll.SetPageSize( 1 ); // immer moeglich ! in lcl_UpdateBar()