summaryrefslogtreecommitdiff
path: root/gdk/gdkeventsprivate.h
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2020-12-02 15:29:54 +0100
committerJonas Ådahl <jadahl@gmail.com>2020-12-07 20:37:29 +0100
commit42679f2903aa79639d7b24cf6aab2f5396d87831 (patch)
treedc9d506215faac26f7817a9165657e68390a5bce /gdk/gdkeventsprivate.h
parent3f96d4b6dae56e5e3fc27a4d7b9a8bd90c9a802c (diff)
downloadgtk+-42679f2903aa79639d7b24cf6aab2f5396d87831.tar.gz
gdk: Replace all GDK_CONFIGURE usage with GdkSurface::layout
This removes the GDK_CONFIGURE event and all related functions and data types; it includes untested changes to the MacOSX, Win32 and Broadway backends.
Diffstat (limited to 'gdk/gdkeventsprivate.h')
-rw-r--r--gdk/gdkeventsprivate.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/gdk/gdkeventsprivate.h b/gdk/gdkeventsprivate.h
index a521ca5ab5..c64598572e 100644
--- a/gdk/gdkeventsprivate.h
+++ b/gdk/gdkeventsprivate.h
@@ -323,25 +323,6 @@ struct _GdkFocusEvent
};
/*
- * GdkConfigureEvent:
- * @x: the new x coordinate of the surface, relative to its parent.
- * @y: the new y coordinate of the surface, relative to its parent.
- * @width: the new width of the surface.
- * @height: the new height of the surface.
- *
- * Generated when a surface size or position has changed.
- */
-struct _GdkConfigureEvent
-{
- GdkEvent parent_instance;
-
- int x;
- int y;
- int width;
- int height;
-};
-
-/*
* GdkProximityEvent:
* @tool: the #GdkDeviceTool associated to the event
*