[nautilus/wip/antoniof/gtk4-preparation-step-event-controllers: 20/46] floating-bar: Don't use gdk_window_get_position()




commit 42fdff2b1b72ce4a3cab4127d7141a63ce4396de
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]