[nautilus/wip/antoniof/gtk4-preparation-step-event-controllers: 2/22] floating-bar: Don't use gdk_window_get_position()
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/antoniof/gtk4-preparation-step-event-controllers: 2/22] floating-bar: Don't use gdk_window_get_position()
- Date: Wed, 11 Aug 2021 08:37:34 +0000 (UTC)
commit 9b9eac8fec219b0ec9141e363451c2c1686a117f
Author: António Fernandes <antoniof gnome org>
Date: Thu Aug 5 20:16:45 2021 +0100
floating-bar: Don't use gdk_window_get_position()
It's gone in GTK4.
Instead, translate to parent widget coordinates, which is the
same coordinate system we get from the event controller.
src/nautilus-floating-bar.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/src/nautilus-floating-bar.c b/src/nautilus-floating-bar.c
index 29c11291c..d6cbd2084 100644
--- a/src/nautilus-floating-bar.c
+++ b/src/nautilus-floating-bar.c
@@ -233,6 +233,7 @@ on_event_controller_motion_enter (GtkEventControllerMotion *controller,
gpointer user_data)
{
NautilusFloatingBar *self = NAUTILUS_FLOATING_BAR (user_data);
+ GtkWidget *parent;
CheckPointerData *data;
gint y_pos;
@@ -243,7 +244,9 @@ on_event_controller_motion_enter (GtkEventControllerMotion *controller,
return;
}
- gdk_window_get_position (gtk_widget_get_window (GTK_WIDGET (self)), NULL, &y_pos);
+ parent = gtk_event_controller_get_widget (GTK_EVENT_CONTROLLER (controller));
+ gtk_widget_translate_coordinates (GTK_WIDGET (self), parent, 0, 0, NULL, &y_pos);
+
if (y < y_pos)
{
return;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]