[gtk/wip/matthiasc/popup4: 57/93] Remove gdk_surface_get_root_coords as public api



commit 542c555cfbfbb7d516fb357e093cc2fb597ad022
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Mar 24 23:09:48 2019 -0400

    Remove gdk_surface_get_root_coords as public api
    
    We still need to keep the vfunc around, since the
    fallback implementation for move_to_rect uses it.
    So, a GDK backend must either have root coordinates
    or implement move_to_rect.

 docs/reference/gdk/gdk4-sections.txt | 1 -
 gdk/gdkinternals.h                   | 5 +++++
 gdk/gdksurface.h                     | 6 ------
 3 files changed, 5 insertions(+), 7 deletions(-)
---
diff --git a/docs/reference/gdk/gdk4-sections.txt b/docs/reference/gdk/gdk4-sections.txt
index 8abf9cfd88..6537bb6ba8 100644
--- a/docs/reference/gdk/gdk4-sections.txt
+++ b/docs/reference/gdk/gdk4-sections.txt
@@ -263,7 +263,6 @@ gdk_surface_get_position
 gdk_surface_get_root_origin
 gdk_surface_get_frame_extents
 gdk_surface_get_origin
-gdk_surface_get_root_coords
 gdk_surface_get_device_position
 GdkModifierType
 GdkModifierIntent
diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h
index 1f2d090cba..aced1f575b 100644
--- a/gdk/gdkinternals.h
+++ b/gdk/gdkinternals.h
@@ -345,6 +345,11 @@ GdkGrabStatus gdk_device_grab (GdkDevice        *device,
                                guint32           time_);
 void gdk_device_ungrab        (GdkDevice        *device,
                                guint32           time_);
+void gdk_surface_get_root_coords (GdkSurface *surface,
+                                  gint        x,
+                                  gint        y,
+                                  gint       *root_x,
+                                  gint       *root_y);
 
 
 G_END_DECLS
diff --git a/gdk/gdksurface.h b/gdk/gdksurface.h
index 2ff71e62a6..3249810156 100644
--- a/gdk/gdksurface.h
+++ b/gdk/gdksurface.h
@@ -597,12 +597,6 @@ gint          gdk_surface_get_origin     (GdkSurface      *surface,
                                           gint            *x,
                                           gint            *y);
 GDK_AVAILABLE_IN_ALL
-void          gdk_surface_get_root_coords (GdkSurface     *surface,
-                                           gint             x,
-                                           gint             y,
-                                           gint            *root_x,
-                                           gint            *root_y);
-GDK_AVAILABLE_IN_ALL
 void          gdk_surface_get_root_origin (GdkSurface     *surface,
                                            gint            *x,
                                            gint            *y);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]