Struct
GdkWindowAttr
Description [src]
struct GdkWindowAttr {
gchar* title;
gint event_mask;
gint x;
gint y;
gint width;
gint height;
GdkWindowWindowClass wclass;
GdkVisual* visual;
GdkWindowType window_type;
GdkCursor* cursor;
gchar* wmclass_name;
gchar* wmclass_class;
gboolean override_redirect;
GdkWindowTypeHint type_hint;
}
Attributes to use for a newly-created window.
Structure members
title:
gchar*
Title of the window (for toplevel windows).
event_mask:
gint
Event mask (see gdk_window_set_events()).
x:
gint
X coordinate relative to parent window (see gdk_window_move()).
y:
gint
Y coordinate relative to parent window (see gdk_window_move()).
width:
gint
Width of window.
height:
gint
Height of window.
wclass:
GdkWindowWindowClass
GDK_INPUT_OUTPUT (normal window) or #GDK_INPUT_ONLY (invisible
window that receives events).
visual:
GdkVisual
GdkVisual
for window.window_type:
GdkWindowType
Type of window.
cursor:
GdkCursor
Cursor for the window (see gdk_window_set_cursor()).
wmclass_name:
gchar*
Don’t use (see gtk_window_set_wmclass()).
wmclass_class:
gchar*
Don’t use (see gtk_window_set_wmclass()).
override_redirect:
gboolean
TRUE
to bypass the window manager.type_hint:
GdkWindowTypeHint
A hint of the function of the window.