Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtCore\reentrant More...
#include <qrect.h>
Public Member Functions | |
constexpr | QRectF () noexcept |
Constructs a null rectangle. | |
constexpr | QRectF (const QPointF &topleft, const QSizeF &size) noexcept |
Constructs a rectangle with the given topLeft corner and the given size. | |
constexpr | QRectF (const QPointF &topleft, const QPointF &bottomRight) noexcept |
constexpr | QRectF (qreal left, qreal top, qreal width, qreal height) noexcept |
Constructs a rectangle with (x, y) as its top-left corner and the given width and height. | |
constexpr | QRectF (const QRect &rect) noexcept |
Constructs a QRectF rectangle from the given QRect rectangle. | |
constexpr bool | isNull () const noexcept |
Returns true if the rectangle is a null rectangle, otherwise returns false . | |
constexpr bool | isEmpty () const noexcept |
Returns true if the rectangle is empty, otherwise returns false . | |
constexpr bool | isValid () const noexcept |
Returns true if the rectangle is valid, otherwise returns false . | |
QRectF | normalized () const noexcept |
Returns a normalized rectangle; i.e., a rectangle that has a non-negative width and height. | |
constexpr qreal | left () const noexcept |
Returns the x-coordinate of the rectangle's left edge. | |
constexpr qreal | top () const noexcept |
Returns the y-coordinate of the rectangle's top edge. | |
constexpr qreal | right () const noexcept |
Returns the x-coordinate of the rectangle's right edge. | |
constexpr qreal | bottom () const noexcept |
Returns the y-coordinate of the rectangle's bottom edge. | |
constexpr qreal | x () const noexcept |
Returns the x-coordinate of the rectangle's left edge. | |
constexpr qreal | y () const noexcept |
Returns the y-coordinate of the rectangle's top edge. | |
constexpr void | setLeft (qreal pos) noexcept |
Sets the left edge of the rectangle to the given finite x coordinate. | |
constexpr void | setTop (qreal pos) noexcept |
Sets the top edge of the rectangle to the given finite y coordinate. | |
constexpr void | setRight (qreal pos) noexcept |
Sets the right edge of the rectangle to the given finite x coordinate. | |
constexpr void | setBottom (qreal pos) noexcept |
Sets the bottom edge of the rectangle to the given finite y coordinate. | |
constexpr void | setX (qreal pos) noexcept |
Sets the left edge of the rectangle to the given finite x coordinate. | |
constexpr void | setY (qreal pos) noexcept |
Sets the top edge of the rectangle to the given finite y coordinate. | |
constexpr QPointF | topLeft () const noexcept |
Returns the position of the rectangle's top-left corner. | |
constexpr QPointF | bottomRight () const noexcept |
Returns the position of the rectangle's bottom-right corner. | |
constexpr QPointF | topRight () const noexcept |
Returns the position of the rectangle's top-right corner. | |
constexpr QPointF | bottomLeft () const noexcept |
Returns the position of the rectangle's bottom-left corner. | |
constexpr QPointF | center () const noexcept |
Returns the center point of the rectangle. | |
constexpr void | setTopLeft (const QPointF &p) noexcept |
Set the top-left corner of the rectangle to the given position. | |
constexpr void | setBottomRight (const QPointF &p) noexcept |
Set the bottom-right corner of the rectangle to the given position. | |
constexpr void | setTopRight (const QPointF &p) noexcept |
Set the top-right corner of the rectangle to the given position. | |
constexpr void | setBottomLeft (const QPointF &p) noexcept |
Set the bottom-left corner of the rectangle to the given position. | |
constexpr void | moveLeft (qreal pos) noexcept |
Moves the rectangle horizontally, leaving the rectangle's left edge at the given finite x coordinate. | |
constexpr void | moveTop (qreal pos) noexcept |
Moves the rectangle vertically, leaving the rectangle's top line at the given finite y coordinate. | |
constexpr void | moveRight (qreal pos) noexcept |
Moves the rectangle horizontally, leaving the rectangle's right edge at the given finite x coordinate. | |
constexpr void | moveBottom (qreal pos) noexcept |
Moves the rectangle vertically, leaving the rectangle's bottom edge at the given finite y coordinate. | |
constexpr void | moveTopLeft (const QPointF &p) noexcept |
Moves the rectangle, leaving the top-left corner at the given position. | |
constexpr void | moveBottomRight (const QPointF &p) noexcept |
Moves the rectangle, leaving the bottom-right corner at the given position. | |
constexpr void | moveTopRight (const QPointF &p) noexcept |
Moves the rectangle, leaving the top-right corner at the given position. | |
constexpr void | moveBottomLeft (const QPointF &p) noexcept |
Moves the rectangle, leaving the bottom-left corner at the given position. | |
constexpr void | moveCenter (const QPointF &p) noexcept |
Moves the rectangle, leaving the center point at the given position. | |
constexpr void | translate (qreal dx, qreal dy) noexcept |
Moves the rectangle dx along the x-axis and dy along the y-axis, relative to the current position. | |
constexpr void | translate (const QPointF &p) noexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Moves the rectangle {offset}. | |
constexpr QRectF | translated (qreal dx, qreal dy) const noexcept |
Returns a copy of the rectangle that is translated dx along the x axis and dy along the y axis, relative to the current position. | |
constexpr QRectF | translated (const QPointF &p) const noexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns a copy of the rectangle that is translated {offset}. | |
constexpr QRectF | transposed () const noexcept |
constexpr void | moveTo (qreal x, qreal y) noexcept |
Moves the rectangle, leaving the top-left corner at the given position (x, y). | |
constexpr void | moveTo (const QPointF &p) noexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Moves the rectangle, leaving the top-left corner at the given position. | |
constexpr void | setRect (qreal x, qreal y, qreal w, qreal h) noexcept |
Sets the coordinates of the rectangle's top-left corner to (x, y), and its size to the given width and height. | |
constexpr void | getRect (qreal *x, qreal *y, qreal *w, qreal *h) const |
Extracts the position of the rectangle's top-left corner to *x and y, and its dimensions to *width and *height. | |
constexpr void | setCoords (qreal x1, qreal y1, qreal x2, qreal y2) noexcept |
Sets the coordinates of the rectangle's top-left corner to (x1, y1), and the coordinates of its bottom-right corner to (x2, y2). | |
constexpr void | getCoords (qreal *x1, qreal *y1, qreal *x2, qreal *y2) const |
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. | |
constexpr void | adjust (qreal x1, qreal y1, qreal x2, qreal y2) noexcept |
Adds dx1, dy1, dx2 and dy2 respectively to the existing coordinates of the rectangle. | |
constexpr QRectF | adjusted (qreal x1, qreal y1, qreal x2, qreal y2) const noexcept |
Returns a new rectangle with dx1, dy1, dx2 and dy2 added respectively to the existing coordinates of this rectangle. | |
constexpr QSizeF | size () const noexcept |
Returns the size of the rectangle. | |
constexpr qreal | width () const noexcept |
Returns the width of the rectangle. | |
constexpr qreal | height () const noexcept |
Returns the height of the rectangle. | |
constexpr void | setWidth (qreal w) noexcept |
Sets the width of the rectangle to the given finite width. | |
constexpr void | setHeight (qreal h) noexcept |
Sets the height of the rectangle to the given finite height. | |
constexpr void | setSize (const QSizeF &s) noexcept |
Sets the size of the rectangle to the given finite size. | |
QRectF | operator| (const QRectF &r) const noexcept |
Returns the bounding rectangle of this rectangle and the given rectangle. | |
QRectF | operator& (const QRectF &r) const noexcept |
Returns the intersection of this rectangle and the given rectangle. | |
QRectF & | operator|= (const QRectF &r) noexcept |
Unites this rectangle with the given rectangle. | |
QRectF & | operator&= (const QRectF &r) noexcept |
Intersects this rectangle with the given rectangle. | |
bool | contains (const QRectF &r) const noexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns true if the given rectangle is inside this rectangle; otherwise returns false . | |
bool | contains (const QPointF &p) const noexcept |
Returns true if the given point is inside or on the edge of the rectangle; otherwise returns false . | |
bool | contains (qreal x, qreal y) const noexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns true if the point (x, y) is inside or on the edge of the rectangle; otherwise returns false . | |
QRectF | united (const QRectF &other) const noexcept |
QRectF | intersected (const QRectF &other) const noexcept |
bool | intersects (const QRectF &r) const noexcept |
Returns true if this rectangle intersects with the given rectangle (i.e. | |
constexpr QRectF | marginsAdded (const QMarginsF &margins) const noexcept |
constexpr QRectF | marginsRemoved (const QMarginsF &margins) const noexcept |
constexpr QRectF & | operator+= (const QMarginsF &margins) noexcept |
constexpr QRectF & | operator-= (const QMarginsF &margins) noexcept |
constexpr QRect | toRect () const noexcept |
Returns a QRect based on the values of this rectangle. | |
QRect | toAlignedRect () const noexcept |
Friends | |
constexpr bool | comparesEqual (const QRectF &r1, const QRectF &r2) noexcept |
constexpr bool | comparesEqual (const QRectF &r1, const QRect &r2) noexcept |
constexpr bool | qFuzzyCompare (const QRectF &lhs, const QRectF &rhs) noexcept |
constexpr bool | qFuzzyIsNull (const QRectF &rect) noexcept |
Related Symbols | |
(Note that these are not member symbols.) | |
QRectF | operator+ (const QRectF &lhs, const QMarginsF &rhs) |
QRectF | operator- (const QRectF &lhs, const QMarginsF &rhs) |
QRectF | operator+ (const QMarginsF &lhs, const QRectF &rhs) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
QDataStream & | operator<< (QDataStream &stream, const QRectF &rectangle) |
Writes the rectangle to the stream, and returns a reference to the stream. | |
QDataStream & | operator>> (QDataStream &stream, QRectF &rectangle) |
Reads a rectangle from the stream, and returns a reference to the stream. | |
\inmodule QtCore
\reentrant
\compares equality \compareswith equality QRect \endcompareswith
The QRectF class defines a finite rectangle in the plane using floating point precision.
A rectangle is normally expressed as a top-left corner and a size. The size (width and height) of a QRectF is always equivalent to the mathematical rectangle that forms the basis for its rendering.
A QRectF can be constructed with a set of left, top, width and height coordinates, or from a QPointF and a QSizeF. The following code creates two identical rectangles.
There is also a third constructor creating a QRectF from a QRect, and a corresponding toRect() function that returns a QRect object based on the values of this rectangle (note that the coordinates in the returned rectangle are rounded to the nearest integer).
The QRectF class provides a collection of functions that return the various rectangle coordinates, and enable manipulation of these. QRectF also provides functions to move the rectangle relative to the various coordinates. In addition there is a moveTo() function that 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() function returns the rectangle's dimensions as a QSizeF. The dimensions can also be retrieved separately using the width() and height() functions. To manipulate the dimensions use the setSize(), setWidth() or setHeight() functions. Alternatively, the size can be changed by applying either of the functions setting the rectangle coordinates, for example, setBottom() or setRight().
The contains() function tells whether a given point is inside the rectangle or not, and the intersects() function returns true
if this rectangle intersects with a given rectangle (otherwise false). The QRectF class also provides the intersected() function which returns the intersection rectangle, and the united() function which returns the rectangle that encloses the given rectangle and this:
\table \row
The isEmpty() function returns true
if the rectangle's width or height is less than, or equal to, 0. Note that an empty rectangle is not valid: The isValid() function returns true
if both width and height is larger than 0. A null rectangle (isNull() == true) on the other hand, has both width and height set to 0.
Note that due to the way QRect and QRectF are defined, an empty QRectF is defined in essentially the same way as QRect.
Finally, QRectF objects can be streamed as well as compared.
|
inlineconstexprnoexcept |
Constructs a rectangle with the given topLeft corner and the given size.
Constructs a rectangle with the given topLeft and bottomRight corners.
|
inlineconstexprnoexcept |
Constructs a QRectF rectangle from the given QRect rectangle.
Adds dx1, dy1, dx2 and dy2 respectively to the existing coordinates of the rectangle.
All parameters must be finite.
|
inlineconstexprnoexcept |
Returns the y-coordinate of the rectangle's bottom edge.
|
inlineconstexprnoexcept |
Returns the position of the rectangle's bottom-left corner.
|
inlineconstexprnoexcept |
Returns the position of the rectangle's bottom-right corner.
|
inlineconstexprnoexcept |
Returns the center point of the rectangle.
|
noexcept |
Returns true
if the given point is inside or on the edge of the rectangle; otherwise returns false
.
|
noexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns true
if the given rectangle is inside this rectangle; otherwise returns false
.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns true
if the point (x, y) is inside or on the edge of the rectangle; otherwise returns false
.
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.
Extracts the position of the rectangle's top-left corner to *x and y, and its dimensions to *width and *height.
|
inlineconstexprnoexcept |
Returns the height of the rectangle.
Returns the intersection of this rectangle and the given rectangle. Note that {r.intersected(s)}
is equivalent to {r
& s}.
|
noexcept |
Returns true
if this rectangle intersects with the given rectangle (i.e.
there is a non-empty area of overlap between them), otherwise returns false
.
The intersection rectangle can be retrieved using the intersected() function.
|
inlineconstexprnoexcept |
Returns true
if the rectangle is empty, otherwise returns false
.
An empty rectangle has width() <= 0 or height() <= 0. An empty rectangle is not valid (i.e., isEmpty() == !isValid()).
Use the normalized() function to retrieve a rectangle where the corners are swapped.
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
Returns true
if the rectangle is valid, otherwise returns false
.
A valid rectangle has a width() > 0 and height() > 0. Note that non-trivial operations like intersections are not defined for invalid rectangles. A valid rectangle is not empty (i.e., isValid() == !isEmpty()).
|
inlineconstexprnoexcept |
Returns the x-coordinate of the rectangle's left edge.
Equivalent to x().
Definition at line 497 of file qrect.h.
Referenced by testing.tools.safetynet_image.ImageLocations::Left().
Returns a rectangle grown by the margins.
Removes the margins from the rectangle, shrinking it.
Moves the rectangle vertically, leaving the rectangle's bottom edge at the given finite y coordinate.
The rectangle's size is unchanged.
Moves the rectangle, leaving the bottom-left corner at the given position.
The rectangle's size is unchanged.
Moves the rectangle, leaving the bottom-right corner at the given position.
The rectangle's size is unchanged.
Moves the rectangle horizontally, leaving the rectangle's left edge at the given finite x coordinate.
The rectangle's size is unchanged.
Moves the rectangle horizontally, leaving the rectangle's right edge at the given finite x coordinate.
The rectangle's size is unchanged.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Moves the rectangle, leaving the top-left corner at the given position.
Moves the rectangle, leaving the top-left corner at the given position (x, y).
The rectangle's size is unchanged. Both parameters must be finite.
Moves the rectangle vertically, leaving the rectangle's top line at the given finite y coordinate.
The rectangle's size is unchanged.
Moves the rectangle, leaving the top-left corner at the given position.
The rectangle's size is unchanged.
Moves the rectangle, leaving the top-right corner at the given position.
The rectangle's size is unchanged.
|
nodiscardnoexcept |
Returns the intersection of this rectangle and the given rectangle.
Returns an empty rectangle if there is no intersection.
Intersects this rectangle with the given rectangle.
Adds the margins to the rectangle, growing it.
Returns a rectangle shrunk by the margins.
Returns the bounding rectangle of this rectangle and the given rectangle.
Unites this rectangle with the given rectangle.
|
inlineconstexprnoexcept |
Returns the x-coordinate of the rectangle's right edge.
Definition at line 499 of file qrect.h.
Referenced by testing.tools.safetynet_image.ImageLocations::Right().
Sets the bottom edge of the rectangle to the given finite y coordinate.
May change the height, but will never change the top edge of the rectangle.
Set the bottom-left corner of the rectangle to the given position.
May change the size, but will never change the top-right corner of the rectangle.
Set the bottom-right corner of the rectangle to the given position.
May change the size, but will never change the top-left corner of the rectangle.
Sets the coordinates of the rectangle's top-left corner to (x1, y1), and the coordinates of its bottom-right corner to (x2, y2).
All parameters must be finite.
Sets the left edge of the rectangle to the given finite x coordinate.
May change the width, but will never change the right edge of the rectangle.
Equivalent to setX().
Sets the coordinates of the rectangle's top-left corner to (x, y), and its size to the given width and height.
All parameters must be finite.
Sets the right edge of the rectangle to the given finite x coordinate.
May change the width, but will never change the left edge of the rectangle.
Sets the size of the rectangle to the given finite size.
The top-left corner is not moved.
Set the top-left corner of the rectangle to the given position.
May change the size, but will never change the bottom-right corner of the rectangle.
Set the top-right corner of the rectangle to the given position.
May change the size, but will never change the bottom-left corner of the rectangle.
|
inlineconstexprnoexcept |
|
nodiscardnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
Returns the position of the rectangle's top-left corner.
|
inlineconstexprnoexcept |
Returns the position of the rectangle's top-right corner.
|
inlinenodiscardconstexprnoexcept |
Returns a QRect based on the values of this rectangle.
Note that the coordinates in the returned rectangle are rounded to the nearest integer.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Moves the rectangle {offset}.
\l{QPointF::x()}{x()} along the x axis and {offset}.\l{QPointF::y()}{y()} along the y axis, relative to the current position.
Moves the rectangle dx along the x-axis and dy along the y-axis, relative to the current position.
Positive values move the rectangle to the right and downwards. Both parameters must be finite.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns a copy of the rectangle that is translated {offset}.
\l{QPointF::x()}{x()} along the x axis and {offset}.\l{QPointF::y()}{y()} along the y axis, relative to the current position.
Returns a copy of the rectangle that is translated dx along the x axis and dy along the y axis, relative to the current position.
Positive values move the rectangle to the right and down. Both parameters must be finite.
|
inlinenodiscardconstexprnoexcept |
Returns a copy of the rectangle that has its width and height exchanged:
Returns the bounding rectangle of this rectangle and the given rectangle.
|
inlineconstexprnoexcept |
Returns the width of the rectangle.
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Returns the lhs rectangle grown by the rhs margins.
|
related |
|
related |
|
friend |