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

The type of the event (GDK_CONFIGURE).

window

The window which received the event.

send_event

TRUE if the event was sent explicitly.

x

The new x coordinate of the window, relative to its parent.

y

The new y coordinate of the window, relative to its parent.

width

The new width of the window.

height

The new height of the window.