1XtNextEvent(3) XT COMPATIBILITY FUNCTIONS XtNextEvent(3)
2
3
4
6 XtNextEvent, XtPending, XtPeekEvent, XtProcessEvent, XtMainLoop - query
7 and process events and input
8
10 #include <X11/Intrinsic.h>
11
12 void XtNextEvent(XEvent *event_return);
13
14 Boolean XtPeekEvent(XEvent *event_return);
15
16 Boolean XtPending(void);
17
18 void XtProcessEvent(XtInputMask mask);
19
20 void XtMainLoop(void);
21
23 event Specifies a pointer to the event structure that is to be dis‐
24 patched to the appropriate event handler.
25
26 event_return
27 Returns the event information to the specified event struc‐
28 ture.
29
30 mask Specifies what types of events to process. The mask is the
31 bitwise inclusive OR of any combination of XtIMXEvent, XtIM‐
32 Timer, XtIMAlternateInput, and XtIMSignal. As a convenience,
33 the X Toolkit defines the symbolic name XtIMAll to be the
34 bitwise inclusive OR of all event types.
35
37 XtNextEvent has been replaced by XtAppNextEvent.
38
39 XtPeekEvent has been replaced by XtAppPeekEvent.
40
41 XtPending has been replaced by XtAppPending.
42
43 XtProcessEvent has been replaced by XtAppProcessEvent.
44
45 XtMainLoop has been replaced by XtAppMainLoop.
46
48 XtAppNextEvent(3xt), XtAppPending(3), XtAppPeekEvent(3), XtAppProces‐
49 sEvent(3), XtAppMainLoop(3)
50 X Toolkit Intrinsics - C Language Interface
51 Xlib - C Language X Interface
52
53
54
55X Version 11 libXt 1.2.0 XtNextEvent(3)