1XtCallActionProc(3) XT FUNCTIONS XtCallActionProc(3)
2
3
4
6 XtCallActionProc - invoke an action procedure directly
7
9 #include <X11/Intrinsic.h>
10
11 void XtCallActionProc(Widget widget, const char *action, XEvent *event,
12 String *params, Cardinal num_params);
13
15 widget Specifies the widget in which the action is to be invoked.
16 Must be of class core of any subclass thereof.
17
18 action Specifies the name of the action routine.
19
20 event Specifies the contents of the event passed to the action rou‐
21 tine.
22
23 params Specifies the contents of the params passed to the action
24 routine.
25
26 num_params
27 Specifies the num of entries in params.
28
30 XtCallActionProc searches for the named action routine in the same man‐
31 ner and order as translation tables are bound. If found, the action
32 routine is invoked with the specified widget, event pointer, and param‐
33 eters. It is the responsibility of the caller to ensure that the con‐
34 tents of event, params, and num_params arguments are appropriate for
35 the specified routine, and if necessary, that the specified widget is
36 realized or sensitive. If the named action routine cannot be found,
37 XtCallActionProc generates a warning message and returns.
38
40 X Toolkit Intrinsics - C Language Interface
41 Xlib - C Language X Interface
42
43
44
45X Version 11 libXt 1.2.1 XtCallActionProc(3)