Struct zng_layout::context::LayoutMetrics

source ·
pub struct LayoutMetrics { /* private fields */ }
Expand description

Layout metrics in a LAYOUT context.

Implementations§

source§

impl LayoutMetrics

source

pub fn new(scale_factor: Factor, viewport: PxSize, font_size: Px) -> Self

New root LayoutMetrics.

The font_size sets both font sizes, the initial PPI is 96.0, you can use the builder style method and with_screen_ppi to set a different value.

source

pub fn constraints(&self) -> PxConstraints2d

Current size constraints.

source

pub fn z_constraints(&self) -> PxConstraints

Current perspective constraints.

source

pub fn inline_constraints(&self) -> Option<InlineConstraints>

Current inline constraints.

Only present if the parent widget supports inline.

source

pub fn direction(&self) -> LayoutDirection

Gets the inline or text flow direction.

source

pub fn font_size(&self) -> Px

Current computed font size.

source

pub fn root_font_size(&self) -> Px

Computed font size at the root widget.

source

pub fn scale_factor(&self) -> Factor

Pixel scale factor.

source

pub fn viewport(&self) -> PxSize

Computed size of the nearest viewport ancestor.

This is usually the window content area size, but can be the scroll viewport size or any other value depending on the implementation of the context widgets.

source

pub fn viewport_min(&self) -> Px

Smallest dimension of the viewport.

source

pub fn viewport_max(&self) -> Px

Largest dimension of the viewport.

source

pub fn screen_ppi(&self) -> Ppi

The current screen “pixels-per-inch” resolution.

This value is dependent in the actual physical size of the screen.

Default is 96.0.

source

pub fn leftover(&self) -> Size2D<Option<Px>, ()>

Computed leftover length for the widget, given the Length::Leftover value it communicated to the parent.

source

pub fn with_constraints(self, constraints: PxConstraints2d) -> Self

Sets the constraints to constraints.

source

pub fn with_z_constraints(self, constraints: PxConstraints) -> Self

Sets the z_constraints to constraints.

source

pub fn with_inline_constraints( self, inline_constraints: Option<InlineConstraints> ) -> Self

source

pub fn with_font_size(self, font_size: Px) -> Self

Sets the font_size.

source

pub fn with_viewport(self, viewport: PxSize) -> Self

Sets the viewport.

source

pub fn with_scale_factor(self, scale_factor: Factor) -> Self

Sets the scale_factor.

source

pub fn with_screen_ppi(self, screen_ppi: Ppi) -> Self

Sets the screen_ppi.

source

pub fn with_direction(self, direction: LayoutDirection) -> Self

Sets the direction.

source

pub fn with_leftover(self, width: Option<Px>, height: Option<Px>) -> Self

Sets the leftover.

source

pub fn snapshot(&self) -> LayoutMetricsSnapshot

Clones all current metrics into a snapshot.

Trait Implementations§

source§

impl Clone for LayoutMetrics

source§

fn clone(&self) -> LayoutMetrics

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LayoutMetrics

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more