内容表

上一话题

QReadWriteLock

下一话题

QRectF

QRect

QRect class defines a rectangle in the plane using integer precision. 更多

Inheritance diagram of PySide2.QtCore.QRect

概要

函数

详细描述

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 a QPoint QSize 。以下代码创建 2 个恒等矩形。

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 the bottom() and right() functions deviate from the true bottom-right corner of the rectangle.

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 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.

size() function returns the rectange’s dimensions as a QSize . 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() .

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. The QRect 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:

qrect-intersect1

qrect-unite2

intersected()

united()

isEmpty() function returns true if left() > right() or top() > bottom() . Note that 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.

Note that due to the way QRect and QRectF are defined, an empty QRect is defined in essentially the same way as QRectF .

最后, QRect objects can be streamed as well as compared.

渲染

当使用 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.

qrect-diagram-zero3

qrect-diagram-one4

Logical representation

One pixel wide pen

qrect-diagram-two5

qrect-diagram-three6

Two pixel wide pen

Three pixel wide pen

坐标

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() and moveLeft() 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) and moveLeft() moves the entire rectangle horizontally, leaving the rectangle’s left edge at the given x coordinate and its size unchanged.

../../_images/qrect-coordinates.png

Note that for historical reasons the values returned by the bottom() and right() functions deviate from the true bottom-right corner of the rectangle: The right() function returns ** left() + width() - 1 bottom() function returns ** top() + height() - 1 . The same is the case for the point returned by the bottomRight() convenience function. In addition, the x and y coordinate of the topRight() and bottomLeft() functions, respectively, contain the same deviation from the true right and bottom edges.

We recommend that you use x() + width() and y() + height() to find the true bottom-right corner, and avoid right() and bottom() . Another solution is to use QRectF : The QRectF class defines a rectangle in the plane using floating point accuracy for coordinates, and the right() and bottom() 函数 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 the adjusted() function. If either of the width and height is negative, use the normalized() function to retrieve a rectangle where the corners are swapped.

此外, QRect provides the getCoords() function which extracts the position of the rectangle’s top-left and bottom-right corner, and the getRect() function which extracts the rectangle’s top-left corner, width and height. Use the setCoords() and setRect() function to manipulate the rectangle’s coordinates and dimensions in one go.

约束

QRect is limited to the minimum and maximum values for the int type. Operations on a QRect that could potentially result in values outside this range will result in undefined behavior.

另请参阅

QRectF QRegion

class QRect

QRect(topleft, bottomright)

QRect(topleft, size)

QRect(QRect)

QRect(left, top, width, height)

param bottomright

QPoint

param size

QSize

param top

int

param QRect

QRect

param topleft

QPoint

param left

int

param width

int

param height

int

构造 null 矩形。

另请参阅

isNull()

构造矩形采用 ( x , y ) 作为其左上角和给定 width and height .

另请参阅

setRect()

PySide2.QtCore.QRect. __reduce__ ( )
返回类型

PyObject

PySide2.QtCore.QRect. __repr__ ( )
返回类型

PyObject

PySide2.QtCore.QRect. adjust ( x1 , y1 , x2 , y2 )
参数
  • x1 int

  • y1 int

  • x2 int

  • y2 int

添加 dx1 , dy1 , dx2 and dy2 respectively to the existing coordinates of the rectangle.

PySide2.QtCore.QRect. adjusted ( x1 , y1 , x2 , y2 )
参数
  • x1 int

  • y1 int

  • x2 int

  • y2 int

返回类型

QRect

返回新的矩形采用 dx1 , dy1 , dx2 and dy2 added respectively to the existing coordinates of this rectangle.

另请参阅

adjust()

PySide2.QtCore.QRect. bottom ( )
返回类型

int

Returns the y-coordinate of the rectangle’s bottom edge.

注意:由于历史原因,此函数返回 top() + height() - 1; use y() + height() to retrieve the true y-coordinate.

PySide2.QtCore.QRect. bottomLeft ( )
返回类型

QPoint

Returns the position of the rectangle’s bottom-left corner. Note that for historical reasons this function returns QPoint ( left() , top() + height() - 1).

PySide2.QtCore.QRect. bottomRight ( )
返回类型

QPoint

Returns the position of the rectangle’s bottom-right corner.

注意:由于历史原因,此函数返回 QPoint ( left() + width() -1, top() + height() - 1).

PySide2.QtCore.QRect. center ( )
返回类型

QPoint

返回矩形的中心点。

另请参阅

moveCenter()

PySide2.QtCore.QRect. contains ( r [ , proper=false ] )
参数
返回类型

bool

PySide2.QtCore.QRect. contains ( x , y , proper )
参数
  • x int

  • y int

  • proper bool

返回类型

bool

这是重载函数。

返回 true 若点 ( x , y ) is inside or on the edge of the rectangle, otherwise returns false 。若 proper is true, this function only returns true if the point is entirely inside the rectangle(not on the edge).

PySide2.QtCore.QRect. contains ( x , y )
参数
  • x int

  • y int

返回类型

bool

这是重载函数。

返回 true 若点 ( x , y ) is inside this rectangle, otherwise returns false .

PySide2.QtCore.QRect. contains ( p [ , proper=false ] )
参数
返回类型

bool

PySide2.QtCore.QRect. getCoords ( )

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`` .

PySide2.QtCore.QRect. getRect ( )

Extracts the position of the rectangle’s top-left corner to *``x`` and *``y`` , and its dimensions to *``width`` and *``height`` .

PySide2.QtCore.QRect. height ( )
返回类型

int

返回矩形的高度。

PySide2.QtCore.QRect. intersected ( other )
参数

other QRect

返回类型

QRect

Returns the intersection of this rectangle and the given rectangle 。注意 r.intersected(s) 相当于 r & s .

../../_images/qrect-intersect.png

另请参阅

intersects() united() operator&=()

PySide2.QtCore.QRect. intersects ( r )
参数

r QRect

返回类型

bool

返回 true if this rectangle intersects with the given rectangle (i.e., there is at least one pixel that is within both rectangles), otherwise returns false .

The intersection rectangle can be retrieved using the intersected() 函数。

另请参阅

contains()

PySide2.QtCore.QRect. isEmpty ( )
返回类型

bool

返回 true 若矩形为空,否则返回 false .

空矩形有 left() > right() or top() > bottom() . An empty rectangle is not valid (i.e., == ! isValid() ).

使用 normalized() function to retrieve a rectangle where the corners are swapped.

PySide2.QtCore.QRect. isNull ( )
返回类型

bool

返回 true 若矩形是 null 矩形,否则返回 false .

A null rectangle has both the width and the height set to 0 (i.e., right() == left() - 1 and bottom() == top() - 1). A null rectangle is also empty, and hence is not valid.

PySide2.QtCore.QRect. isValid ( )
返回类型

bool

返回 true 若矩形有效,否则返回 false .

A valid rectangle has a left() <= right() and top() <= bottom() . Note that non-trivial operations like intersections are not defined for invalid rectangles. A valid rectangle is not empty (i.e., == ! isEmpty() ).

PySide2.QtCore.QRect. left ( )
返回类型

int

Returns the x-coordinate of the rectangle’s left edge. Equivalent to x() .

PySide2.QtCore.QRect. marginsAdded ( margins )
参数

margins QMargins

返回类型

QRect

Returns a rectangle grown by the margins .

另请参阅

operator+=() marginsRemoved() operator-=()

PySide2.QtCore.QRect. marginsRemoved ( margins )
参数

margins QMargins

返回类型

QRect

移除 margins 从矩形,收缩它。

另请参阅

marginsAdded() operator+=() operator-=()

PySide2.QtCore.QRect. moveBottom ( pos )
参数

pos int

Moves the rectangle vertically, leaving the rectangle’s bottom edge at the given y coordinate. The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveBottomLeft ( p )
参数

p QPoint

Moves the rectangle, leaving the bottom-left corner at the given position . The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveBottomRight ( p )
参数

p QPoint

Moves the rectangle, leaving the bottom-right corner at the given position . The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveCenter ( p )
参数

p QPoint

移动矩形,使中心点位于给定 position . The rectangle’s size is unchanged.

另请参阅

center()

PySide2.QtCore.QRect. moveLeft ( pos )
参数

pos int

Moves the rectangle horizontally, leaving the rectangle’s left edge at the given x coordinate. The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveRight ( pos )
参数

pos int

Moves the rectangle horizontally, leaving the rectangle’s right edge at the given x coordinate. The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveTo ( p )
参数

p QPoint

Moves the rectangle, leaving the top-left corner at the given position .

PySide2.QtCore.QRect. moveTo ( x , t )
参数
  • x int

  • t int

Moves the rectangle, leaving the top-left corner at the given position ( x , y ). The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveTop ( pos )
参数

pos int

Moves the rectangle vertically, leaving the rectangle’s top edge at the given y coordinate. The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveTopLeft ( p )
参数

p QPoint

Moves the rectangle, leaving the top-left corner at the given position . The rectangle’s size is unchanged.

PySide2.QtCore.QRect. moveTopRight ( p )
参数

p QPoint

Moves the rectangle, leaving the top-right corner at the given position . The rectangle’s size is unchanged.

PySide2.QtCore.QRect. normalized ( )
返回类型

QRect

Returns a normalized rectangle; i.e., a rectangle that has a non-negative width and height.

width() < 0 the function swaps the left and right corners, and it swaps the top and bottom corners if height() < 0.

PySide2.QtCore.QRect. __ne__ ( r2 )
参数

r2 QRect

返回类型

bool

PySide2.QtCore.QRect. __ne__ ( arg__2 )
参数

arg__2 QRect

返回类型

bool

PySide2.QtCore.QRect. __and__ ( r )
参数

r QRect

返回类型

QRect

PySide2.QtCore.QRect. __iand__ ( r )
参数

r QRect

返回类型

QRect

PySide2.QtCore.QRect. __add__ ( margins )
参数

margins QMargins

返回类型

QRect

PySide2.QtCore.QRect. __add__ ( margins )
参数

margins QMargins

返回类型

QRect

PySide2.QtCore.QRect. __iadd__ ( margins )
参数

margins QMargins

返回类型

QRect

添加 margins to the rectangle, growing it.

另请参阅

marginsAdded() marginsRemoved() operator-=()

PySide2.QtCore.QRect. __sub__ ( rhs )
参数

rhs QMargins

返回类型

QRect

PySide2.QtCore.QRect. __isub__ ( margins )
参数

margins QMargins

返回类型

QRect

Returns a rectangle shrunk by the margins .

另请参阅

marginsRemoved() operator+=() marginsAdded()

PySide2.QtCore.QRect. __eq__ ( arg__2 )
参数

arg__2 QRect

返回类型

bool

PySide2.QtCore.QRect. __eq__ ( r2 )
参数

r2 QRect

返回类型

bool

PySide2.QtCore.QRect. __or__ ( r )
参数

r QRect

返回类型

QRect

Returns the bounding rectangle of this rectangle and the given rectangle .

另请参阅

operator|=() united()

PySide2.QtCore.QRect. __ior__ ( r )
参数

r QRect

返回类型

QRect

Unites this rectangle with the given rectangle .

另请参阅

united() operator|()

PySide2.QtCore.QRect. right ( )
返回类型

int

Returns the x-coordinate of the rectangle’s right edge.

注意:由于历史原因,此函数返回 left() + width() - 1; use x() + width() to retrieve the true x-coordinate.

PySide2.QtCore.QRect. setBottom ( pos )
参数

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.

PySide2.QtCore.QRect. setBottomLeft ( p )
参数

p QPoint

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.

PySide2.QtCore.QRect. setBottomRight ( p )
参数

p QPoint

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.

PySide2.QtCore.QRect. setCoords ( x1 , y1 , x2 , y2 )
参数
  • 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 ).

PySide2.QtCore.QRect. setHeight ( h )
参数

h int

Sets the height of the rectangle to the given height . The bottom edge is changed, but not the top one.

PySide2.QtCore.QRect. setLeft ( pos )
参数

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.

相当于 setX() .

PySide2.QtCore.QRect. setRect ( x , y , w , h )
参数
  • 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 given width and height .

PySide2.QtCore.QRect. setRight ( pos )
参数

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.

PySide2.QtCore.QRect. setSize ( s )
参数

s QSize

Sets the size of the rectangle to the given size . The top-left corner is not moved.

PySide2.QtCore.QRect. setTop ( pos )
参数

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.

相当于 setY() .

另请参阅

top() moveTop()

PySide2.QtCore.QRect. setTopLeft ( p )
参数

p QPoint

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.

PySide2.QtCore.QRect. setTopRight ( p )
参数

p QPoint

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.

PySide2.QtCore.QRect. setWidth ( w )
参数

w int

Sets the width of the rectangle to the given width . The right edge is changed, but not the left one.

PySide2.QtCore.QRect. setX ( x )
参数

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.

相当于 setLeft() .

PySide2.QtCore.QRect. setY ( y )
参数

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.

相当于 setTop() .

PySide2.QtCore.QRect. size ( )
返回类型

QSize

Returns the size of the rectangle.

PySide2.QtCore.QRect. top ( )
返回类型

int

Returns the y-coordinate of the rectangle’s top edge. Equivalent to y() .

PySide2.QtCore.QRect. topLeft ( )
返回类型

QPoint

Returns the position of the rectangle’s top-left corner.

PySide2.QtCore.QRect. topRight ( )
返回类型

QPoint

Returns the position of the rectangle’s top-right corner.

注意:由于历史原因,此函数返回 QPoint ( left() + width() -1, top() ).

PySide2.QtCore.QRect. translate ( p )
参数

p QPoint

这是重载函数。

Moves the rectangle offset . x() along the x axis and offset . y() along the y axis, relative to the current position.

PySide2.QtCore.QRect. translate ( dx , dy )
参数
  • dx int

  • dy int

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 down.

PySide2.QtCore.QRect. translated ( p )
参数

p QPoint

返回类型

QRect

这是重载函数。

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.

PySide2.QtCore.QRect. translated ( dx , dy )
参数
  • dx int

  • dy int

返回类型

QRect

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.

另请参阅

translate()

PySide2.QtCore.QRect. transposed ( )
返回类型

QRect

Returns a copy of the rectangle that has its width and height exchanged:

QRect r = {15, 51, 42, 24};
r = r.transposed(); // r == {15, 51, 24, 42}
												

另请参阅

transposed()

PySide2.QtCore.QRect. united ( other )
参数

other QRect

返回类型

QRect

Returns the bounding rectangle of this rectangle and the given rectangle .

../../_images/qrect-unite.png

另请参阅

intersected()

PySide2.QtCore.QRect. width ( )
返回类型

int

Returns the width of the rectangle.

PySide2.QtCore.QRect. x ( )
返回类型

int

Returns the x-coordinate of the rectangle’s left edge. Equivalent to left() .

PySide2.QtCore.QRect. y ( )
返回类型

int

Returns the y-coordinate of the rectangle’s top edge. Equivalent to top() .