1XmFileSelectionBoxGetChild(library callX)mFileSelectionBoxGetChild(library call)
2
3
4
6 XmFileSelectionBoxGetChild — A FileSelectionBox function used to access
7 a component
8
10 #include <Xm/FileSB.h>
11 Widget XmFileSelectionBoxGetChild(
12 Widget widget,
13 unsigned char child);
14
16 XmFileSelectionBoxGetChild is used to access a component within a File‐
17 SelectionBox. The parameters given to the function are the FileSelec‐
18 tionBox widget 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 XmFileSelectionBoxGetChild, you should
22 call XtNameToWidget as described in the XmFileSelectionBox(3) reference
23 page.
24
25 widget Specifies the FileSelectionBox widget ID.
26
27 child Specifies a component within the FileSelectionBox. The fol‐
28 lowing are legal values for this parameter:
29
30 · XmDIALOG_APPLY_BUTTON
31
32 · XmDIALOG_CANCEL_BUTTON
33
34 · XmDIALOG_DEFAULT_BUTTON
35
36 · XmDIALOG_DIR_LIST
37
38 · XmDIALOG_DIR_LIST_LABEL
39
40 · XmDIALOG_FILTER_LABEL
41
42 · XmDIALOG_FILTER_TEXT
43
44 · XmDIALOG_HELP_BUTTON
45
46 · XmDIALOG_LIST
47
48 · XmDIALOG_LIST_LABEL
49
50 · XmDIALOG_OK_BUTTON
51
52 · XmDIALOG_SELECTION_LABEL
53
54 · XmDIALOG_SEPARATOR
55
56 · XmDIALOG_TEXT
57
58 · XmDIALOG_WORK_AREA
59
60 For a complete definition of FileSelectionBox and its associated
61 resources, see XmFileSelectionBox(3).
62
64 Returns the widget ID of the specified FileSelectionBox component. An
65 application should not assume that the returned widget will be of any
66 particular class.
67
69 XmFileSelectionBox(3).
70
71
72
73 XmFileSelectionBoxGetChild(library call)