Lines Matching refs:rPos

1102 sal_Bool ValueSet::ImplScroll( const Point& rPos )  in ImplScroll()  argument
1112 if ( !mbScroll || (rPos.X() < 0) || (rPos.X() > aOutSize.Width()-nScrBarWidth) ) in ImplScroll()
1122 if ( (mnFirstLine > 0) && (rPos.Y() >= 0) ) in ImplScroll()
1125 if ( (rPos.Y() >= nTopPos) && (rPos.Y() <= nTopPos+nScrollOffset) ) in ImplScroll()
1129 (mnFirstLine < (sal_uInt16)(mnLines-mnVisLines)) && (rPos.Y() < aOutSize.Height()) ) in ImplScroll()
1132 if ( (rPos.Y() >= nBottomPos-nScrollOffset) && (rPos.Y() <= nBottomPos) ) in ImplScroll()
1148 sal_uInt16 ValueSet::ImplGetItem( const Point& rPos, sal_Bool bMove ) const in ImplGetItem() argument
1152 if ( mpNoneItem->maRect.IsInside( rPos ) ) in ImplGetItem()
1163 if ( pItem->maRect.IsInside( rPos ) ) in ImplGetItem()
1165 if ( aWinRect.IsInside( rPos ) ) in ImplGetItem()
1177 if ( aWinRect.IsInside( rPos ) ) in ImplGetItem()
1290 void ValueSet::ImplTracking( const Point& rPos, sal_Bool bRepeat ) in ImplTracking() argument
1294 if ( ImplScroll( rPos ) ) in ImplTracking()
1305 ValueSetItem* pItem = ImplGetItem( ImplGetItem( rPos ) ); in ImplTracking()
1324 void ValueSet::ImplEndTracking( const Point& rPos, sal_Bool bCancel ) in ImplEndTracking() argument
1332 pItem = ImplGetItem( ImplGetItem( rPos ) ); in ImplEndTracking()
2080 sal_uInt16 ValueSet::GetItemId( const Point& rPos ) const in GetItemId()
2082 sal_uInt16 nItemPos = ImplGetItem( rPos ); in GetItemId()
2714 sal_uInt16 ValueSet::ShowDropPos( const Point& rPos ) in ShowDropPos() argument
2719 ImplScroll( rPos ); in ShowDropPos()
2722 sal_uInt16 nPos = ImplGetItem( rPos, sal_True ); in ShowDropPos()
2730 if ( (rPos.X() >= 0) && (rPos.X() < aOutSize.Width()) && in ShowDropPos()
2731 (rPos.Y() >= 0) && (rPos.Y() < aOutSize.Height()) ) in ShowDropPos()
2738 if ( rPos.X() > aRect.Left()+aRect.GetWidth()-(aRect.GetWidth()/4) ) in ShowDropPos()