Lines Matching refs:rPosPixel
1477 const Point& rPosPixel = rMEvt.GetPosPixel(); in MouseMove() local
1485 if( rPosPixel.X() < 0 || rPosPixel.Y() < 0 ) in MouseMove()
1488 if( rPosPixel.X() > rSize.Width() || rPosPixel.Y() > rSize.Height()) in MouseMove()
3904 void SvImpIconView::CalcScrollOffsets( const Point& rPosPixel, in CalcScrollOffsets() argument
3916 if ( rPosPixel.X() < nBorderWidth ) in CalcScrollOffsets()
3921 nPixelToScrollX = rPosPixel.X()- nBorderWidth; in CalcScrollOffsets()
3923 else if ( rPosPixel.X() > aWndSize.Width() - nBorderWidth ) in CalcScrollOffsets()
3928 nPixelToScrollX = rPosPixel.X() - (aWndSize.Width() - nBorderWidth); in CalcScrollOffsets()
3930 if ( rPosPixel.Y() < nBorderWidth ) in CalcScrollOffsets()
3935 nPixelToScrollY = rPosPixel.Y() - nBorderWidth; in CalcScrollOffsets()
3937 else if ( rPosPixel.Y() > aWndSize.Height() - nBorderWidth ) in CalcScrollOffsets()
3942 nPixelToScrollY = rPosPixel.Y() - (aWndSize.Height() - nBorderWidth); in CalcScrollOffsets()