diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-07-15 08:48:46 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-07-15 13:13:07 -0400 |
commit | da3aaf39b92a07cee16d94061ab5793e687fa350 (patch) | |
tree | efd1a2a6b36b2637a62c02cbcb8cbf0eabc79b89 /gdk/gdkeventsprivate.h | |
parent | a8926c9d873ce968353a2eb1d3930c4f1ac79c94 (diff) | |
download | gtk+-da3aaf39b92a07cee16d94061ab5793e687fa350.tar.gz |
gdk: Drop expose events
Replace expose events with a GdkSurface::expose signal.
This is part of the move to use events only for input.
Diffstat (limited to 'gdk/gdkeventsprivate.h')
-rw-r--r-- | gdk/gdkeventsprivate.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gdk/gdkeventsprivate.h b/gdk/gdkeventsprivate.h index ee3beace23..21f3518fbd 100644 --- a/gdk/gdkeventsprivate.h +++ b/gdk/gdkeventsprivate.h @@ -64,23 +64,6 @@ struct _GdkEventAny }; /* - * GdkEventExpose: - * @type: the type of the event (%GDK_EXPOSE) - * @surface: the surface which received the event. - * @send_event: %TRUE if the event was sent explicitly. - * @area: bounding box of @region. - * @region: the region that needs to be redrawn. - * - * Generated when all or part of a surface becomes visible and needs to be - * redrawn. - */ -struct _GdkEventExpose -{ - GdkEventAny any; - cairo_region_t *region; -}; - -/* * GdkEventMotion: * @type: the type of the event. * @surface: the surface which received the event. @@ -573,7 +556,6 @@ struct _GdkEventPadGroupMode { * GdkEvent: * @type: the #GdkEventType * @any: a #GdkEventAny - * @expose: a #GdkEventExpose * @motion: a #GdkEventMotion * @button: a #GdkEventButton * @touch: a #GdkEventTouch @@ -624,7 +606,6 @@ struct _GdkEventPadGroupMode { union _GdkEvent { GdkEventAny any; - GdkEventExpose expose; GdkEventMotion motion; GdkEventButton button; GdkEventTouch touch; |