1XmCreateInformationDialog(library call)XmCreateInformationDialog(library call)
2
3
4
6 XmCreateInformationDialog — The MessageBox InformationDialog conve‐
7 nience creation function
8
10 #include <Xm/MessageB.h>
11 Widget XmCreateInformationDialog(
12 Widget parent,
13 String name,
14 ArgList arglist,
15 Cardinal argcount);
16
18 XmCreateInformationDialog is a convenience creation function that cre‐
19 ates a DialogShell and an unmanaged MessageBox child of the
20 DialogShell. An InformationDialog gives the user information, such as
21 the status of an action. It includes a symbol, a message, and three
22 buttons. The default symbol is i. The default button labels are OK,
23 Cancel, and Help.
24
25 Use XtManageChild to pop up the InformationDialog (passing the Message‐
26 Box as the widget parameter); use XtUnmanageChild to pop it down.
27
28 XmCreateInformationDialog forces the value of the Shell resource XmNal‐
29 lowShellResize to True.
30
31 parent Specifies the parent widget ID
32
33 name Specifies the name of the created widget
34
35 arglist Specifies the argument list
36
37 argcount Specifies the number of attribute/value pairs in the argument
38 list (arglist)
39
40 For a complete definition of MessageBox and its associated resources,
41 see XmMessageBox(3).
42
44 Returns the MessageBox widget ID.
45
47 XmMessageBox(3).
48
49
50
51 XmCreateInformationDialog(library call)