[mutter/wip/carlosg/input-method-fixes: 3/6] clutter: Actively update ClutterText surrounding text on changes
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/carlosg/input-method-fixes: 3/6] clutter: Actively update ClutterText surrounding text on changes
- Date: Sat, 23 Apr 2022 13:05:57 +0000 (UTC)
commit 48cef60e4f4ca8897f94935de16387d374d5af19
Author: Carlos Garnacho <carlosg gnome org>
Date: Fri Apr 22 18:00:24 2022 +0200
clutter: Actively update ClutterText surrounding text on changes
Right now we have a bit of a mixed bag between an active model where
input foci set the surrounding text without being asked for (e.g.
wayland's text_input), and a passive model where the IM engines ask
for content.
Make ClutterText take the same side than text_input, so that dealing
with those is at least consistent.
clutter/clutter/clutter-text.c | 4 ++++
1 file changed, 4 insertions(+)
---
diff --git a/clutter/clutter/clutter-text.c b/clutter/clutter/clutter-text.c
index 5ca5fa4a2c..aa06c37a52 100644
--- a/clutter/clutter/clutter-text.c
+++ b/clutter/clutter/clutter-text.c
@@ -375,6 +375,8 @@ clutter_text_input_focus_delete_surrounding (ClutterInputFocus *focus,
}
if (clutter_text_get_editable (clutter_text))
clutter_text_delete_text (clutter_text, start, start + len);
+
+ clutter_text_input_focus_request_surrounding (focus);
}
static void
@@ -389,6 +391,7 @@ clutter_text_input_focus_commit_text (ClutterInputFocus *focus,
clutter_text_insert_text (clutter_text, text,
clutter_text_get_cursor_position (clutter_text));
clutter_text_set_preedit_string (clutter_text, NULL, NULL, 0);
+ clutter_text_input_focus_request_surrounding (focus);
}
}
@@ -1336,6 +1339,7 @@ update_cursor_location (ClutterText *self)
clutter_actor_get_transformed_position (CLUTTER_ACTOR (self), &x, &y);
graphene_rect_offset (&rect, x, y);
clutter_input_focus_set_cursor_location (priv->input_focus, &rect);
+ clutter_text_input_focus_request_surrounding (priv->input_focus);
}
static inline void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]