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