Struct zng_wgt_stack::StackDirection

source ·
pub struct StackDirection {
    pub place: Point,
    pub origin: Point,
    pub is_rtl_aware: bool,
}
Expand description

Defines a placement point in the previous item and the origin point of the next.

Defining stack direction like this allows expressing the traditional stack directions along an axis, as well as intermediary for transition animations or diagonal directions.

Note that collapsed items (layout size zero) are skipped, so the previous and next items are both non-empty in layout.

§Alignment & Spacing

The direction type can express non-fill alignment and spacing by it self, but prefer using the stack::children_align and stack::spacing properties as they are more readable and include fill alignment.

The Stack! widget implements alignment along the axis that does not change, so if the computed layout vector is zero in a dimension the items can fill in that dimension.

The Stack! widget adds the spacing along non-zero axis for each item offset after the first, so the spacing is not added for a perfect straight column or row, but it is added even for a single pixel shift diagonal stack.

Fields§

§place: Point

Point on the previous item where the next item is placed.

§origin: Point

Point on the next item that is offset to match place.

§is_rtl_aware: bool

If place.x and origin.x are swapped in LayoutDirection::RTL contexts.

Implementations§

source§

impl StackDirection

source

pub fn new<P: Into<Point>, O: Into<Point>>( place: P, origin: O, is_rtl_aware: bool, ) -> Self

New custom direction.

source

pub fn left_to_right() -> Self

((100.pct(), 0), (0, 0)), items are placed in a row from left to right.

Alignment works on the y direction because it is not affected.

source

pub fn right_to_left() -> Self

((0, 0), (100.pct(), 0)), items are placed in a row from right to left.

Alignment works on the y direction because it is not affected.

source

pub fn start_to_end() -> Self

((100.pct(), 0), (0, 0), true), items are placed in a row from left to right or from right to left in RTL contexts.

In LayoutDirection::RTL contexts the place.x and origin.x values are swapped before they are computed.

Alignment works on the y direction because it is not affected.

source

pub fn end_to_start() -> Self

((0, 0), (100.pct(), 0)), true), items are placed in a row from right to left or from left to right in RTL contexts.

In LayoutDirection::RTL contexts the place.x and origin.x values are swapped before they are computed.

Alignment works on the y direction because it is not affected.

source

pub fn top_to_bottom() -> Self

((0, 100.pct()), (0, 0)), items are placed in a column from top to bottom.

Alignment works on the x direction because it is not affected.

source

pub fn bottom_to_top() -> Self

(0, 0), (0, 100.pct()), items are placed in a column from bottom to top.

Alignment works on the x direction because it is not affected.

source

pub fn none() -> Self

(0, 0), items are just stacked in the Z order.

Fill alignment works in both dimensions because they don’t change.

Note that items are always rendered in the order defined by the z_index property.

source

pub fn layout(&self, prev_item: PxRect, next_item: PxSize) -> PxVector

Compute offset of the next item in the current LAYOUT context.

source

pub fn direction_factor(&self, direction: LayoutDirection) -> Factor2d

Factor that defines the proportional direction.

Values are in the range of -1.0..=1.0.

source

pub fn direction_scale(&self) -> Factor2d

Scale proportional to how one dimensional the direction is.

Values are in the 0.0..=1.0 range where 0 is 20º or more from a single direction and 1 is 0º or 90º.

source

pub fn affect_mask(&self) -> LayoutMask

Compute a LayoutMask that flags all contextual values that affect the result of layout.

source

pub fn is_default(&self) -> bool

Returns true if all values are Length::Default.

Trait Implementations§

source§

impl Add for StackDirection

source§

type Output = StackDirection

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl AddAssign for StackDirection

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Clone for StackDirection

source§

fn clone(&self) -> StackDirection

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 StackDirection

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for StackDirection

source§

fn default() -> StackDirection

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for StackDirection

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for StackDirection

source§

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

Formats the value using the given formatter. Read more
source§

impl<'a, S: Into<Factor2d>> Div<S> for &'a StackDirection

source§

type Output = StackDirection

The resulting type after applying the / operator.
source§

fn div(self, rhs: S) -> Self::Output

Performs the / operation. Read more
source§

impl<S: Into<Factor2d>> Div<S> for StackDirection

source§

type Output = StackDirection

The resulting type after applying the / operator.
source§

fn div(self, rhs: S) -> Self

Performs the / operation. Read more
source§

impl<S: Into<Factor2d>> DivAssign<S> for StackDirection

source§

fn div_assign(&mut self, rhs: S)

Performs the /= operation. Read more
source§

impl<P: Into<Point>, O: Into<Point>> From<(P, O)> for StackDirection

source§

fn from((origin, size): (P, O)) -> Self

New from place and origin, not RTL aware.

source§

impl<P: Into<Point>, O: Into<Point>> From<(P, O, bool)> for StackDirection

source§

fn from((origin, size, rtl_aware): (P, O, bool)) -> Self

New from place, origin, and RTL aware flag.

source§

impl<P: Into<Point>, O: Into<Point>> IntoVar<StackDirection> for (P, O)

source§

fn into_var(self) -> Self::Var

New from place and origin, not RTL aware.

source§

type Var = LocalVar<StackDirection>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<P: Into<Point>, O: Into<Point>> IntoVar<StackDirection> for (P, O, bool)

source§

fn into_var(self) -> Self::Var

New from place, origin, and RTL aware flag.

source§

type Var = LocalVar<StackDirection>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl<'a, S: Into<Factor2d>> Mul<S> for &'a StackDirection

source§

type Output = StackDirection

The resulting type after applying the * operator.
source§

fn mul(self, rhs: S) -> Self::Output

Performs the * operation. Read more
source§

impl<S: Into<Factor2d>> Mul<S> for StackDirection

source§

type Output = StackDirection

The resulting type after applying the * operator.
source§

fn mul(self, rhs: S) -> Self

Performs the * operation. Read more
source§

impl<S: Into<Factor2d>> MulAssign<S> for StackDirection

source§

fn mul_assign(&mut self, rhs: S)

Performs the *= operation. Read more
source§

impl PartialEq for StackDirection

source§

fn eq(&self, other: &StackDirection) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl Serialize for StackDirection

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub for StackDirection

source§

type Output = StackDirection

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl SubAssign for StackDirection

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl Transitionable for StackDirection

source§

fn lerp(self, to: &Self, step: EasingStep) -> Self

Sample the linear interpolation from self -> to by step.
source§

impl<P: Into<Point>, O: Into<Point>> IntoValue<StackDirection> for (P, O)

source§

impl<P: Into<Point>, O: Into<Point>> IntoValue<StackDirection> for (P, O, bool)

source§

impl StructuralPartialEq for StackDirection

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> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool

Gets if self equals other.
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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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
source§

impl<T> IntoVar<T> for T
where T: VarValue,

source§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. 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,

source§

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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> ToTxt for T
where T: ToString,

source§

fn to_txt(&self) -> Txt

Converts the given value to an owned Txt. Read more
source§

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

source§

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

source§

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
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> IpcValue for T
where T: Debug + Serialize + for<'d> Deserialize<'d> + Send + 'static,

source§

impl<T> StateValue for T
where T: Any + Send + Sync,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,