1XmCreateCommandDialog(library call) XmCreateCommandDialog(library call)
2
3
4
6 XmCreateCommandDialog — The Command CommandDialog convenience creation
7 function
8
10 #include <Xm/Command.h>
11 Widget XmCreateCommandDialog(
12 Widget parent,
13 String name,
14 ArgList arglist,
15 Cardinal argcount);
16
18 XmCreateCommandDialog is a convenience function that creates a
19 DialogShell and an unmanaged Command child of the DialogShell. A Com‐
20 mandDialog is used for entering commands for processing.
21
22 Use XtManageChild to pop up the CommandDialog (passing the Command as
23 the widget parameter); use XtUnmanageChild to pop it down.
24
25 XmCreateCommandDialog forces the value of the Shell resource XmNallow‐
26 ShellResize to True.
27
28 parent Specifies the parent widget ID
29
30 name Specifies the name of the created widget
31
32 arglist Specifies the argument list
33
34 argcount Specifies the number of attribute/value pairs in the argument
35 list (arglist)
36
37 For a complete definition of Command and its associated resources, see
38 XmCommand(3).
39
41 Returns the Command widget ID.
42
44 XmCommand(3).
45
46
47
48 XmCreateCommandDialog(library call)