1XmSelectionBoxGetChild(library call) XmSelectionBoxGetChild(library call)
2
3
4
6 XmSelectionBoxGetChild — A SelectionBox function that is used to access
7 a component
8
10 #include <Xm/SelectioB.h>
11 Widget XmSelectionBoxGetChild(
12 Widget widget,
13 unsigned char child);
14
16 XmSelectionBoxGetChild is used to access a component within a Selec‐
17 tionBox. The parameters given to the function are the SelectionBox wid‐
18 get and a value indicating which component to access.
19
20 NOTE: This routine is obsolete and exists for compatibility with previ‐
21 ous releases. Instead of calling XmSelectionBoxGetChild, you should
22 call XtNameToWidget as described in the XmSelectionBox(3) reference
23 page.
24
25 widget Specifies the SelectionBox widget ID.
26
27 child Specifies a component within the SelectionBox. The following
28 values are legal for this parameter:
29
30 · XmDIALOG_APPLY_BUTTON
31
32 · XmDIALOG_CANCEL_BUTTON
33
34 · XmDIALOG_DEFAULT_BUTTON
35
36 · XmDIALOG_HELP_BUTTON
37
38 · XmDIALOG_LIST
39
40 · XmDIALOG_LIST_LABEL
41
42 · XmDIALOG_OK_BUTTON
43
44 · XmDIALOG_SELECTION_LABEL
45
46 · XmDIALOG_SEPARATOR
47
48 · XmDIALOG_TEXT
49
50 · XmDIALOG_WORK_AREA
51
52 For a complete definition of SelectionBox and its associated resources,
53 see XmSelectionBox(3).
54
56 Returns the widget ID of the specified SelectionBox component. An
57 application should not assume that the returned widget will be of any
58 particular class.
59
61 XmSelectionBox(3).
62
63
64
65 XmSelectionBoxGetChild(library call)