diff options
author | 2025-02-11 15:47:08 +0100 | |
---|---|---|
committer | 2025-02-11 15:47:08 +0100 | |
commit | b80c23fd9423a8ce4a168779ec753970311be50f (patch) | |
tree | 6e3e29cde5c7499cd216cddb7c2ed259eb7a7ae7 | |
parent | 12653114bd1cadb10b9fe185b6f2b1e4300bdcf7 (diff) | |
download | iced-b80c23fd9423a8ce4a168779ec753970311be50f.tar.gz iced-b80c23fd9423a8ce4a168779ec753970311be50f.tar.bz2 iced-b80c23fd9423a8ce4a168779ec753970311be50f.zip |
add unfocus operation
-rw-r--r-- | core/src/widget/operation/focusable.rs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/core/src/widget/operation/focusable.rs b/core/src/widget/operation/focusable.rs index 8f66e575..cb0c7845 100644 --- a/core/src/widget/operation/focusable.rs +++ b/core/src/widget/operation/focusable.rs @@ -61,6 +61,33 @@ pub fn focus<T>(target: Id) -> impl Operation<T> { Focus { target } } +/// Produces an [`Operation`] that unfocuses the focused widget +pub fn unfocus<T>() -> impl Operation<T> { + struct Unfocus; + + impl<T> Operation<T> for Unfocus { + fn focusable( + &mut self, + _id: Option<&Id>, + _bounds: Rectangle, + state: &mut dyn Focusable, + ) { + state.unfocus(); + } + + fn container( + &mut self, + _id: Option<&Id>, + _bounds: Rectangle, + operate_on_children: &mut dyn FnMut(&mut dyn Operation<T>), + ) { + operate_on_children(self); + } + } + + Unfocus +} + /// Produces an [`Operation`] that generates a [`Count`] and chains it with the /// provided function to build a new [`Operation`]. pub fn count() -> impl Operation<Count> { |