diff options
author | Benjamin Otte <otte@redhat.com> | 2016-11-04 03:35:49 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-11-05 03:32:27 +0100 |
commit | b9955cfff1a2290c7826565049c934d237e9028f (patch) | |
tree | d273a7c20a7d9bc0e590a516944c0c9b52f23ccf /gdk/gdkwindow.h | |
parent | 33e7a7898faf66562c8591c656da4f1fdfcfa87b (diff) | |
download | gtk+-b9955cfff1a2290c7826565049c934d237e9028f.tar.gz |
API: gdk: Remove override_redirect flag from GdkWindowAttr
When you want an override-redirect window, you create it that way by
creating a GDK_WINDOW_TEMP window.
Diffstat (limited to 'gdk/gdkwindow.h')
-rw-r--r-- | gdk/gdkwindow.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gdk/gdkwindow.h b/gdk/gdkwindow.h index 9d4535b62e..3144aa1305 100644 --- a/gdk/gdkwindow.h +++ b/gdk/gdkwindow.h @@ -88,7 +88,6 @@ typedef enum * @GDK_WA_TITLE: Honor the title field * @GDK_WA_X: Honor the X coordinate field * @GDK_WA_Y: Honor the Y coordinate field - * @GDK_WA_NOREDIR: Honor the override_redirect field * @GDK_WA_TYPE_HINT: Honor the type_hint field * * Used to indicate which fields in the #GdkWindowAttr struct should be honored. @@ -103,8 +102,7 @@ typedef enum GDK_WA_TITLE = 1 << 1, GDK_WA_X = 1 << 2, GDK_WA_Y = 1 << 3, - GDK_WA_NOREDIR = 1 << 4, - GDK_WA_TYPE_HINT = 1 << 5 + GDK_WA_TYPE_HINT = 1 << 4 } GdkWindowAttributesType; /* Size restriction enumeration. @@ -333,7 +331,6 @@ typedef enum * window that receives events) * @window_type: type of window * @cursor: cursor for the window (see gdk_window_set_cursor()) - * @override_redirect: %TRUE to bypass the window manager * @type_hint: a hint of the function of the window * * Attributes to use for a newly-created window. @@ -347,7 +344,6 @@ struct _GdkWindowAttr gint height; GdkWindowWindowClass wclass; GdkWindowType window_type; - gboolean override_redirect; GdkWindowTypeHint type_hint; }; |