pub struct WindowState { /* private fields */ }Expand description
Encapsulates and owns the global state of the application,
Implementations§
Source§impl WindowState
impl WindowState
pub fn new(root_view_id: ViewId, os_theme: Option<Theme>) -> Self
Sourcepub fn remove_view(&mut self, id: ViewId)
pub fn remove_view(&mut self, id: ViewId)
This removes a view from the app state.
pub fn is_hovered(&self, id: &ViewId) -> bool
pub fn is_focused(&self, id: &ViewId) -> bool
pub fn is_active(&self, id: &ViewId) -> bool
pub fn is_clicking(&self, id: &ViewId) -> bool
pub fn is_dark_mode(&self) -> bool
pub fn is_file_hover(&self, id: &ViewId) -> bool
pub fn is_dragging(&self) -> bool
pub fn set_root_size(&mut self, size: Size)
Sourcepub fn register_fixed_element(&mut self, id: ViewId)
pub fn register_fixed_element(&mut self, id: ViewId)
Register a view as having fixed positioning. Called when a view’s style sets IsFixed to true.
Sourcepub fn unregister_fixed_element(&mut self, id: ViewId)
pub fn unregister_fixed_element(&mut self, id: ViewId)
Unregister a view from fixed positioning. Called when a view’s style sets IsFixed to false.
pub fn compute_layout(&mut self)
Sourcepub fn schedule_style(&mut self, id: ViewId)
pub fn schedule_style(&mut self, id: ViewId)
Requests that the style pass will run for id on the next frame, and ensures new frame is
scheduled to happen.
Sourcepub fn schedule_layout(&mut self, id: ViewId)
pub fn schedule_layout(&mut self, id: ViewId)
Requests that the layout pass will run for id on the next frame, and ensures new frame is
scheduled to happen.
Sourcepub fn schedule_paint(&mut self, id: ViewId)
pub fn schedule_paint(&mut self, id: ViewId)
Requests that the paint pass will run for id on the next frame, and ensures new frame is
scheduled to happen.
Sourcepub fn request_compute_layout_recursive(&mut self, _id: ViewId)
pub fn request_compute_layout_recursive(&mut self, _id: ViewId)
Requests that compute_layout will run for _id and all direct and indirect children.
pub fn request_paint(&mut self, _id: ViewId)
Auto Trait Implementations§
impl Freeze for WindowState
impl !RefUnwindSafe for WindowState
impl !Send for WindowState
impl !Sync for WindowState
impl Unpin for WindowState
impl UnsafeUnpin for WindowState
impl !UnwindSafe for WindowState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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