pub struct Event<A>(/* private fields */)
where
A: EventArgs;Expand description
Represents an event variable.
Implementations§
Source§impl<A> Event<A>where
A: EventArgs,
impl<A> Event<A>where
A: EventArgs,
Sourcepub fn var(&self) -> Var<EventUpdates<A>>
pub fn var(&self) -> Var<EventUpdates<A>>
Variable that tracks all the args notified in the last update cycle.
Note that the event variable is only cleared when new notifications are requested.
Sourcepub fn var_latest(&self) -> Var<Option<A>>
pub fn var_latest(&self) -> Var<Option<A>>
Variable that tracks the latest update.
Is only None if this event has never notified yet.
Sourcepub fn var_map<O>(
&self,
filter_map: impl FnMut(&A) -> Option<O> + Send + 'static,
fallback_init: impl Fn() -> O + Send + 'static,
) -> Var<O>where
O: VarValue,
pub fn var_map<O>(
&self,
filter_map: impl FnMut(&A) -> Option<O> + Send + 'static,
fallback_init: impl Fn() -> O + Send + 'static,
) -> Var<O>where
O: VarValue,
Filter map the latest args.
The variable tracks the latest args that passes the filter_map. Every event update calls the closure for each
pending args, latest first, and stops on the first args that produces a new value.
Sourcepub fn var_bind<O>(
&self,
other: &Var<O>,
filter_map: impl FnMut(&A) -> Option<O> + Send + 'static,
) -> VarHandlewhere
O: VarValue,
pub fn var_bind<O>(
&self,
other: &Var<O>,
filter_map: impl FnMut(&A) -> Option<O> + Send + 'static,
) -> VarHandlewhere
O: VarValue,
Bind filter the latest args to the variable.
The other variable will be updated with the latest args that passes the filter_map. Every event update calls the closure for each
pending args, latest first, and stops on the first args that produces a new value.
Sourcepub fn notify(&self, args: A)
pub fn notify(&self, args: A)
Modify the event variable to include the args in the next update.
Sourcepub fn each_update(&self, ignore_propagation: bool, handler: impl FnMut(&A))
pub fn each_update(&self, ignore_propagation: bool, handler: impl FnMut(&A))
Visit each new update, oldest first, that target the context widget.
If not called inside an widget visits all updates.
If ignore_propagation is false only calls the handler if the propagation is not stopped.
Sourcepub fn find_update<O>(
&self,
ignore_propagation: bool,
handler: impl FnMut(&A) -> Option<O>,
) -> Option<O>
pub fn find_update<O>( &self, ignore_propagation: bool, handler: impl FnMut(&A) -> Option<O>, ) -> Option<O>
Visit each_update, returns on the first args that produces an O.
Sourcepub fn any_update(
&self,
ignore_propagation: bool,
handler: impl FnMut(&A) -> bool,
) -> bool
pub fn any_update( &self, ignore_propagation: bool, handler: impl FnMut(&A) -> bool, ) -> bool
Visit each_update, returns on the first args that produces true.
Sourcepub fn latest_update<O>(
&self,
ignore_propagation: bool,
handler: impl FnOnce(&A) -> O,
) -> Option<O>
pub fn latest_update<O>( &self, ignore_propagation: bool, handler: impl FnOnce(&A) -> O, ) -> Option<O>
Visit the latest update that targets the context widget.
If not called inside an widget visits the latest in general.
If ignore_propagation is false only calls the handler if the propagation is not stopped.
Sourcepub fn has_update(&self, ignore_propagation: bool) -> bool
pub fn has_update(&self, ignore_propagation: bool) -> bool
If has at least one update for the context widget.
If ignore_propagation is false only returns true if any propagation is not stopped.
Sourcepub fn subscribe(&self, op: UpdateOp, widget_id: WidgetId) -> VarHandle
pub fn subscribe(&self, op: UpdateOp, widget_id: WidgetId) -> VarHandle
Subscribe the widget to receive updates when events are relevant to it.
Sourcepub fn subscribe_when(
&self,
op: UpdateOp,
widget_id: WidgetId,
predicate: impl Fn(&A) -> bool + Send + Sync + 'static,
) -> VarHandle
pub fn subscribe_when( &self, op: UpdateOp, widget_id: WidgetId, predicate: impl Fn(&A) -> bool + Send + Sync + 'static, ) -> VarHandle
Subscribe the widget to receive updates when events are relevant to it and the latest args passes the predicate.
Sourcepub fn on_pre_event(
&self,
ignore_propagation: bool,
handler: Box<dyn FnMut(&A) -> HandlerResult + Send>,
) -> VarHandle
pub fn on_pre_event( &self, ignore_propagation: bool, handler: Box<dyn FnMut(&A) -> HandlerResult + Send>, ) -> VarHandle
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.
If ignore_propagation is set also call handlers for args with stopped propagation.
Returns a VarHandle that can be dropped to unsubscribe, you can also unsubscribe from inside the handler by calling
unsubscribe.
§Examples
let handle = FOCUS_CHANGED_EVENT.on_pre_event(
false,
hn!(|args| {
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 Handler<A>, there are multiple flavors of handlers, including
async handlers that allow calling .await. The handler closures can be declared using hn!, async_hn!,
hn_once! and async_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,
ignore_propagation: bool,
handler: Box<dyn FnMut(&A) -> HandlerResult + Send>,
) -> VarHandle
pub fn on_event( &self, ignore_propagation: bool, handler: Box<dyn FnMut(&A) -> HandlerResult + Send>, ) -> VarHandle
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.
If ignore_propagation is set also call handlers for args with stopped propagation.
Returns an VarHandle that can be dropped to unsubscribe, you can also unsubscribe from inside the handler by calling
unsubscribe in the third parameter of hn! or async_hn!.
§Examples
let handle = FOCUS_CHANGED_EVENT.on_event(
false,
hn!(|args| {
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 Handler<A>, there are multiple flavors of handlers, including
async handlers that allow calling .await. The handler closures can be declared using hn!, async_hn!,
hn_once! and async_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) -> Receiver<A>where
A: Send,
pub fn receiver(&self) -> Receiver<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 hook(
&self,
handler: impl FnMut(&A) -> bool + Send + 'static,
) -> VarHandle
pub fn hook( &self, handler: impl FnMut(&A) -> bool + Send + 'static, ) -> VarHandle
Setups a callback for just after the event notifications are listed, the closure runs in the root app context, just like var modify and hook closures.
The closure must return true to be retained and false to be dropped.
Any event notification or var modification done in the handler will apply on the same update that notifies this event.
Sourcepub async fn wait_match(
&self,
predicate: impl Fn(&A) -> bool + Send + Sync + 'static,
)
pub async fn wait_match( &self, predicate: impl Fn(&A) -> bool + Send + Sync + 'static, )
Wait until any args, current or new passes the predicate.
Sourcepub fn with<R>(&self, visitor: impl FnOnce(&EventUpdates<A>) -> R) -> R
pub fn with<R>(&self, visitor: impl FnOnce(&EventUpdates<A>) -> R) -> R
Visit the args current value of var.
Methods from Deref<Target = AnyEvent>§
Sourcepub fn subscribe(&self, op: UpdateOp, widget_id: WidgetId) -> VarHandle
pub fn subscribe(&self, op: UpdateOp, widget_id: WidgetId) -> VarHandle
Subscribe the widget to receive updates when events are relevant to it.
Sourcepub fn var(&self) -> AnyVar
pub fn var(&self) -> AnyVar
Variable that tracks all the args notified in the last update cycle.
Note that the event variable is only cleared when new notifications are requested.
Sourcepub fn hook(
&self,
handler: impl FnMut(&(dyn AnyEventArgs + 'static)) -> bool + Send + 'static,
) -> VarHandle
pub fn hook( &self, handler: impl FnMut(&(dyn AnyEventArgs + 'static)) -> bool + Send + 'static, ) -> VarHandle
Setups a callback for just after the event notifications are listed, the closure runs in the root app context, just like var modify and hook closures.
The closure must return true to be retained and false to be dropped.
Any event notification or var modification done in the handler will apply on the same update that notifies this event.
Trait Implementations§
impl<A> Copy for Event<A>where
A: EventArgs,
impl<A> Eq for Event<A>where
A: EventArgs,
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§
§impl<T> AnyEq for T
impl<T> AnyEq for T
Source§impl<T> AnyVarValue for T
impl<T> AnyVarValue for T
Source§fn clone_boxed(&self) -> BoxAnyVarValue
fn clone_boxed(&self) -> BoxAnyVarValue
Source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
self and other are equal.Source§fn try_swap(&mut self, other: &mut (dyn AnyVarValue + 'static)) -> bool
fn try_swap(&mut self, other: &mut (dyn AnyVarValue + 'static)) -> bool
other if both are of the same type.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,
§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>
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>
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)
&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)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§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<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> FsChangeNote for T
impl<T> FsChangeNote for T
§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