XtAddEventHandler(), XtAddRawEventHandler(), XtRemoveEventHandler(), XtRemoveRawEventHandler() - add and remove event handlers
void XtAddEventHandler (Widget w, EventMask event_mask,
Boolean nonmaskable, XtEventHandler proc,
XtPointer client_data)
void XtAddRawEventHandler (Widget w, EventMask event_mask,
Boolean nonmaskable, XtEventHandler proc,
XtPointer client_data)
void XtRemoveEventHandler (Widget w, EventMask event_mask,
Boolean nonmaskable, XtEventHandler proc,
XtPointer client_data)
void XtRemoveRawEventHandler (Widget w, EventMask event_mask,
Boolean nonmaskable, XtEventHandler proc,
XtPointer client_data)
The XtAddEventHandler(3) function registers a procedure with the dispatch mechanism that is to be called when an event that matches the mask occurs on the specified widget. If the procedure is already registered with the same client_data, the specified mask is ORed into the existing mask. If the widget is realized, XtAddEventHandler(3) calls XSelectInput(3), if necessary.
The XtAddRawEventHandler(3) function is similar to XtAddEventHandler(3) except that it does not affect the widget's mask and never causes an XSelectInput for its events. Note that the widget might already have those mask bits set because of other nonraw event handlers registered on it.
The XtAddRawEventHandler(3) function is similar to XtAddEventHandler(3) except that it does not affect the widget's mask and never causes an XSelectInput for its events. Note that the widget might already have those mask bits set because of other nonraw event handlers registered on it.
The XtRemoveRawEventHandler(3) function stops the specified procedure from receiving the specified events. Because the procedure is a raw event handler, this does not affect the widget's mask and never causes a call on XSelectInput .
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface