Lines Matching refs:rOff
560 sal_Bool SwView::GetPageScrollUpOffset( SwTwips &rOff ) const in GetPageScrollUpOffset()
565 rOff = -(aVisArea.GetHeight() - nYScrl); in GetPageScrollUpOffset()
567 if( aVisArea.Top() - rOff < 0 ) in GetPageScrollUpOffset()
568 rOff = rOff - aVisArea.Top(); in GetPageScrollUpOffset()
570 rOff += nYScrl; in GetPageScrollUpOffset()
575 sal_Bool SwView::GetPageScrollDownOffset( SwTwips &rOff ) const in GetPageScrollDownOffset()
581 rOff = aVisArea.GetHeight() - nYScrl; in GetPageScrollDownOffset()
583 if ( aVisArea.Top() + rOff > aDocSz.Height() ) in GetPageScrollDownOffset()
584 rOff = aDocSz.Height() - aVisArea.Bottom(); in GetPageScrollDownOffset()
587 rOff -= nYScrl; in GetPageScrollDownOffset()
588 return rOff > 0; in GetPageScrollDownOffset()