1XmVaCreateFileSelectionBox(library callX)mVaCreateFileSelectionBox(library call)
2
3
4
6 XmVaCreateFileSelectionBox, XmVaCreateManagedFileSelectionBox — A File‐
7 SelectionBox widget convenience creation functions.
8
10 #include <Xm/FileSB.h>
11
12 Widget XmVaCreateFileSelectionBox(
13 Widget parent,
14 String name,
15 ...);
16
17 Widget XmVaCreateManagedFileSelectionBox(
18 Widget parent,
19 String name,
20 ...);
21
23 These functions create an instance of a FileSelectionBox widget and
24 returns the associated widget ID. These routines use the ANSI C vari‐
25 able-length argument list (varargs) calling convention.
26
27 The XmVaCreateFileSelectionBox function is a convenience routine that
28 calls XtCreateWidget.
29
30 The XmVaCreateManagedFileSelectionBox function is a convenience routine
31 that calls XtCreateManagedWidget.
32
33 parent Specifies the parent widget ID.
34
35 name Specifies the name of the created widget.
36
37 ... Specifies the variable argument list to override the resource
38 defaults.
39
40 For a complete definition of FileSelectionBox and its associated
41 resources, see XmFileSelectionBox(3).
42
44 Returns the FileSelectionBox widget ID.
45
47 XmCreateFileSelectionBox(3), XtCreateManagedWidget(3), XtCreateWid‐
48 get(3), and XmFileSelectionBox(3).
49
50
51
52 XmVaCreateFileSelectionBox(library call)