NAME
PropertyNotify — X PropertyNotify Event
WHEN GENERATED
A PropertyNotify event indicates that a property of a window has changed or been deleted. This event can also be used to get the current server time (by appending zero-length data to a property). PropertyNotify events are generated by XChangeProperty(), XDeleteProperty(), XGetWindowProperty(), or XRotateWindowProperties().
SELECT WITH
This event is selected with PropertyChangeMask.
XEVENT STRUCTURE NAME
typedef union _XEvent { ... XPropertyEvent xproperty; ... } XEvent;
EVENT STRUCTURE
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 window; Atom atom; Time time; int state; /∗ PropertyNewValue, PropertyDeleted ∗/ } XPropertyEvent;
EVENT STRUCTURE MEMBERS
windowThe window whose property was changed, not the window that selected the event.
atomThe property that was changed.
stateEither PropertyNewValue or PropertyDeleted. Whether the property was changed to a new value or deleted.
timeThe time member specifies the server time when the property was changed.
Xlib Reference Manual