QSizeF

PyQt5.QtCore.QSizeF

Description

The QSizeF class defines the size of a two-dimensional object using floating 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.

The QSizeF class also provides the toSize() function returning a QSize copy of this size, constructed by rounding the width and height to the nearest integers.

QSizeF objects can be streamed as well as compared.

See also

QSize, QPointF, QRectF.

Methods

__init__()

TODO


__init__(QSize)

TODO


__init__(QSizeF)

TODO


__init__(float, float)

TODO


__add__(QSizeF) → QSizeF

TODO


__bool__() → int

TODO


boundedTo(QSizeF) → QSizeF

TODO


__eq__(QSizeF) → bool

TODO


expandedTo(QSizeF) → QSizeF

TODO


grownBy(QMarginsF) → QSizeF

TODO


height() → float

See also

setHeight().


__iadd__(QSizeF) → QSizeF

TODO


__imul__(float) → QSizeF

TODO


isEmpty() → bool

TODO


isNull() → bool

TODO


__isub__(QSizeF) → QSizeF

TODO


isValid() → bool

TODO


__itruediv__(float) → QSizeF

TODO


__mul__(float) → QSizeF

TODO


__ne__(QSizeF) → bool

TODO


__repr__() → str

TODO


__rmul__(float) → QSizeF

TODO


scale(QSizeF, AspectRatioMode)

TODO


scale(float, float, AspectRatioMode)

TODO


scaled(QSizeF, AspectRatioMode) → QSizeF

TODO


scaled(float, float, AspectRatioMode) → QSizeF

TODO


setHeight(float)

See also

height().


setWidth(float)

See also

width().


shrunkBy(QMarginsF) → QSizeF

TODO


__sub__(QSizeF) → QSizeF

TODO


toSize() → QSize

TODO


transpose()

TODO


transposed() → QSizeF

TODO


__truediv__(float) → QSizeF

TODO


width() → float

See also

setWidth().