Lines Matching refs:aRectSize

897 	nX = (sal_uInt16) ( aPt.X() * nLines / aRectSize.Width() );  in PointToIndex()
898 nY = (sal_uInt16) ( aPt.Y() * nLines / aRectSize.Height() ); in PointToIndex()
910 aPtTl.Y() = aRectSize.Height() * nYIndex / nLines + 1; in IndexToPoint()
911 aPtTl.X() = aRectSize.Width() * nXIndex / nLines + 1; in IndexToPoint()
924 nX = (sal_uInt16) ( aPt.X() * nLines / aRectSize.Width() ); in ShowPosition()
925 nY = (sal_uInt16) ( aPt.Y() * nLines / aRectSize.Height() ); in ShowPosition()
933 Invalidate(Rectangle(Point(0,0),aRectSize)); in ShowPosition()
949 aRectSize = GetOutputSize(); in SvxPixelCtl()
1043 nTmp = (sal_uInt16) ( aRectSize.Height() * i / nLines ); in Paint()
1044 DrawLine( Point( 0, nTmp ), Point( aRectSize.Width(), nTmp ) ); in Paint()
1046 nTmp = (sal_uInt16) ( aRectSize.Width() * i / nLines ); in Paint()
1047 DrawLine( Point( nTmp, 0 ), Point( nTmp, aRectSize.Height() ) ); in Paint()
1056 aPtTl.Y() = aRectSize.Height() * i / nLines + 1; in Paint()
1057 aPtBr.Y() = aRectSize.Height() * (i + 1) / nLines - 1; in Paint()
1061 aPtTl.X() = aRectSize.Width() * j / nLines + 1; in Paint()
1062 aPtBr.X() = aRectSize.Width() * (j + 1) / nLines - 1; in Paint()
1083 DrawLine( Point( 0, 0 ), Point( aRectSize.Width(), aRectSize.Height() ) ); in Paint()
1084 DrawLine( Point( 0, aRectSize.Height() ), Point( aRectSize.Width(), 0 ) ); in Paint()
1094 nLeft = aRectSize.Width() * j / nLines + 1; in implCalFocusRect()
1095 nRight = aRectSize.Width() * (j + 1) / nLines - 1; in implCalFocusRect()
1096 nTop = aRectSize.Height() * i / nLines + 1; in implCalFocusRect()
1097 nBottom = aRectSize.Height() * (i + 1) / nLines - 1; in implCalFocusRect()
1110 Point pRepaintPoint( aRectSize.Width() *( aFocusPosition.getX() - 1)/ nLines - 1, in KeyInput()
1111 aRectSize.Height() *( aFocusPosition.getY() - 1)/ nLines -1 in KeyInput()
1113 Size mRepaintSize( aRectSize.Width() *3/ nLines + 2,aRectSize.Height() *3/ nLines + 2); in KeyInput()