ori::core::view

Struct PodState

Source
pub struct PodState<T, V>
where V: View<T> + ?Sized,
{ /* private fields */ }
Expand description

The state of a Pod.

Methods from Deref<Target = ViewState>§

Source

pub fn prepare(&mut self)

Prepare the view.

Source

pub fn propagate(&mut self, child: &mut ViewState)

Propagate the state of a child view.

Source

pub fn id(&self) -> ViewId

Get the id of the view.

Source

pub fn is_hovered(&self) -> bool

Get whether the view is hovered.

Source

pub fn set_hovered(&mut self, hovered: bool)

Set whether the view is hovered.

Source

pub fn is_focused(&self) -> bool

Get whether the view is focused.

Source

pub fn set_focused(&mut self, focused: bool)

Set whether the view is focused.

Source

pub fn is_active(&self) -> bool

Get whether the view is active.

Source

pub fn set_active(&mut self, active: bool)

Set whether the view is active.

Source

pub fn has_hovered(&self) -> bool

Get whether the view has a hovered child.

Source

pub fn has_focused(&self) -> bool

Get whether the view has a focused child.

Source

pub fn has_active(&self) -> bool

Get whether the view has an active child.

Source

pub fn is_focusable(&self) -> bool

Get whether the view is focusable.

Source

pub fn set_focusable(&mut self, focusable: bool)

Set whether the view is focusable.

Source

pub fn contains_property<T>(&self) -> bool
where T: 'static,

Check if the view has the property T.

Source

pub fn insert_property<T>(&mut self, item: T)
where T: 'static,

Insert a property into the view.

Source

pub fn remove_property<T>(&mut self) -> Option<T>
where T: 'static,

Remove a property from the view.

Source

pub fn get_property<T>(&self) -> Option<&T>
where T: 'static,

Get the property T of the view.

Source

pub fn get_property_mut<T>(&mut self) -> Option<&mut T>
where T: 'static,

Get the property T of the view mutably.

Source

pub fn property_or_insert_with<T, F>(&mut self, f: F) -> &mut T
where T: 'static, F: FnOnce() -> T,

Get the property T of the view or insert it with a value.

Source

pub fn property_or<T>(&mut self, item: T) -> &mut T
where T: 'static,

Get the property T of the view or insert it with a value.

Source

pub fn property_or_default<T>(&mut self) -> &mut T
where T: 'static + Default,

Get the property T of the view or insert it with a default value.

Source

pub fn set_size(&mut self, size: Size)

Set the size of the view.

Source

pub fn size(&self) -> Size

Get the size of the view.

Source

pub fn rect(&self) -> Rect

Get the rect of the view in local coordinates.

Source

pub fn transform(&self) -> Affine

Get the transform of the view.

Source

pub fn set_transform(&mut self, transform: Affine)

Set the transform of the view.

Source

pub fn translate(&mut self, translation: Vector)

Translate the transform of the view.

Source

pub fn request_layout(&mut self)

Request a layout of the view tree.

Source

pub fn request_draw(&mut self)

Request a draw of the view tree.

Source

pub fn request_animate(&mut self)

Request an animation frame of the view tree.

Source

pub fn needs_layout(&self) -> bool

Get whether the view needs to be laid out.

Source

pub fn needs_draw(&self) -> bool

Get whether the view needs to be drawn.

Source

pub fn needs_animate(&self) -> bool

Get whether the view needs an animation frame.

Source

pub fn mark_layed_out(&mut self)

Mark the view as laid out.

This will remove the Update::LAYOUT flag.

Source

pub fn mark_drawn(&mut self)

Mark the view as drawn.

This will remove the Update::DRAW flag.

Source

pub fn mark_animated(&mut self)

Mark the view as animated.

This will remove the Update::ANIMATE flag.

Source

pub fn flags(&self) -> ViewFlags

Get the flags of the view.

Source

pub fn update(&self) -> Update

Get the Update of the view.

Source

pub fn cursor(&self) -> Option<Cursor>

Get the cursor of the view.

Source

pub fn set_cursor(&mut self, cursor: Option<Cursor>)

Set the cursor of the view.

Source

pub fn ime(&self) -> Option<&Ime>

Get the IME of the view.

Source

pub fn set_ime(&mut self, ime: Option<Ime>)

Set the IME of the view.

Trait Implementations§

Source§

impl<T, V> Deref for PodState<T, V>
where V: View<T> + ?Sized,

Source§

type Target = ViewState

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<PodState<T, V> as Deref>::Target

Dereferences the value.
Source§

impl<T, V> DerefMut for PodState<T, V>
where V: View<T> + ?Sized,

Source§

fn deref_mut(&mut self) -> &mut <PodState<T, V> as Deref>::Target

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<T, V> Freeze for PodState<T, V>
where <V as View<T>>::State: Freeze, V: ?Sized,

§

impl<T, V> !RefUnwindSafe for PodState<T, V>

§

impl<T, V> !Send for PodState<T, V>

§

impl<T, V> !Sync for PodState<T, V>

§

impl<T, V> Unpin for PodState<T, V>
where <V as View<T>>::State: Unpin, V: ?Sized,

§

impl<T, V> !UnwindSafe for PodState<T, V>

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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