pub struct EventCx<'a, 'b> { /* private fields */ }
Expand description
A context for handling events.
Implementations§
Source§impl<'a, 'b> EventCx<'a, 'b>
impl<'a, 'b> EventCx<'a, 'b>
Sourcepub fn new(
base: &'a mut BaseCx<'b>,
view_state: &'a mut ViewState,
rebuild: &'a mut bool,
) -> EventCx<'a, 'b>
pub fn new( base: &'a mut BaseCx<'b>, view_state: &'a mut ViewState, rebuild: &'a mut bool, ) -> EventCx<'a, 'b>
Create a new event context.
Sourcepub fn as_build_cx(&mut self) -> BuildCx<'_, 'b>
pub fn as_build_cx(&mut self) -> BuildCx<'_, 'b>
Get a build context.
Sourcepub fn as_rebuild_cx(&mut self) -> RebuildCx<'_, 'b>
pub fn as_rebuild_cx(&mut self) -> RebuildCx<'_, 'b>
Get a rebuild context.
Sourcepub fn as_layout_cx(&mut self) -> LayoutCx<'_, 'b>
pub fn as_layout_cx(&mut self) -> LayoutCx<'_, 'b>
Get a layout context.
Sourcepub fn was_hovered(&self) -> bool
pub fn was_hovered(&self) -> bool
Get whether the view was hovered last call.
Sourcepub fn was_focused(&self) -> bool
pub fn was_focused(&self) -> bool
Get whether the view was focused last call.
Sourcepub fn was_active(&self) -> bool
pub fn was_active(&self) -> bool
Get whether the view was active last call.
Sourcepub fn had_hovered(&self) -> bool
pub fn had_hovered(&self) -> bool
Get whether a child view was hovered last call.
Sourcepub fn had_focused(&self) -> bool
pub fn had_focused(&self) -> bool
Get whether a child view was focused last call.
Sourcepub fn had_active(&self) -> bool
pub fn had_active(&self) -> bool
Get whether a child view was active last call.
Sourcepub fn hovered_changed(&self) -> bool
pub fn hovered_changed(&self) -> bool
Get whether the view’s hovered state changed.
Sourcepub fn focused_changed(&self) -> bool
pub fn focused_changed(&self) -> bool
Get whether the view’s focused state changed.
Sourcepub fn active_changed(&self) -> bool
pub fn active_changed(&self) -> bool
Get whether the view’s active state changed.
Sourcepub fn has_hovered_changed(&self) -> bool
pub fn has_hovered_changed(&self) -> bool
Get whether a child view’s hovered state changed.
Sourcepub fn has_focused_changed(&self) -> bool
pub fn has_focused_changed(&self) -> bool
Get whether a child view’s focused state changed.
Sourcepub fn has_active_changed(&self) -> bool
pub fn has_active_changed(&self) -> bool
Get whether a child view’s active state changed.
Source§impl EventCx<'_, '_>
impl EventCx<'_, '_>
Sourcepub fn window_mut(&mut self) -> &mut Window
pub fn window_mut(&mut self) -> &mut Window
Get the window mutably.
Sourcepub fn is_hovered(&self) -> bool
pub fn is_hovered(&self) -> bool
Get whether the view is hovered.
Sourcepub fn is_focused(&self) -> bool
pub fn is_focused(&self) -> bool
Get whether the view is focused.
Sourcepub fn is_focusable(&self) -> bool
pub fn is_focusable(&self) -> bool
Get whether the view is focusable.
Sourcepub fn has_hovered(&self) -> bool
pub fn has_hovered(&self) -> bool
Get whether a child view is hovered.
Sourcepub fn has_focused(&self) -> bool
pub fn has_focused(&self) -> bool
Get whether a child view is focused.
Sourcepub fn has_active(&self) -> bool
pub fn has_active(&self) -> bool
Get whether a child view is active.
Sourcepub fn contains_property<T>(&self) -> boolwhere
T: 'static,
pub fn contains_property<T>(&self) -> boolwhere
T: 'static,
Check if the view has the property T
.
Sourcepub fn insert_property<T>(&mut self, item: T)where
T: 'static,
pub fn insert_property<T>(&mut self, item: T)where
T: 'static,
Insert a property into the view.
Sourcepub fn remove_property<T>(&mut self) -> Option<T>where
T: 'static,
pub fn remove_property<T>(&mut self) -> Option<T>where
T: 'static,
Remove a property from the view.
Sourcepub fn get_property<T>(&self) -> Option<&T>where
T: 'static,
pub fn get_property<T>(&self) -> Option<&T>where
T: 'static,
Get the property T
of the view.
Sourcepub fn get_property_mut<T>(&mut self) -> Option<&mut T>where
T: 'static,
pub fn get_property_mut<T>(&mut self) -> Option<&mut T>where
T: 'static,
Get the property T
of the view mutably.
Sourcepub fn property_or_insert_with<T, F>(&mut self, f: F) -> &mut Twhere
T: 'static,
F: FnOnce() -> T,
pub fn property_or_insert_with<T, F>(&mut self, f: F) -> &mut Twhere
T: 'static,
F: FnOnce() -> T,
Get the property T
of the view or insert it with a value.
Sourcepub fn property_or<T>(&mut self, item: T) -> &mut Twhere
T: 'static,
pub fn property_or<T>(&mut self, item: T) -> &mut Twhere
T: 'static,
Get the property T
of the view or insert it with a value.
Sourcepub fn property_or_default<T>(&mut self) -> &mut Twhere
T: 'static + Default,
pub fn property_or_default<T>(&mut self) -> &mut Twhere
T: 'static + Default,
Get the property T
of the view or insert it with a default value.
Source§impl EventCx<'_, '_>
impl EventCx<'_, '_>
Sourcepub fn focus_next(&mut self)
pub fn focus_next(&mut self)
Request the next focusable view to be focused.
Sourcepub fn focus_prev(&mut self)
pub fn focus_prev(&mut self)
Request the previous focusable view to be focused.
Sourcepub fn set_cursor(&mut self, cursor: Option<Cursor>)
pub fn set_cursor(&mut self, cursor: Option<Cursor>)
Set the cursor of the view.
Sourcepub fn set_hovered(&mut self, hovered: bool) -> bool
pub fn set_hovered(&mut self, hovered: bool) -> bool
Set whether the view is hovered.
Returns true
if the hovered state changed.
Sourcepub fn set_focused(&mut self, focused: bool) -> bool
pub fn set_focused(&mut self, focused: bool) -> bool
Set whether the view is focused.
Returns true
if the focused state changed.
Sourcepub fn set_active(&mut self, active: bool) -> bool
pub fn set_active(&mut self, active: bool) -> bool
Set whether the view is active.
Returns true
if the active state changed.
Sourcepub fn set_focusable(&mut self, focusable: bool) -> bool
pub fn set_focusable(&mut self, focusable: bool) -> bool
Set whether the view is focusable.
Returns true
if the focusable state changed.
Methods from Deref<Target = BaseCx<'b>>§
Sourcepub fn measure_paragraph(&mut self, paragraph: &Paragraph, width: f32) -> Size
pub fn measure_paragraph(&mut self, paragraph: &Paragraph, width: f32) -> Size
Measure a paragraph.
Sourcepub fn layout_paragraph(
&mut self,
paragraph: &Paragraph,
width: f32,
) -> Vec<TextLayoutLine>
pub fn layout_paragraph( &mut self, paragraph: &Paragraph, width: f32, ) -> Vec<TextLayoutLine>
Layout a paragraph.
Sourcepub fn proxy(&self) -> CommandProxy
pub fn proxy(&self) -> CommandProxy
Get the CommandProxy
.
Sourcepub fn spawn_async(&mut self, future: impl Future<Output = ()> + Send + 'static)
pub fn spawn_async(&mut self, future: impl Future<Output = ()> + Send + 'static)
Spawn a future.
Sourcepub fn cmd_async<T>(&self, future: impl Future<Output = T> + Send + 'static)
pub fn cmd_async<T>(&self, future: impl Future<Output = T> + Send + 'static)
Spawn a future sending a command when it completes.
Sourcepub fn contexts_mut(&mut self) -> &mut Contexts
pub fn contexts_mut(&mut self) -> &mut Contexts
Get a mutable reference to the Contexts
.
Sourcepub fn insert_context<T>(&mut self, context: T) -> Option<T>where
T: Any,
pub fn insert_context<T>(&mut self, context: T) -> Option<T>where
T: Any,
Insert a context.
Sourcepub fn contains_context<T>(&self) -> boolwhere
T: Any,
pub fn contains_context<T>(&self) -> boolwhere
T: Any,
Check if a context is contained.
Sourcepub fn remove_context<T>(&mut self) -> Option<T>where
T: Any,
pub fn remove_context<T>(&mut self) -> Option<T>where
T: Any,
Remove a context.
Sourcepub fn get_context<T>(&self) -> Option<&T>where
T: Any,
pub fn get_context<T>(&self) -> Option<&T>where
T: Any,
Get a context.
Sourcepub fn get_context_mut<T>(&mut self) -> Option<&mut T>where
T: Any,
pub fn get_context_mut<T>(&mut self) -> Option<&mut T>where
T: Any,
Get a mutable context.
Sourcepub fn context_mut<T>(&mut self) -> &mut Twhere
T: Any,
pub fn context_mut<T>(&mut self) -> &mut Twhere
T: Any,
Sourcepub fn context_or_default<T>(&mut self) -> &mut T
pub fn context_or_default<T>(&mut self) -> &mut T
Get a context or insert a default
.