June 1994
Intermediate to advanced
821 pages
24h 40m
English
DestroyNotify — xdestroywindow
A DestroyNotify event reports that a window
has been destroyed.
To receive this event type on children of a window, specify
the parent window ID and pass
SubstructureNotifyMask as part of the
event_mask argument to
XSelectInput. This event type cannot be selected
with StructureNotifyMask.
typedef union _XEvent {
...
XDestroyWindowEvent xdestroywindow;
...
} XEvent;typedef struct {
int type;
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* True if this came from SendEvent request */
Display *display; /* Display the event was read from */
Window event;
Window window;
} XDestroyWindowEvent;eventThe window that selected the event.
windowThe window that was destroyed.
Read now
Unlock full access