Home | History | Annotate | Download | only in fxcrt

Lines Matching defs:Right

269     baseType	right() const

304 void Inflate(baseType left, baseType top, baseType right, baseType bottom)
308 FXT_RECT::width += left + right;
326 void Deflate(baseType left, baseType top, baseType right, baseType bottom)
330 FXT_RECT::width -= left + right;
359 return rt.left >= left && rt.right() <= right() && rt.top >= top && rt.bottom() <= bottom();
442 baseType r = right(), b = bottom();
464 baseType r = right(), b = bottom();
468 if (r < rt.right()) {
469 r = rt.right();
482 baseType r = right(), b = bottom();
486 if (r > rt.right()) {
487 r = rt.right();
534 int right;
544 right = right1;
550 return right - left;
560 return right <= left || bottom <= top;
576 return left == src.left && right == src.right && top == src.top && bottom == src.bottom;
582 right += dx;
589 return other_rect.left >= left && other_rect.right <= right && other_rect.top >= top && other_rect.bottom <= bottom;
594 return x >= left && x < right && y >= top && y < bottom;
603 FX_SHORT Right;
613 left = right = bottom = top = 0;
620 right = right1;
628 right = pArray[2];
636 return left >= right || bottom >= top;
643 left = right = bottom = top = 0;
666 left = right = x;
674 return right - left;
686 right += x;
691 void Inflate(FX_FLOAT left, FX_FLOAT bottom, FX_FLOAT right, FX_FLOAT top)
696 this->right += right;
702 Inflate(rt.left, rt.bottom, rt.right, rt.top);
709 right -= x;
714 void Deflate(FX_FLOAT left, FX_FLOAT bottom, FX_FLOAT right, FX_FLOAT top)
719 this->right -= right;
725 Deflate(rt.left, rt.bottom, rt.right, rt.top);
731 right += e;
740 FX_FLOAT right;
855 void TransformRect(FX_FLOAT& left, FX_FLOAT& right, FX_FLOAT& top, FX_FLOAT& bottom) const;
859 TransformRect(rect.left, rect.right, rect.top, rect.bottom);