QSize

PyQt5.QtCore.QSize

Description

The QSize class defines the size of a two-dimensional object using integer point precision.

A size is specified by a width() and a height(). It can be set in the constructor and changed using the setWidth(), setHeight(), or scale() functions, or using arithmetic operators. A size can also be manipulated directly by retrieving references to the width and height using the rwidth() and rheight() functions. Finally, the width and height can be swapped using the transpose() function.

The isValid() function determines if a size is valid (a valid size has both width and height greater than or equal to zero). The isEmpty() function returns true if either of the width and height is less than, or equal to, zero, while the isNull() function returns true only if both the width and the height is zero.

Use the expandedTo() function to retrieve a size which holds the maximum height and width of this size and a given size. Similarly, the boundedTo() function returns a size which holds the minimum height and width of this size and a given size.

QSize objects can be streamed as well as compared.

See also

QSizeF, QPoint, QRect.

Methods

__init__()

TODO


__init__(QSize)

TODO


__init__(int, int)

TODO


__add__(QSize) → QSize

TODO


__bool__() → int

TODO


boundedTo(QSize) → QSize

TODO


__eq__(QSize) → bool

TODO


expandedTo(QSize) → QSize

TODO


grownBy(QMargins) → QSize

TODO


height() → int

See also

setHeight().


__iadd__(QSize) → QSize

TODO


__imul__(float) → QSize

TODO


isEmpty() → bool

TODO


isNull() → bool

TODO


__isub__(QSize) → QSize

TODO


isValid() → bool

TODO


__itruediv__(float) → QSize

TODO


__mul__(float) → QSize

TODO


__ne__(QSize) → bool

TODO


__repr__() → str

TODO


__rmul__(float) → QSize

TODO


scale(QSize, AspectRatioMode)

TODO


scale(int, int, AspectRatioMode)

TODO


scaled(QSize, AspectRatioMode) → QSize

TODO


scaled(int, int, AspectRatioMode) → QSize

TODO


setHeight(int)

See also

height().


setWidth(int)

See also

width().


shrunkBy(QMargins) → QSize

TODO


__sub__(QSize) → QSize

TODO


transpose()

TODO


transposed() → QSize

TODO


__truediv__(float) → QSize

TODO


width() → int

See also

setWidth().