pub struct Event<A: EventArgs> { /* private fields */ }
Expand description
Represents an event.
Use the event!
macro to declare events.
Implementations§
source§impl<A: EventArgs> Event<A>
impl<A: EventArgs> Event<A>
sourcepub fn subscribe(&self, widget_id: WidgetId) -> EventHandle
pub fn subscribe(&self, widget_id: WidgetId) -> EventHandle
Register the widget to receive targeted events from this event.
Widgets only receive events if they are in the delivery list generated by the event args and are subscribers to the event. App extensions receive all events.
sourcepub fn is_subscriber(&self, widget_id: WidgetId) -> bool
pub fn is_subscriber(&self, widget_id: WidgetId) -> bool
Returns true
if the widget is subscribed to this event.
sourcepub fn has_subscribers(&self) -> bool
pub fn has_subscribers(&self) -> bool
Returns true
if at least one widget is subscribed to this event.
sourcepub fn visit_subscribers(&self, visit: impl FnMut(WidgetId))
pub fn visit_subscribers(&self, visit: impl FnMut(WidgetId))
Calls visit
for each widget subscribed to this event.
Note that trying to subscribe or add hook inside visit
will deadlock. Inside visit
you can notify the event and
generate event updates.
sourcepub fn has(&self, update: &EventUpdate) -> bool
pub fn has(&self, update: &EventUpdate) -> bool
Returns true
if the update is for this event.
sourcepub fn on<'a>(&self, update: &'a EventUpdate) -> Option<&'a A>
pub fn on<'a>(&self, update: &'a EventUpdate) -> Option<&'a A>
Get the event update args if the update is for this event.
sourcepub fn on_unhandled<'a>(&self, update: &'a EventUpdate) -> Option<&'a A>
pub fn on_unhandled<'a>(&self, update: &'a EventUpdate) -> Option<&'a A>
Get the event update args if the update is for this event and propagation is not stopped.
sourcepub fn handle<R>(
&self,
update: &EventUpdate,
handler: impl FnOnce(&A) -> R,
) -> Option<R>
pub fn handle<R>( &self, update: &EventUpdate, handler: impl FnOnce(&A) -> R, ) -> Option<R>
Calls handler
if the update is for this event and propagation is not stopped, after the handler is called propagation is stopped.
sourcepub fn new_update(&self, args: A) -> EventUpdate
pub fn new_update(&self, args: A) -> EventUpdate
Create an event update for this event with delivery list filtered by the event subscribers.
sourcepub fn new_update_custom(
&self,
args: A,
delivery_list: UpdateDeliveryList,
) -> EventUpdate
pub fn new_update_custom( &self, args: A, delivery_list: UpdateDeliveryList, ) -> EventUpdate
Create and event update for this event with a custom delivery list.
sourcepub fn on_pre_event<H>(&self, handler: H) -> EventHandlewhere
H: AppHandler<A>,
pub fn on_pre_event<H>(&self, handler: H) -> EventHandlewhere
H: AppHandler<A>,
Creates a preview event handler.
The event handler
is called for every update that has not stopped propagation
.
The handler is called before widget handlers and on_event
handlers. The handler is called
after all previous registered preview handlers.
Returns an EventHandle
that can be dropped to unsubscribe, you can also unsubscribe from inside the handler by calling
unsubscribe
in the third parameter of app_hn!
or async_app_hn!
.
§Examples
let handle = FOCUS_CHANGED_EVENT.on_pre_event(app_hn!(|args: &FocusChangedArgs, _| {
println!("focused: {:?}", args.new_focus);
}));
The example listens to all FOCUS_CHANGED_EVENT
events, independent of widget context and before all UI handlers.
§Handlers
the event handler can be any type that implements AppHandler
, there are multiple flavors of handlers, including
async handlers that allow calling .await
. The handler closures can be declared using app_hn!
, async_app_hn!
,
app_hn_once!
and async_app_hn_once!
.
§Async
Note that for async handlers only the code before the first .await
is called in the preview moment, code after runs in
subsequent event updates, after the event has already propagated, so stopping propagation
only causes the desired effect before the first .await
.
sourcepub fn on_event(&self, handler: impl AppHandler<A>) -> EventHandle
pub fn on_event(&self, handler: impl AppHandler<A>) -> EventHandle
Creates an event handler.
The event handler
is called for every update that has not stopped propagation
.
The handler is called after all on_pre_event
all widget handlers and all on_event
handlers registered before this one.
Returns an EventHandle
that can be dropped to unsubscribe, you can also unsubscribe from inside the handler by calling
unsubscribe
in the third parameter of app_hn!
or async_app_hn!
.
§Examples
let handle = FOCUS_CHANGED_EVENT.on_event(app_hn!(|args: &FocusChangedArgs, _| {
println!("focused: {:?}", args.new_focus);
}));
The example listens to all FOCUS_CHANGED_EVENT
events, independent of widget context, after the UI was notified.
§Handlers
the event handler can be any type that implements AppHandler
, there are multiple flavors of handlers, including
async handlers that allow calling .await
. The handler closures can be declared using app_hn!
, async_app_hn!
,
app_hn_once!
and async_app_hn_once!
.
§Async
Note that for async handlers only the code before the first .await
is called in the preview moment, code after runs in
subsequent event updates, after the event has already propagated, so stopping propagation
only causes the desired effect before the first .await
.
sourcepub fn receiver(&self) -> EventReceiver<A>where
A: Send,
pub fn receiver(&self) -> EventReceiver<A>where
A: Send,
Creates a receiver channel for the event. The event updates are send on hook, before even preview handlers. The receiver is unbounded, it will fill indefinitely if not drained. The receiver can be used in any thread, including non-app threads.
Drop the receiver to stop listening.
sourcepub fn sender(&self) -> EventSender<A>where
A: Send,
pub fn sender(&self) -> EventSender<A>where
A: Send,
Creates a sender channel that can notify the event.
Events can notify from any app thread, this sender can notify other threads too.
sourcepub fn has_hooks(&self) -> bool
pub fn has_hooks(&self) -> bool
Returns true
if any app level callback is registered for this event.
This includes AnyEvent::hook
, Event::on_pre_event
, Event::on_event
and Event::receiver
.
Trait Implementations§
impl<A: EventArgs> Copy for Event<A>
impl<A: EventArgs> Eq for Event<A>
Auto Trait Implementations§
impl<A> Freeze for Event<A>
impl<A> RefUnwindSafe for Event<A>
impl<A> Send for Event<A>
impl<A> Sync for Event<A>
impl<A> Unpin for Event<A>
impl<A> UnwindSafe for Event<A>
Blanket Implementations§
source§impl<T> AnyVarValue for Twhere
T: VarValue,
impl<T> AnyVarValue for Twhere
T: VarValue,
source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
dyn Any
methods.source§fn clone_boxed(&self) -> Box<dyn AnyVarValue>
fn clone_boxed(&self) -> Box<dyn AnyVarValue>
source§fn clone_boxed_var(&self) -> Box<dyn AnyVar>
fn clone_boxed_var(&self) -> Box<dyn AnyVar>
LocalVar<Self>
.source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
self
equals other
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§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>
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>
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