CopperSpice API
1.9.2
|
The QRect class defines a rectangle in the plane using integer precision. More...
Public Methods | |
QRect () | |
QRect (const QPoint &topLeft, const QPoint &bottomRight) | |
QRect (const QPoint &topLeft, const QSize &size) | |
QRect (int left, int top, int width, int height) | |
void | adjust (int x1, int y1, int x2, int y2) |
QRect | adjusted (int x1, int y1, int x2, int y2) const |
int | bottom () const |
QPoint | bottomLeft () const |
QPoint | bottomRight () const |
QPoint | center () const |
bool | contains (const QPoint &point, bool proper=false) const |
bool | contains (const QRect &rect, bool proper=false) const |
bool | contains (int x, int y) const |
bool | contains (int x, int y, bool proper) const |
void | getCoords (int *x1, int *y1, int *x2, int *y2) const |
void | getRect (int *x, int *y, int *width, int *height) const |
int | height () const |
QRect | intersected (const QRect &rect) const |
bool | intersects (const QRect &rect) const |
bool | isEmpty () const |
bool | isNull () const |
bool | isValid () const |
int | left () const |
QRect | marginsAdded (const QMargins &margins) const |
QRect | marginsRemoved (const QMargins &margins) const |
void | moveBottom (int pos) |
void | moveBottomLeft (const QPoint &point) |
void | moveBottomRight (const QPoint &point) |
void | moveCenter (const QPoint &point) |
void | moveLeft (int pos) |
void | moveRight (int pos) |
void | moveTo (const QPoint &point) |
void | moveTo (int x, int y) |
void | moveTop (int pos) |
void | moveTopLeft (const QPoint &point) |
void | moveTopRight (const QPoint &point) |
QRect | normalized () const |
QRect | operator& (const QRect &rect) const |
QRect & | operator&= (const QRect &rect) |
QRect & | operator+= (const QMargins &margins) |
QRect & | operator-= (const QMargins &margins) |
QRect | operator| (const QRect &rect) const |
QRect & | operator|= (const QRect &rect) |
int | right () const |
void | setBottom (int pos) |
void | setBottomLeft (const QPoint &point) |
void | setBottomRight (const QPoint &point) |
void | setCoords (int x1, int y1, int x2, int y2) |
void | setHeight (int h) |
void | setLeft (int pos) |
void | setRect (int x, int y, int width, int height) |
void | setRight (int pos) |
void | setSize (const QSize &size) |
void | setTop (int pos) |
void | setTopLeft (const QPoint &point) |
void | setTopRight (const QPoint &point) |
void | setWidth (int w) |
void | setX (int xPos) |
void | setY (int yPos) |
QSize | size () const |
int | top () const |
QPoint | topLeft () const |
QPoint | topRight () const |
void | translate (const QPoint &offset) |
void | translate (int x, int y) |
QRect | translated (const QPoint &offset) const |
QRect | translated (int x, int y) const |
QRect | united (const QRect &rect) const |
int | width () const |
int | x () const |
int | y () const |
Friends | |
bool | operator!= (const QRect &rect1, const QRect &rect2) |
bool | operator== (const QRect &rect1, const QRect &rect2) |
Related Functions | |
These are not member functions | |
QDataStream & | operator<< (QDataStream &stream, const QRect &rect) |
QDataStream & | operator>> (QDataStream &stream, QRect &rect) |
The QRect class defines a rectangle in the plane using integer precision. A rectangle is normally expressed as an upper-left corner and a size. The size (width and height) of a QRect is always equivalent to the mathematical rectangle that forms the basis for its rendering.
A QRect can be constructed with a set of left, top, width and height integers, or from a QPoint and a QSize. The following code creates two identical rectangles.
There is a third constructor that creates a QRect using the top-left and bottom-right coordinates, but we recommend that you avoid using it. The rationale is that for historical reasons the values returned by the bottom() and right() functions deviate from the true bottom-right corner of the rectangle.
The QRect class provides a collection of functions that return the various rectangle coordinates, and enable manipulation of these. QRect also provide functions to move the rectangle relative to the various coordinates. In addition there is a moveTo() method which moves the rectangle, leaving its top left corner at the given coordinates. Alternatively, the translate() function moves the rectangle the given offset relative to the current position, and the translated() function returns a translated copy of this rectangle.
The size() method returns the rectangles dimensions as a QSize. The dimensions can also be retrieved separately using the width() and height() methods. To manipulate the dimensions use the setSize(), setWidth() or setHeight() methods. Alternatively, the size can be changed by applying either of the methods setting the rectangle coordinates using setBottom() or setRight().
The contains() method indicates whether a given point is inside the rectangle or not and the intersects() method returns true if the current rectangle intersects with some other rectangle. The QRect class also provides the intersected() method which returns the intersection rectangle. The united() method returns a rectangle which encloses the given rectangle and the current rectangle.
intersected() | united() |
The isEmpty() function returns true if left() > right() or top() > bottom(). An empty rectangle is not valid: The isValid() function returns true if left() <= right() and top() <= bottom(). A null rectangle (isNull() == true) on the other hand, has both width and height set to 0.
Due to the way QRect and QRectF are defined an empty QRect is defined in essentially the same way as QRectF.
Finally, QRect objects can be streamed as well as compared.
When using an anti-aliased painter the boundary line of a QRect will be rendered symmetrically on both sides of the mathematical rectangle's boundary line. When using an aliased painter (the default) other rules apply. When rendering with a one pixel wide pen the QRect's boundary line will be rendered to the right and below the mathematical rectangle's boundary line.
When rendering with a two pixels wide pen the boundary line will be split in the middle by the mathematical rectangle. This will be the case whenever the pen is set to an even number of pixels, while rendering with a pen with an odd number of pixels, the spare pixel will be rendered to the right and below the mathematical rectangle as in the one pixel case.
Logical representation | One pixel wide pen |
Two pixel wide pen | Three pixel wide pen |
The QRect class provides methods which return the rectangle coordinates. This allows the rectangle to be moved relative to its current position. For example, the method left() returns the x-coordinate of the rectangle's left edge and calling setLeft() modifies the coordinate of the left edge of the rectangle. Calling this method may change the width, but will not change the location for the right edge.
The method moveLeft() moves the entire rectangle horizontally, leaving the rectangle's size unchanged.
The values returned by the bottom() and right() methods do not match the true bottom-right corner of the rectangle. The right() method returns left() + width() - 1 and the bottom() method returns top() + height() - 1. The point returned by the bottomRight() method is located one unit up and to the left of the true bottom-right corner. The x and y coordinate of the topRight() and bottomLeft() methods, contain the same deviation from the true right and bottom edges.
You can use x() + width() and y() + height() to find the true bottom-right corner. Another solution is to use QRectF class which defines a rectangle using floating point. The QRectF::right() and QRectF::bottom() methods return the right and bottom coordinates.
To add offsets to the rectangle coordinates use the adjust() method. If you want a new rectangle offset from the original one, use adjusted().
QRect provides the getCoords() method which extracts the position of the rectangle's top-left and bottom-right corner and the getRect() method which returns the top-left corner width and height. Call setCoords() or setRect() to modify all four coordinates.
|
inline |
Constructs a null QRect object.
Constructs a rectangle with the given topLeft and bottomRight corners.
Constructs a rectangle with the given topLeft corner and the given size.
|
inline |
Constructs a rectangle with (left, top) as the top-left corner and the given width and height.
|
inline |
Adds x1, y1, x2 and y2 respectively to the existing coordinates of the rectangle.
|
inline |
Returns a new rectangle with x1, y1, x2 and y2 added respectively to the existing coordinates of this rectangle.
|
inline |
Returns the y-coordinate of the rectangle's bottom edge. This method returns top() + height() - 1. Use y() + height() to retrieve the actual y-coordinate.
|
inline |
|
inline |
|
inline |
Returns the center point of the rectangle.
bool QRect::contains | ( | const QPoint & | point, |
bool | proper = false |
||
) | const |
Returns true if the given point is inside or on the edge of the rectangle, otherwise returns false. If proper is true, this function only returns true if the given point is inside the rectangle and not on the edge.
bool QRect::contains | ( | const QRect & | rect, |
bool | proper = false |
||
) | const |
Returns true if the given rect is inside this rectangle. otherwise returns false. If proper is true, this method only returns true if the rect is entirely inside this rectangle (not on the edge).
|
inline |
Returns true if the point (x, y) is inside this rectangle, otherwise returns false.
|
inline |
Returns true if the point (x, y) is inside or on the edge of the rectangle, otherwise returns false. If proper is true, this function only returns true if the point is entirely inside the rectangle(not on the edge).
|
inline |
Extracts the position of the rectangle's top-left corner to x1 and y1, and the position of the bottom-right corner to x2 and y2.
|
inline |
Extracts the position of the rectangle's top-left corner to x and y, and its dimensions to width and height.
|
inline |
Returns the height of the rectangle.
|
inline |
Returns the intersection of this rectangle and the given rect. Calling a.intersected(b)
is equivalent to a & b
.
bool QRect::intersects | ( | const QRect & | rect | ) | const |
Returns true if this rectangle intersects with the given rect. This means there is at least one pixel that is within both rectangles. The intersection rectangle can be retrieved using intersected().
|
inline |
Returns true if the rectangle is empty, otherwise returns false. An empty rectangle has a left() > right() or top() > bottom(). An empty rectangle is not valid (i.e., isEmpty() == ! isValid()). Use the normalized() method to retrieve a rectangle where the corners are swapped.
|
inline |
|
inline |
Returns true if the rectangle is valid, otherwise returns false. A valid rectangle has a left() < right() and top() < bottom(). Non-trivial operations like intersections are not defined for invalid rectangles. A valid rectangle is not empty (i.e., isValid() == !isEmpty()).
|
inline |
Returns the x-coordinate of the rectangle's left edge. Equivalent to x().
|
inline |
Returns a new rectangle grown by margins.
|
inline |
Returns a new rectangle shrunk by margins
|
inline |
Moves the rectangle vertically, leaving the rectangle's bottom edge at the given pos coordinate. The rectangle's size is unchanged.
|
inline |
Moves the rectangle, leaving the bottom-left corner at the given point. The rectangle's size is unchanged.
|
inline |
Moves the rectangle, leaving the bottom-right corner at the given point. The rectangle's size is unchanged.
|
inline |
Moves the rectangle, leaving the center point at the given point. The rectangle's size is unchanged.
|
inline |
Moves the rectangle horizontally, leaving the rectangle's left edge at the given pos coordinate. The rectangle's size is unchanged.
|
inline |
Moves the rectangle horizontally, leaving the rectangle's right edge at the given pos coordinate. The rectangle's size is unchanged.
|
inline |
Moves the rectangle, leaving the top-left corner at the given point.
|
inline |
Moves the rectangle, leaving the top-left corner at the given position (x, y). The rectangle's size is unchanged.
|
inline |
Moves the rectangle vertically, leaving the rectangle's top edge at the given pos coordinate. The rectangle's size is unchanged.
|
inline |
Moves the rectangle, leaving the top-left corner at the given point. The rectangle's size is unchanged.
|
inline |
Moves the rectangle leaving the top-right corner at the given point. The rectangle's size is unchanged.
QRect QRect::normalized | ( | ) | const |
QRect QRect::operator& | ( | const QRect & | rect | ) | const |
Returns the intersection of this rectangle and the given rect. Returns an empty rectangle if there is no intersection.
|
inline |
Intersects this rectangle with the given rect.
|
inline |
Grows this rectangle by margins.
|
inline |
Shrinks this rectangle by margins.
QRect QRect::operator| | ( | const QRect & | rect | ) | const |
Returns the bounding rectangle of this rectangle and the given rect.
|
inline |
Unites this rectangle with the given rect.
|
inline |
Returns the x-coordinate of the rectangle's right edge. This method returns left() + width() - 1; use x() + width() to retrieve the actual x-coordinate.
|
inline |
Sets the bottom edge of the rectangle to the given pos coordinate. May change the height, but will never change the top edge of the rectangle.
|
inline |
Set the bottom-left corner of the rectangle to the given point. May change the size, but will never change the top-right corner of the rectangle.
|
inline |
Set the bottom-right corner of the rectangle to the given point. May change the size, but will never change the top-left corner of the rectangle.
|
inline |
Sets the coordinates of the rectangle's top-left corner to (x1, y1), and the coordinates of its bottom-right corner to (x2, y2).
|
inline |
|
inline |
Sets the left edge of the rectangle to the given pos coordinate. May change the width, but will never change the right edge of the rectangle. Equivalent to setX().
|
inline |
Sets the coordinates of the rectangle's top-left corner to (x, y), and its size to the given width and height.
|
inline |
Sets the right edge of the rectangle to the given pos coordinate. May change the width, but will never change the left edge of the rectangle.
|
inline |
Sets the size of the rectangle to the given size. The top-left corner is not moved.
|
inline |
|
inline |
Set the top-left corner of the rectangle to the given point. May change the size, but will never change the bottom-right corner of the rectangle.
|
inline |
Set the top-right corner of the rectangle to the given point. May change the size, but will never change the bottom-left corner of the rectangle.
|
inline |
|
inline |
Sets the left edge of the rectangle to the given xPos coordinate. May change the width, but will never change the right edge of the rectangle. Equivalent to setLeft().
|
inline |
Sets the top edge of the rectangle to the given yPos coordinate. May change the height, but will never change the bottom edge of the rectangle. Equivalent to setTop().
|
inline |
|
inline |
Returns the y-coordinate of the rectangle's top edge. Equivalent to y().
|
inline |
Returns the position of the rectangle's top-left corner.
|
inline |
|
inline |
Moves the rectangle offset.x() along the x axis and offset.y() along the y axis, relative to the current position.
|
inline |
Moves the rectangle x along the x axis and y along the y axis, relative to the current position. Positive values move the rectangle to the right and down.
|
inline |
Returns a copy of the rectangle that is translated offset.x() along the x axis and offset.y() along the y axis, relative to the current position.
|
inline |
Returns a copy of the rectangle that is translated x along the x axis and y along the y axis, relative to the current position. Positive values move the rectangle to the right and down.
|
inline |
|
inline |
Returns the width of the rectangle.
|
inline |
|
inline |
|
friend |
Returns true if the rectangles rect1 and rect2 are different, otherwise returns false.
|
related |
Writes the given rect to the stream. Returns a reference to the stream.
Refer to Serializing Data Types for additional information.
|
friend |
Returns true if the rectangles rect1 and rect2 are equal, otherwise returns false.
|
related |
Reads from the stream into the given rect. Returns a reference to the stream.
Refer to Serializing Data Types for additional information.