[gtk/wip/carlosg/fix-crossing-on-unmap: 2/2] gtkwindow: Use pointer-oriented function to deal with crossing events
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/carlosg/fix-crossing-on-unmap: 2/2] gtkwindow: Use pointer-oriented function to deal with crossing events
- Date: Tue, 9 Aug 2022 16:58:15 +0000 (UTC)
commit 7b0ea65031ee32bce1974531d712fbbc02c302f6
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Aug 9 18:49:35 2022 +0200
gtkwindow: Use pointer-oriented function to deal with crossing events
Commit adba0b97 fixed missed pointer crossings by using a helper function that
was already present and looked like did everything that was needed. However
this function was oriented to keyboard focus and it also did update the related
widget state. Doing these changes on pointer-based crossing was misuse, and
could cause weird interactions with keyboard focus management.
Fix this by using gtkmain.c gtk_synthesize_crossing_event() that is in fact
oriented to pointers.
Fixes: adba0b97 (gtkwindow: Synthesize pointer crossing events on state changes)
Closes: https://gitlab.gnome.org/GNOME/gtk/-/issues/5094
gtk/gtkmain.c | 2 +-
gtk/gtkprivate.h | 9 +++++++++
gtk/gtkwindow.c | 6 +++++-
3 files changed, 15 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 41098e45fa..a4ea790bef 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -1112,7 +1112,7 @@ translate_coordinates (double event_x,
return TRUE;
}
-static void
+void
gtk_synthesize_crossing_events (GtkRoot *toplevel,
GtkCrossingType crossing_type,
GtkWidget *old_target,
diff --git a/gtk/gtkprivate.h b/gtk/gtkprivate.h
index 3495e07efc..7869347cad 100644
--- a/gtk/gtkprivate.h
+++ b/gtk/gtkprivate.h
@@ -152,6 +152,15 @@ char * _gtk_elide_underscores (const char *original);
void setlocale_initialization (void);
+void gtk_synthesize_crossing_events (GtkRoot *toplevel,
+ GtkCrossingType crossing_type,
+ GtkWidget *old_target,
+ GtkWidget *new_target,
+ double surface_x,
+ double surface_y,
+ GdkCrossingMode mode,
+ GdkDrop *drop);
+
G_END_DECLS
#endif /* __GTK_PRIVATE_H__ */
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index 7d7c4a312b..39ebe003bc 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -6462,7 +6462,11 @@ gtk_window_update_pointer_focus_on_state_change (GtkWindow *window,
old_target = g_object_ref (focus->target);
gtk_pointer_focus_repick_target (focus);
- synthesize_focus_change_events (window, old_target, focus->target, GTK_CROSSING_POINTER);
+ gtk_synthesize_crossing_events (window, GTK_CROSSING_POINTER,
+ old_target, focus->target,
+ focus->x, focus->y,
+ GDK_CROSSING_NORMAL,
+ NULL);
g_object_unref (old_target);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]