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:gintEvent mask (see gdk_window_set_events()).
x:gintX coordinate relative to parent window (see gdk_window_move()).
y:gintY coordinate relative to parent window (see gdk_window_move()).
width:gintWidth of window.
height:gintHeight of window.
wclass:GdkWindowWindowClassGDK_INPUT_OUTPUT (normal window) or #GDK_INPUT_ONLY (invisible
window that receives events).
visual:GdkVisualGdkVisualfor window.window_type:GdkWindowTypeType of window.
cursor:GdkCursorCursor 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:gbooleanTRUEto bypass the window manager.type_hint:GdkWindowTypeHintA hint of the function of the window.