Struct
GdkEventConfigure
Description [src]
struct GdkEventConfigure {
GdkEventType type;
GdkWindow* window;
gint8 send_event;
gint x;
gint y;
gint width;
gint height;
}
Generated when a window size or position has changed.
Structure members
type:
GdkEventType
The type of the event (
GDK_CONFIGURE
).window:
GdkWindow
The window which received the event.
send_event:
gint8
TRUE
if the event was sent explicitly.x:
gint
The new x coordinate of the window, relative to its parent.
y:
gint
The new y coordinate of the window, relative to its parent.
width:
gint
The new width of the window.
height:
gint
The new height of the window.