summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor <hector@hecrj.dev>2025-02-11 20:57:04 +0100
committerLibravatar GitHub <noreply@github.com>2025-02-11 20:57:04 +0100
commitc98f60a42ddb208f6d31f97adabb5f8cc755da67 (patch)
treeeb1a2f2c0536c386874aba07989267af97206907
parent12653114bd1cadb10b9fe185b6f2b1e4300bdcf7 (diff)
parentd91e426dab666acbdcd99627910541c0ab4d6ce6 (diff)
downloadiced-c98f60a42ddb208f6d31f97adabb5f8cc755da67.tar.gz
iced-c98f60a42ddb208f6d31f97adabb5f8cc755da67.tar.bz2
iced-c98f60a42ddb208f6d31f97adabb5f8cc755da67.zip
Merge pull request #2804 from edwloef/unfocus_operation
add unfocus operation
-rw-r--r--core/src/widget/operation/focusable.rs27
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..a1327bc1 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> {