1XmCommandGetChild(library call) XmCommandGetChild(library call)
2
3
4
6 XmCommandGetChild — A Command function that is used to access a compo‐
7 nent
8
10 #include <Xm/Command.h>
11 Widget XmCommandGetChild(
12 Widget widget,
13 unsigned char child);
14
16 XmCommandGetChild is used to access a component within a Command. The
17 parameters given to the function are the Command widget and a value
18 indicating which component to access.
19
20 widget Specifies the Command widget ID.
21
22 child Specifies a component within the Command. The following val‐
23 ues are legal for this parameter:
24
25 · XmDIALOG_COMMAND_TEXT
26
27 · XmDIALOG_PROMPT_LABEL
28
29 · XmDIALOG_HISTORY_LIST
30
31 · XmDIALOG_WORK_AREA
32
33 For a complete definition of Command and its associated resources, see
34 XmCommand(3).
35
37 Returns the widget ID of the specified Command component. An applica‐
38 tion should not assume that the returned widget will be of any particu‐
39 lar class.
40
42 XmCommand(3).
43
44
45
46 XmCommandGetChild(library call)