Struct qt_core::QSizeF

source ·
#[repr(C)]
pub struct QSizeF { /* private fields */ }
Expand description

The QSizeF class defines the size of a two-dimensional object using floating point precision.

C++ class: QSizeF.

C++ documentation:

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.

Implementations§

source§

impl QSizeF

source

pub unsafe fn add_assign(&self, arg1: impl CastInto<Ref<QSizeF>>) -> Ref<QSizeF>

Adds the given size to this size and returns a reference to this size. For example:

Calls C++ function: QSizeF& QSizeF::operator+=(const QSizeF& arg1).

C++ documentation:

Adds the given size to this size and returns a reference to this size. For example:


  QSizeF s( 3, 7);
  QSizeF r(-1, 4);
  s += r;

  // s becomes (2,11)

source

pub unsafe fn bounded_to( &self, arg1: impl CastInto<Ref<QSizeF>> ) -> CppBox<QSizeF>

Returns a size holding the minimum width and height of this size and the given otherSize.

Calls C++ function: QSizeF QSizeF::boundedTo(const QSizeF& arg1) const.

C++ documentation:

Returns a size holding the minimum width and height of this size and the given otherSize.

See also expandedTo() and scale().

source

pub unsafe fn copy_from(&self, other: impl CastInto<Ref<QSizeF>>) -> Ref<QSizeF>

The QSizeF class defines the size of a two-dimensional object using floating point precision.

Calls C++ function: QSizeF& QSizeF::operator=(const QSizeF& other).

C++ documentation:

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.

source

pub unsafe fn div_assign(&self, c: c_double) -> Ref<QSizeF>

This is an overloaded function.

Calls C++ function: QSizeF& QSizeF::operator/=(double c).

C++ documentation:

This is an overloaded function.

Divides both the width and height by the given divisor and returns a reference to the size.

See also scale().

source

pub unsafe fn expanded_to( &self, arg1: impl CastInto<Ref<QSizeF>> ) -> CppBox<QSizeF>

Returns a size holding the maximum width and height of this size and the given otherSize.

Calls C++ function: QSizeF QSizeF::expandedTo(const QSizeF& arg1) const.

C++ documentation:

Returns a size holding the maximum width and height of this size and the given otherSize.

See also boundedTo() and scale().

source

pub unsafe fn grown_by( &self, m: impl CastInto<Ref<QMarginsF>> ) -> CppBox<QSizeF>

Available on cpp_lib_version="5.14.0" only.

Calls C++ function: QSizeF QSizeF::grownBy(QMarginsF m) const.

source

pub unsafe fn height(&self) -> c_double

Returns the height.

Calls C++ function: double QSizeF::height() const.

C++ documentation:

Returns the height.

See also width() and setHeight().

source

pub unsafe fn is_empty(&self) -> bool

Returns true if either of the width and height is less than or equal to 0; otherwise returns false.

Calls C++ function: bool QSizeF::isEmpty() const.

C++ documentation:

Returns true if either of the width and height is less than or equal to 0; otherwise returns false.

See also isNull() and isValid().

source

pub unsafe fn is_null(&self) -> bool

Returns true if both the width and height are 0.0 (ignoring the sign); otherwise returns false.

Calls C++ function: bool QSizeF::isNull() const.

C++ documentation:

Returns true if both the width and height are 0.0 (ignoring the sign); otherwise returns false.

See also isValid() and isEmpty().

source

pub unsafe fn is_valid(&self) -> bool

Returns true if both the width and height is equal to or greater than 0; otherwise returns false.

Calls C++ function: bool QSizeF::isValid() const.

C++ documentation:

Returns true if both the width and height is equal to or greater than 0; otherwise returns false.

See also isNull() and isEmpty().

source

pub unsafe fn mul_assign(&self, c: c_double) -> Ref<QSizeF>

This is an overloaded function.

Calls C++ function: QSizeF& QSizeF::operator*=(double c).

C++ documentation:

This is an overloaded function.

Multiplies both the width and height by the given factor and returns a reference to the size.

See also scale().

source

pub unsafe fn new_0a() -> CppBox<QSizeF>

Constructs an invalid size.

Calls C++ function: [constructor] void QSizeF::QSizeF().

C++ documentation:

Constructs an invalid size.

See also isValid().

source

pub unsafe fn new_1a(sz: impl CastInto<Ref<QSize>>) -> CppBox<QSizeF>

Constructs a size with floating point accuracy from the given size.

Calls C++ function: [constructor] void QSizeF::QSizeF(const QSize& sz).

C++ documentation:

Constructs a size with floating point accuracy from the given size.

See also toSize().

source

pub unsafe fn new_2a(w: c_double, h: c_double) -> CppBox<QSizeF>

Constructs a size with the given width and height.

Calls C++ function: [constructor] void QSizeF::QSizeF(double w, double h).

C++ documentation:

Constructs a size with the given width and height.

source

pub unsafe fn new_copy(other: impl CastInto<Ref<QSizeF>>) -> CppBox<QSizeF>

The QSizeF class defines the size of a two-dimensional object using floating point precision.

Calls C++ function: [constructor] void QSizeF::QSizeF(const QSizeF& other).

C++ documentation:

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.

source

pub unsafe fn rheight(&self) -> *mut c_double

Returns a reference to the height.

Calls C++ function: double& QSizeF::rheight().

C++ documentation:

Returns a reference to the height.

Using a reference makes it possible to manipulate the height directly. For example:

QSizeF size(100, 10.2); size.rheight() += 5.5;

// size becomes (100,15.7)

See also rwidth() and setHeight().

source

pub unsafe fn rwidth(&self) -> *mut c_double

Returns a reference to the width.

Calls C++ function: double& QSizeF::rwidth().

C++ documentation:

Returns a reference to the width.

Using a reference makes it possible to manipulate the width directly. For example:

QSizeF size(100.3, 10); size.rwidth() += 20.5;

// size becomes (120.8,10)

See also rheight() and setWidth().

source

pub unsafe fn scale_3a(&self, w: c_double, h: c_double, mode: AspectRatioMode)

Scales the size to a rectangle with the given width and height, according to the specified mode.

Calls C++ function: void QSizeF::scale(double w, double h, Qt::AspectRatioMode mode).

C++ documentation:

Scales the size to a rectangle with the given width and height, according to the specified mode.

  • If mode is Qt::IgnoreAspectRatio, the size is set to (width, height).
  • If mode is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside (width, height), preserving the aspect ratio.
  • If mode is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside (width, height), preserving the aspect ratio.

Example:

QSizeF t1(10, 12); t1.scale(60, 60, Qt::IgnoreAspectRatio); // t1 is (60, 60)

QSizeF t2(10, 12); t2.scale(60, 60, Qt::KeepAspectRatio); // t2 is (50, 60)

QSizeF t3(10, 12); t3.scale(60, 60, Qt::KeepAspectRatioByExpanding); // t3 is (60, 72)

See also setWidth(), setHeight(), and scaled().

source

pub unsafe fn scale_2a( &self, s: impl CastInto<Ref<QSizeF>>, mode: AspectRatioMode )

This is an overloaded function.

Calls C++ function: void QSizeF::scale(const QSizeF& s, Qt::AspectRatioMode mode).

C++ documentation:

This is an overloaded function.

Scales the size to a rectangle with the given size, according to the specified mode.

source

pub unsafe fn scaled_3a( &self, w: c_double, h: c_double, mode: AspectRatioMode ) -> CppBox<QSizeF>

Returns a size scaled to a rectangle with the given width and height, according to the specified mode.

Calls C++ function: QSizeF QSizeF::scaled(double w, double h, Qt::AspectRatioMode mode) const.

C++ documentation:

Returns a size scaled to a rectangle with the given width and height, according to the specified mode.

This function was introduced in Qt 5.0.

See also scale().

source

pub unsafe fn scaled_2a( &self, s: impl CastInto<Ref<QSizeF>>, mode: AspectRatioMode ) -> CppBox<QSizeF>

This is an overloaded function.

Calls C++ function: QSizeF QSizeF::scaled(const QSizeF& s, Qt::AspectRatioMode mode) const.

C++ documentation:

This is an overloaded function.

Returns a size scaled to a rectangle with the given size s, according to the specified mode.

This function was introduced in Qt 5.0.

source

pub unsafe fn set_height(&self, h: c_double)

Sets the height to the given height.

Calls C++ function: void QSizeF::setHeight(double h).

C++ documentation:

Sets the height to the given height.

See also height(), rheight(), and setWidth().

source

pub unsafe fn set_width(&self, w: c_double)

Sets the width to the given width.

Calls C++ function: void QSizeF::setWidth(double w).

C++ documentation:

Sets the width to the given width.

See also width(), rwidth(), and setHeight().

source

pub unsafe fn shrunk_by( &self, m: impl CastInto<Ref<QMarginsF>> ) -> CppBox<QSizeF>

Available on cpp_lib_version="5.14.0" only.

Calls C++ function: QSizeF QSizeF::shrunkBy(QMarginsF m) const.

source

pub unsafe fn sub_assign(&self, arg1: impl CastInto<Ref<QSizeF>>) -> Ref<QSizeF>

Subtracts the given size from this size and returns a reference to this size. For example:

Calls C++ function: QSizeF& QSizeF::operator-=(const QSizeF& arg1).

C++ documentation:

Subtracts the given size from this size and returns a reference to this size. For example:


  QSizeF s( 3, 7);
  QSizeF r(-1, 4);
  s -= r;

  // s becomes (4,3)

source

pub unsafe fn to_size(&self) -> CppBox<QSize>

Returns an integer based copy of this size.

Calls C++ function: QSize QSizeF::toSize() const.

C++ documentation:

Returns an integer based copy of this size.

Note that the coordinates in the returned size will be rounded to the nearest integer.

See also QSizeF().

source

pub unsafe fn transpose(&self)

Swaps the width and height values.

Calls C++ function: void QSizeF::transpose().

C++ documentation:

Swaps the width and height values.

See also setWidth(), setHeight(), and transposed().

source

pub unsafe fn transposed(&self) -> CppBox<QSizeF>

Returns the size with width and height values swapped.

Calls C++ function: QSizeF QSizeF::transposed() const.

C++ documentation:

Returns the size with width and height values swapped.

This function was introduced in Qt 5.0.

See also transpose().

source

pub unsafe fn width(&self) -> c_double

Returns the width.

Calls C++ function: double QSizeF::width() const.

C++ documentation:

Returns the width.

See also height() and setWidth().

Trait Implementations§

source§

impl Add<Ref<QSizeF>> for &QSizeF

source§

fn add(self, s2: Ref<QSizeF>) -> CppBox<QSizeF>

Calls C++ function: QSizeF operator+(const QSizeF& s1, const QSizeF& s2).

§

type Output = CppBox<QSizeF>

The resulting type after applying the + operator.
source§

impl CppDeletable for QSizeF

source§

unsafe fn delete(&self)

The QSizeF class defines the size of a two-dimensional object using floating point precision.

Calls C++ function: [destructor] void QSizeF::~QSizeF().

C++ documentation:

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.

source§

impl Div<f64> for &QSizeF

source§

fn div(self, c: c_double) -> CppBox<QSizeF>

Calls C++ function: QSizeF operator/(const QSizeF& s, double c).

§

type Output = CppBox<QSizeF>

The resulting type after applying the / operator.
source§

impl Mul<f64> for &QSizeF

source§

fn mul(self, c: c_double) -> CppBox<QSizeF>

Calls C++ function: QSizeF operator*(const QSizeF& s, double c).

§

type Output = CppBox<QSizeF>

The resulting type after applying the * operator.
source§

impl PartialEq<Ref<QSizeF>> for QSizeF

source§

fn eq(&self, s2: &Ref<QSizeF>) -> bool

Returns true if c1 and c2 are the same Unicode character; otherwise returns false.

Calls C++ function: bool operator==(const QSizeF& s1, const QSizeF& s2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for bool operator==(QChar c1, QChar c2):

Returns true if c1 and c2 are the same Unicode character; otherwise returns false.

1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sub<Ref<QSizeF>> for &QSizeF

source§

fn sub(self, s2: Ref<QSizeF>) -> CppBox<QSizeF>

Calls C++ function: QSizeF operator-(const QSizeF& s1, const QSizeF& s2).

§

type Output = CppBox<QSizeF>

The resulting type after applying the - operator.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, U> CastInto<U> for T
where U: CastFrom<T>,

source§

unsafe fn cast_into(self) -> U

Performs the conversion. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> StaticUpcast<T> for T

source§

unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>

Convert type of a const pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.