diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-07-15 19:52:28 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-07-15 20:23:45 -0400 |
commit | 7a1073c3ae89e4cdf35d95afec564d48f776774f (patch) | |
tree | 2c3c4eb8f3d942362297923c48e80807211e5e5a /gdk/gdkevents.h | |
parent | e2fd33f78a5bcd461139a32957abfeaa45fa3d2e (diff) | |
download | gtk+-7a1073c3ae89e4cdf35d95afec564d48f776774f.tar.gz |
Revert "gdk: Drop configure events"
This reverts commit a8926c9d873ce968353a2eb1d3930c4f1ac79c94.
Diffstat (limited to 'gdk/gdkevents.h')
-rw-r--r-- | gdk/gdkevents.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h index d725abf28c..291b6d34f8 100644 --- a/gdk/gdkevents.h +++ b/gdk/gdkevents.h @@ -111,6 +111,7 @@ typedef struct _GdkEventScroll GdkEventScroll; typedef struct _GdkEventKey GdkEventKey; typedef struct _GdkEventFocus GdkEventFocus; typedef struct _GdkEventCrossing GdkEventCrossing; +typedef struct _GdkEventConfigure GdkEventConfigure; typedef struct _GdkEventProximity GdkEventProximity; typedef struct _GdkEventDND GdkEventDND; typedef struct _GdkEventSetting GdkEventSetting; @@ -151,6 +152,8 @@ typedef void (*GdkEventFunc) (GdkEvent *event, * @GDK_ENTER_NOTIFY: the pointer has entered the surface. * @GDK_LEAVE_NOTIFY: the pointer has left the surface. * @GDK_FOCUS_CHANGE: the keyboard focus has entered or left the surface. + * @GDK_CONFIGURE: the size, position or stacking order of the surface has changed. + * Note that GTK+ discards these events for %GDK_SURFACE_CHILD surfaces. * @GDK_PROXIMITY_IN: an input device has moved into contact with a sensing * surface (e.g. a touchscreen or graphics tablet). * @GDK_PROXIMITY_OUT: an input device has moved out of contact with a sensing @@ -206,6 +209,7 @@ typedef enum GDK_ENTER_NOTIFY, GDK_LEAVE_NOTIFY, GDK_FOCUS_CHANGE, + GDK_CONFIGURE, GDK_PROXIMITY_IN, GDK_PROXIMITY_OUT, GDK_DRAG_ENTER, |