summaryrefslogtreecommitdiff
path: root/gdk/gdkeventsprivate.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-07-15 10:45:57 -0400
committerMatthias Clasen <mclasen@redhat.com>2018-07-15 11:51:09 -0400
commita8926c9d873ce968353a2eb1d3930c4f1ac79c94 (patch)
tree5e5f7cfc0fcb9bcce6a0c1c8c0a2065223c37419 /gdk/gdkeventsprivate.h
parent443f8ddf6bbb15d4516bf2b5fd2c8b77fa10f840 (diff)
downloadgtk+-a8926c9d873ce968353a2eb1d3930c4f1ac79c94.tar.gz
gdk: Drop configure events
Replace configure events with a GdkSurface::size-changed signal. This is part of the move to use events only for input.
Diffstat (limited to 'gdk/gdkeventsprivate.h')
-rw-r--r--gdk/gdkeventsprivate.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/gdk/gdkeventsprivate.h b/gdk/gdkeventsprivate.h
index a7ab6a88ab..ee3beace23 100644
--- a/gdk/gdkeventsprivate.h
+++ b/gdk/gdkeventsprivate.h
@@ -352,26 +352,6 @@ struct _GdkEventFocus
};
/*
- * GdkEventConfigure:
- * @type: the type of the event (%GDK_CONFIGURE).
- * @surface: the surface which received the event.
- * @send_event: %TRUE if the event was sent explicitly.
- * @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 _GdkEventConfigure
-{
- GdkEventAny any;
- gint x, y;
- gint width;
- gint height;
-};
-
-/*
* GdkEventProximity:
* @type: the type of the event (%GDK_PROXIMITY_IN or %GDK_PROXIMITY_OUT).
* @surface: the surface which received the event.
@@ -601,7 +581,6 @@ struct _GdkEventPadGroupMode {
* @key: a #GdkEventKey
* @crossing: a #GdkEventCrossing
* @focus_change: a #GdkEventFocus
- * @configure: a #GdkEventConfigure
* @proximity: a #GdkEventProximity
* @dnd: a #GdkEventDND
* @grab_broken: a #GdkEventGrabBroken
@@ -653,7 +632,6 @@ union _GdkEvent
GdkEventKey key;
GdkEventCrossing crossing;
GdkEventFocus focus_change;
- GdkEventConfigure configure;
GdkEventProximity proximity;
GdkEventDND dnd;
GdkEventGrabBroken grab_broken;