mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-23 17:35:00 +00:00
Add Callback::from_fn_mut
Cursive::add_global_callback now takes a FnMut
This commit is contained in:
parent
b2d800c798
commit
28bb7af6af
@ -514,12 +514,12 @@ impl Cursive {
|
|||||||
/// ```
|
/// ```
|
||||||
pub fn add_global_callback<F, E: Into<Event>>(&mut self, event: E, cb: F)
|
pub fn add_global_callback<F, E: Into<Event>>(&mut self, event: E, cb: F)
|
||||||
where
|
where
|
||||||
F: Fn(&mut Cursive) + 'static,
|
F: FnMut(&mut Cursive) + 'static,
|
||||||
{
|
{
|
||||||
self.global_callbacks
|
self.global_callbacks
|
||||||
.entry(event.into())
|
.entry(event.into())
|
||||||
.or_insert_with(Vec::new)
|
.or_insert_with(Vec::new)
|
||||||
.push(Callback::from_fn(cb));
|
.push(Callback::from_fn_mut(cb));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Removes any callback tied to the given event.
|
/// Removes any callback tied to the given event.
|
||||||
|
17
src/event.rs
17
src/event.rs
@ -14,6 +14,7 @@
|
|||||||
//! table is checked.
|
//! table is checked.
|
||||||
|
|
||||||
use std::any::Any;
|
use std::any::Any;
|
||||||
|
use std::cell::RefCell;
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use vec::Vec2;
|
use vec::Vec2;
|
||||||
@ -39,6 +40,22 @@ impl Callback {
|
|||||||
})))
|
})))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Wrap a `FnMut` into a `Callback` object.
|
||||||
|
///
|
||||||
|
/// If this methods tries to call itself, nested calls will be no-ops.
|
||||||
|
pub fn from_fn_mut<F>(f: F) -> Self
|
||||||
|
where
|
||||||
|
F: 'static + FnMut(&mut Cursive),
|
||||||
|
{
|
||||||
|
let cb = RefCell::new(f);
|
||||||
|
|
||||||
|
Self::from_fn(move |s| {
|
||||||
|
if let Ok(mut cb) = cb.try_borrow_mut() {
|
||||||
|
(&mut *cb)(s);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
/// Returns a dummy callback that doesn't run anything.
|
/// Returns a dummy callback that doesn't run anything.
|
||||||
pub fn dummy() -> Self {
|
pub fn dummy() -> Self {
|
||||||
Callback::from_fn(|_| ())
|
Callback::from_fn(|_| ())
|
||||||
|
Loading…
Reference in New Issue
Block a user