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:GdkEventTypeThe type of the event (
GDK_CONFIGURE).window:GdkWindowThe window which received the event.
send_event:gint8TRUEif the event was sent explicitly.x:gintThe new x coordinate of the window, relative to its parent.
y:gintThe new y coordinate of the window, relative to its parent.
width:gintThe new width of the window.
height:gintThe new height of the window.