- class QRect¶
The
QRect
class defines a rectangle in the plane using integer precision. More…Synopsis¶
Methods¶
def
__init__()
def
__reduce__()
def
__repr__()
def
adjust()
def
adjusted()
def
bottom()
def
bottomLeft()
def
bottomRight()
def
center()
def
contains()
def
getCoords()
def
getRect()
def
height()
def
intersected()
def
intersects()
def
isEmpty()
def
isNull()
def
isValid()
def
left()
def
marginsAdded()
def
marginsRemoved()
def
moveBottom()
def
moveBottomLeft()
def
moveCenter()
def
moveLeft()
def
moveRight()
def
moveTo()
def
moveTop()
def
moveTopLeft()
def
moveTopRight()
def
normalized()
def
__ne__()
def
__and__()
def
__iand__()
def
__add__()
def
__iadd__()
def
__sub__()
def
__isub__()
def
__eq__()
def
__or__()
def
__ior__()
def
right()
def
setBottom()
def
setBottomLeft()
def
setBottomRight()
def
setCoords()
def
setHeight()
def
setLeft()
def
setRect()
def
setRight()
def
setSize()
def
setTop()
def
setTopLeft()
def
setTopRight()
def
setWidth()
def
setX()
def
setY()
def
size()
def
toRectF()
def
top()
def
topLeft()
def
topRight()
def
translate()
def
translated()
def
transposed()
def
united()
def
width()
def
x()
def
y()
Static functions¶
def
span()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
A rectangle is normally expressed as a top-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 aQPoint
and aQSize
. The following code creates two identical rectangles.r1 = QRect(100, 200, 11, 16) r2 = QRect(QPoint(100, 200), QSize(11, 16))
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 thebottom()
andright()
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 provides functions to move the rectangle relative to the various coordinates. In addition there is amoveTo()
function that moves the rectangle, leaving its top left corner at the given coordinates. Alternatively, thetranslate()
function moves the rectangle the given offset relative to the current position, and thetranslated()
function returns a translated copy of this rectangle.The
size()
function returns the rectangle’s dimensions as aQSize
. The dimensions can also be retrieved separately using thewidth()
andheight()
functions. To manipulate the dimensions use thesetSize()
,setWidth()
orsetHeight()
functions. Alternatively, the size can be changed by applying either of the functions setting the rectangle coordinates, for example,setBottom()
orsetRight()
.The
contains()
function tells whether a given point is inside the rectangle or not, and theintersects()
function returnstrue
if this rectangle intersects with a given rectangle. TheQRect
class also provides theintersected()
function which returns the intersection rectangle, and theunited()
function which returns the rectangle that encloses the given rectangle and this:The
isEmpty()
function returnstrue
ifleft()
>right()
ortop()
>bottom()
. Note that an empty rectangle is not valid: TheisValid()
function returnstrue
ifleft()
<=right()
andtop()
<=bottom()
. A null rectangle (isNull()
== true) on the other hand, has both width and height set to 0.Note that due to the way
QRect
andQRectF
are defined, an emptyQRect
is defined in essentially the same way asQRectF
.Finally,
QRect
objects can be streamed as well as compared.Rendering¶
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. But when using an aliased painter (the default) other rules apply.Then, 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
Coordinates¶
The
QRect
class provides a collection of functions that return the various rectangle coordinates, and enable manipulation of these.QRect
also provides functions to move the rectangle relative to the various coordinates.For example the
left()
,setLeft()
andmoveLeft()
functions as an example:left()
returns the x-coordinate of the rectangle’s left edge,setLeft()
sets the left edge of the rectangle to the given x coordinate (it may change the width, but will never change the rectangle’s right edge) andmoveLeft()
moves the entire rectangle horizontally, leaving the rectangle’s left edge at the given x coordinate and its size unchanged.Note that for historical reasons the values returned by the
bottom()
andright()
functions deviate from the true bottom-right corner of the rectangle: Theright()
function returns **left()
+width()
- 1 and thebottom()
function returns **top()
+height()
- 1. The same is the case for the point returned by thebottomRight()
convenience function. In addition, the x and y coordinate of thetopRight()
andbottomLeft()
functions, respectively, contain the same deviation from the true right and bottom edges.We recommend that you use
x()
+width()
andy()
+height()
to find the true bottom-right corner, and avoidright()
andbottom()
. Another solution is to useQRectF
: TheQRectF
class defines a rectangle in the plane using floating point accuracy for coordinates, and theright()
andbottom()
functions do return the right and bottom coordinates.It is also possible to add offsets to this rectangle’s coordinates using the
adjust()
function, as well as retrieve a new rectangle based on adjustments of the original one using theadjusted()
function. If either of the width and height is negative, use thenormalized()
function to retrieve a rectangle where the corners are swapped.In addition,
QRect
provides thegetCoords()
function which extracts the position of the rectangle’s top-left and bottom-right corner, and thegetRect()
function which extracts the rectangle’s top-left corner, width and height. Use thesetCoords()
andsetRect()
function to manipulate the rectangle’s coordinates and dimensions in one go.Constraints¶
QRect
is limited to the minimum and maximum values for theint
type. Operations on aQRect
that could potentially result in values outside this range will result in undefined behavior.- __init__()¶
Constructs a null rectangle.
See also
Constructs a rectangle with the given
topLeft
andbottomRight
corners, both included.If
bottomRight
is to higher and to the left oftopLeft
, the rectangle defined is instead non-inclusive of the corners.Constructs a rectangle with the given
topLeft
corner and the givensize
.See also
- __init__(left, top, width, height)
- Parameters:
left – int
top – int
width – int
height – int
Constructs a rectangle with (
x
,y
) as its top-left corner and the givenwidth
andheight
.See also
- __reduce__()¶
- Return type:
str
- __repr__()¶
- Return type:
str
- adjust(x1, y1, x2, y2)¶
- Parameters:
x1 – int
y1 – int
x2 – int
y2 – int
Adds
dx1
,dy1
,dx2
anddy2
respectively to the existing coordinates of the rectangle.See also
Returns a new rectangle with
dx1
,dy1
,dx2
anddy2
added respectively to the existing coordinates of this rectangle.See also
- bottom()¶
- Return type:
int
Returns the y-coordinate of the rectangle’s bottom edge.
Note that for historical reasons this function returns
top()
+height()
- 1; usey()
+height()
to retrieve the true y-coordinate.See also
Returns the position of the rectangle’s bottom-left corner. Note that for historical reasons this function returns
QPoint
(left()
,top()
+height()
- 1).See also
Returns the position of the rectangle’s bottom-right corner.
Note that for historical reasons this function returns
QPoint
(left()
+width()
-1,top()
+height()
- 1).See also
Returns the center point of the rectangle.
See also
Returns
true
if the givenpoint
is inside or on the edge of the rectangle, otherwise returnsfalse
. Ifproper
is true, this function only returnstrue
if the givenpoint
is inside the rectangle (i.e., not on the edge).See also
- contains(r[, proper=false])
- Parameters:
r –
QRect
proper – bool
- Return type:
bool
This is an overloaded function.
Returns
true
if the givenrectangle
is inside this rectangle. otherwise returnsfalse
. Ifproper
is true, this function only returnstrue
if therectangle
is entirely inside this rectangle (not on the edge).- contains(x, y)
- Parameters:
x – int
y – int
- Return type:
bool
This is an overloaded function.
Returns
true
if the point (x
,y
) is inside this rectangle, otherwise returnsfalse
.- contains(x, y, proper)
- Parameters:
x – int
y – int
proper – bool
- Return type:
bool
This is an overloaded function.
Returns
true
if the point (x
,y
) is inside or on the edge of the rectangle, otherwise returnsfalse
. Ifproper
is true, this function only returnstrue
if the point is entirely inside the rectangle(not on the edge).- getCoords()¶
- Return type:
PyObject
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``.
See also
- getRect()¶
- Return type:
PyObject
Extracts the position of the rectangle’s top-left corner to *``x`` and *``y``, and its dimensions to *``width`` and *``height``.
See also
- height()¶
- Return type:
int
Returns the height of the rectangle.
See also
Returns the intersection of this rectangle and the given
rectangle
. Note thatr.intersected(s)
is equivalent tor & s
.See also
intersects()
united()
operator&=()
Returns
true
if this rectangle intersects with the givenrectangle
(i.e., there is at least one pixel that is within both rectangles), otherwise returnsfalse
.The intersection rectangle can be retrieved using the
intersected()
function.See also
- isEmpty()¶
- Return type:
bool
Returns
true
if the rectangle is empty, otherwise returnsfalse
.An empty rectangle has a
left()
>right()
ortop()
>bottom()
. An empty rectangle is not valid (i.e., isEmpty() == !isValid()
).Use the
normalized()
function to retrieve a rectangle where the corners are swapped.See also
- isNull()¶
- Return type:
bool
Returns
true
if the rectangle is a null rectangle, otherwise returnsfalse
.A null rectangle has both the width and the height set to 0 (i.e.,
right()
==left()
- 1 andbottom()
==top()
- 1). A null rectangle is also empty, and hence is not valid.- isValid()¶
- Return type:
bool
Returns
true
if the rectangle is valid, otherwise returnsfalse
.A valid rectangle has a
left()
<=right()
andtop()
<=bottom()
. Note that non-trivial operations like intersections are not defined for invalid rectangles. A valid rectangle is not empty (i.e., isValid() == !isEmpty()
).See also
- left()¶
- Return type:
int
Returns the x-coordinate of the rectangle’s left edge. Equivalent to
x()
.See also
Returns a rectangle grown by the
margins
.See also
operator+=()
marginsRemoved()
operator-=()
Removes the
margins
from the rectangle, shrinking it.See also
marginsAdded()
operator+=()
operator-=()
- moveBottom(pos)¶
- Parameters:
pos – int
Moves the rectangle vertically, leaving the rectangle’s bottom edge at the given
y
coordinate. The rectangle’s size is unchanged.See also
Moves the rectangle, leaving the bottom-left corner at the given
position
. The rectangle’s size is unchanged.See also
Moves the rectangle, leaving the bottom-right corner at the given
position
. The rectangle’s size is unchanged.See also
Moves the rectangle, leaving the center point at the given
position
. The rectangle’s size is unchanged.See also
- moveLeft(pos)¶
- Parameters:
pos – int
Moves the rectangle horizontally, leaving the rectangle’s left edge at the given
x
coordinate. The rectangle’s size is unchanged.See also
- moveRight(pos)¶
- Parameters:
pos – int
Moves the rectangle horizontally, leaving the rectangle’s right edge at the given
x
coordinate. The rectangle’s size is unchanged.See also
Moves the rectangle, leaving the top-left corner at the given
position
.- moveTo(x, t)
- Parameters:
x – int
t – int
Moves the rectangle, leaving the top-left corner at the given position (
x
,y
). The rectangle’s size is unchanged.See also
- moveTop(pos)¶
- Parameters:
pos – int
Moves the rectangle vertically, leaving the rectangle’s top edge at the given
y
coordinate. The rectangle’s size is unchanged.See also
Moves the rectangle, leaving the top-left corner at the given
position
. The rectangle’s size is unchanged.See also
Moves the rectangle, leaving the top-right corner at the given
position
. The rectangle’s size is unchanged.See also
Returns a normalized rectangle; i.e., a rectangle that has a non-negative width and height.
If
width()
< 0 the function swaps the left and right corners, and it swaps the top and bottom corners ifheight()
< 0. The corners are at the same time changed from being non-inclusive to inclusive.Returns
true
if the rectangleslhs
andrhs
are different, otherwise returnsfalse
.- __ne__(rhs)
- Parameters:
rhs –
QRectF
- Return type:
bool
Returns the intersection of this rectangle and the given
rectangle
. Returns an empty rectangle if there is no intersection.See also
operator&=()
intersected()
Intersects this rectangle with the given
rectangle
.See also
intersected()
operator&()
This is an overloaded function.
Returns the
rectangle
grown by themargins
.Returns the
rectangle
grown by themargins
.Adds the
margins
to the rectangle, growing it.See also
marginsAdded()
marginsRemoved()
operator-=()
Returns the
lhs
rectangle shrunk by therhs
margins.Returns a rectangle shrunk by the
margins
.See also
marginsRemoved()
operator+=()
marginsAdded()
Returns
true
if the rectangleslhs
andrhs
are equal, otherwise returnsfalse
.- __eq__(rhs)
- Parameters:
rhs –
QRectF
- Return type:
bool
Returns the bounding rectangle of this rectangle and the given
rectangle
.See also
operator|=()
united()
Unites this rectangle with the given
rectangle
.See also
united()
operator|()
- right()¶
- Return type:
int
Returns the x-coordinate of the rectangle’s right edge.
Note that for historical reasons this function returns
left()
+width()
- 1; usex()
+width()
to retrieve the true x-coordinate.See also
- setBottom(pos)¶
- Parameters:
pos – int
Sets the bottom edge of the rectangle to the given
y
coordinate. May change the height, but will never change the top edge of the rectangle.See also
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.See also
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.See also
- setCoords(x1, y1, x2, y2)¶
- Parameters:
x1 – int
y1 – int
x2 – int
y2 – int
Sets the coordinates of the rectangle’s top-left corner to (
x1
,y1
), and the coordinates of its bottom-right corner to (x2
,y2
).See also
- setHeight(h)¶
- Parameters:
h – int
Sets the height of the rectangle to the given
height
. The bottom edge is changed, but not the top one.- setLeft(pos)¶
- Parameters:
pos – int
Sets the left edge of the rectangle to the given
x
coordinate. May change the width, but will never change the right edge of the rectangle.Equivalent to
setX()
.See also
- setRect(x, y, w, h)¶
- Parameters:
x – int
y – int
w – int
h – int
Sets the coordinates of the rectangle’s top-left corner to (
x
,y
), and its size to the givenwidth
andheight
.See also
- setRight(pos)¶
- Parameters:
pos – int
Sets the right edge of the rectangle to the given
x
coordinate. May change the width, but will never change the left edge of the rectangle.See also
Sets the size of the rectangle to the given
size
. The top-left corner is not moved.See also
- setTop(pos)¶
- Parameters:
pos – int
Sets the top edge of the rectangle to the given
y
coordinate. May change the height, but will never change the bottom edge of the rectangle.Equivalent to
setY()
.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.See also
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.See also
- setWidth(w)¶
- Parameters:
w – int
Sets the width of the rectangle to the given
width
. The right edge is changed, but not the left one.- setX(x)¶
- Parameters:
x – int
Sets the left edge of the rectangle to the given
x
coordinate. May change the width, but will never change the right edge of the rectangle.Equivalent to
setLeft()
.See also
- setY(y)¶
- Parameters:
y – int
Sets the top edge of the rectangle to the given
y
coordinate. May change the height, but will never change the bottom edge of the rectangle.Equivalent to
setTop()
.See also
Returns the size of the rectangle.
Returns a rectangle spanning the two points
p1
andp2
, including both and everything in between.Returns this rectangle as a rectangle with floating point accuracy.
Note
This function, like the
QRectF
(QRect
) constructor, preserves thesize()
of the rectangle, not itsbottomRight()
corner.See also
- top()¶
- Return type:
int
Returns the y-coordinate of the rectangle’s top edge. Equivalent to
y()
.See also
Returns the position of the rectangle’s top-left corner.
See also
Returns the position of the rectangle’s top-right corner.
Note that for historical reasons this function returns
QPoint
(left()
+width()
-1,top()
).See also
This is an overloaded function.
Moves the rectangle
offset
.x()
along the x axis andoffset
.y()
along the y axis, relative to the current position.- translate(dx, dy)
- Parameters:
dx – int
dy – int
Moves the rectangle
dx
along the x axis anddy
along the y axis, relative to the current position. Positive values move the rectangle to the right and down.See also
This is an overloaded function.
Returns a copy of the rectangle that is translated
offset
.x()
along the x axis andoffset
.y()
along the y axis, relative to the current position.- translated(dx, dy)
- Parameters:
dx – int
dy – int
- Return type:
Returns a copy of the rectangle that is translated
dx
along the x axis anddy
along the y axis, relative to the current position. Positive values move the rectangle to the right and down.See also
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
Returns a copy of the rectangle that has its width and height exchanged:
r = {15, 51, 42, 24} r = r.transposed() # r == {15, 51, 24, 42}
See also
Returns the bounding rectangle of this rectangle and the given
rectangle
.See also
- width()¶
- Return type:
int
Returns the width of the rectangle.
See also
- x()¶
- Return type:
int
Returns the x-coordinate of the rectangle’s left edge. Equivalent to
left()
.- y()¶
- Return type:
int
Returns the y-coordinate of the rectangle’s top edge. Equivalent to
top()
.