1XtGetActionList(3) XT FUNCTIONS XtGetActionList(3)
2
3
4
6 XtGetActionList - obtain class action list
7
9 #include <X11/Intrinsic.h>
10
11 void XtGetActionList(WidgetClass widget_class, XtActionList* ac‐
12 tions_return, Cardinal* num_actions_return);
13
15 widget_class
16 Specifies the widget class whose actions are to be returned.
17
18 actions_return
19 Returns the action list.
20
21 num_actions_return
22 Returns the number of action procedures declared by the
23 class.
24
26 XtGetActionList returns the action table defined by the specified wid‐
27 get class. This table does not include actions defined by the super‐
28 classes. If widget_class is not initialized, or is not coreWidgetClass
29 or a subclass thereof, or if the class does not define any actions,
30 *actions_return will be NULL and *num_actions_return will be zero. If
31 *actions_return is non-NULL the client is responsible for freeing the
32 table using XtFree when it is no longer needed.
33
35 X Toolkit Intrinsics - C Language Interface
36 Xlib - C Language X Interface
37
38
39
40X Version 11 libXt 1.2.1 XtGetActionList(3)