Lines Matching refs:nRight
389 long nRight; member in Rectangle
395 long nRight, long nBottom );
399 long Right() const { return nRight; } in Right()
404 long& Right() { return nRight; } in Right()
438 void SetEmpty() { nRight = nBottom = RECT_EMPTY; } in SetEmpty()
461 long getWidth() const { return nRight - nLeft; } in getWidth()
463 void setX( long n ) { nRight += n-nLeft; nLeft = n; } in setX()
465 void setWidth( long n ) { nRight = nLeft + n; } in setWidth()
472 nRight = nBottom = RECT_EMPTY; in Rectangle()
479 nRight = rRB.X(); in Rectangle()
488 nRight = _nRight; in Rectangle()
496 nRight = rSize.Width() ? nLeft+rSize.Width()-1 : RECT_EMPTY; in Rectangle()
502 return ((nRight == RECT_EMPTY) || (nBottom == RECT_EMPTY)); in IsEmpty()
512 return Point( (nRight == RECT_EMPTY) ? nLeft : nRight, nTop ); in TopRight()
522 return Point( (nRight == RECT_EMPTY) ? nLeft : nRight, in BottomRight()
531 return Point( Min( nLeft, nRight ) + Abs( (nRight - nLeft)/2 ), in TopCenter()
540 return Point( Min( nLeft, nRight ) + Abs( (nRight - nLeft)/2 ), in BottomCenter()
549 return Point( Min( nLeft, nRight ), nTop + (nBottom - nTop)/2 ); in LeftCenter()
557 return Point( Max( nLeft, nRight ), nTop + (nBottom - nTop)/2 ); in RightCenter()
565 return Point( nLeft+(nRight-nLeft)/2 , nTop+(nBottom-nTop)/2 ); in Center()
572 if ( nRight != RECT_EMPTY ) in Move()
573 nRight += nHorzMove; in Move()
586 swap = nRight; in Transpose()
587 nRight = nBottom; in Transpose()
594 if ( nRight != RECT_EMPTY ) in SetPos()
595 nRight += rPoint.X() - nLeft; in SetPos()
605 if ( nRight == RECT_EMPTY ) in GetWidth()
609 n = nRight - nLeft; in GetWidth()
657 (nRight == rRect.nRight ) && in operator ==()
665 (nRight != rRect.nRight ) || in operator !=()
673 if ( nRight != RECT_EMPTY ) in operator +=()
674 nRight += rPt.X(); in operator +=()
684 if ( nRight != RECT_EMPTY ) in operator -=()
685 nRight -= rPt.X(); in operator -=()
694 (rRect.nRight == RECT_EMPTY) ? RECT_EMPTY : rRect.nRight + rPt.X(), in operator +()
703 (rRect.nRight == RECT_EMPTY) ? RECT_EMPTY : rRect.nRight - rPt.X(), in operator -()