diff options
author | Benjamin Otte <otte@redhat.com> | 2017-11-01 21:59:45 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-11-01 22:00:34 +0100 |
commit | bd6b6ed93c075c2055dff5cdff6f85a886bc6571 (patch) | |
tree | 5ab128b02d729322a8d1e9fa9032e31f534f39d6 /gdk/gdkevents.h | |
parent | c0ccad56f904bdce9808c3ace2d34fbfcb166f14 (diff) | |
download | gtk+-bd6b6ed93c075c2055dff5cdff6f85a886bc6571.tar.gz |
gdk: Remove VisibilityNotify events
Diffstat (limited to 'gdk/gdkevents.h')
-rw-r--r-- | gdk/gdkevents.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h index ea81c58297..0f1603547b 100644 --- a/gdk/gdkevents.h +++ b/gdk/gdkevents.h @@ -123,7 +123,6 @@ G_BEGIN_DECLS typedef struct _GdkEventAny GdkEventAny; typedef struct _GdkEventExpose GdkEventExpose; -typedef struct _GdkEventVisibility GdkEventVisibility; typedef struct _GdkEventMotion GdkEventMotion; typedef struct _GdkEventButton GdkEventButton; typedef struct _GdkEventTouch GdkEventTouch; @@ -250,7 +249,6 @@ typedef GdkFilterReturn (*GdkFilterFunc) (GdkXEvent *xevent, * @GDK_DROP_START: a drop operation onto the window has started. * @GDK_DROP_FINISHED: the drop operation initiated by the window has completed. * @GDK_CLIENT_EVENT: a message has been received from another application. - * @GDK_VISIBILITY_NOTIFY: the window visibility status has changed. * @GDK_SCROLL: the scroll wheel was turned * @GDK_WINDOW_STATE: the state of a window has changed. See #GdkWindowState * for the possible window states @@ -320,7 +318,6 @@ typedef enum GDK_DROP_START = 26, GDK_DROP_FINISHED = 27, GDK_CLIENT_EVENT = 28, - GDK_VISIBILITY_NOTIFY = 29, GDK_SCROLL = 31, GDK_WINDOW_STATE = 32, GDK_OWNER_CHANGE = 34, @@ -341,21 +338,6 @@ typedef enum } GdkEventType; /** - * GdkVisibilityState: - * @GDK_VISIBILITY_UNOBSCURED: the window is completely visible. - * @GDK_VISIBILITY_PARTIAL: the window is partially visible. - * @GDK_VISIBILITY_FULLY_OBSCURED: the window is not visible at all. - * - * Specifies the visiblity status of a window for a #GdkEventVisibility. - */ -typedef enum -{ - GDK_VISIBILITY_UNOBSCURED, - GDK_VISIBILITY_PARTIAL, - GDK_VISIBILITY_FULLY_OBSCURED -} GdkVisibilityState; - -/** * GdkTouchpadGesturePhase: * @GDK_TOUCHPAD_GESTURE_PHASE_BEGIN: The gesture has begun. * @GDK_TOUCHPAD_GESTURE_PHASE_UPDATE: The gesture has been updated. |