1XmCreateMessageBox(library call) XmCreateMessageBox(library call)
2
3
4
6 XmCreateMessageBox — The MessageBox widget creation function
7
9 #include <Xm/MessageB.h>
10 Widget XmCreateMessageBox(
11 Widget parent,
12 String name,
13 ArgList arglist,
14 Cardinal argcount);
15
17 XmCreateMessageBox creates an unmanaged MessageBox. A MessageBox is
18 used for common interaction tasks, which include giving information,
19 asking questions, and reporting errors. It includes an optional sym‐
20 bol, a message, and three buttons.
21
22 By default, there is no symbol. The default button labels are OK, Can‐
23 cel, and Help.
24
25 If the parent of the MessageBox is a DialogShell, use XtManageChild to
26 pop up the MessageBox (passing the MessageBox as the widget parameter);
27 use XtUnmanageChild to pop it down.
28
29 parent Specifies the parent widget ID
30
31 name Specifies the name of the created widget
32
33 arglist Specifies the argument list
34
35 argcount Specifies the number of attribute/value pairs in the argument
36 list (arglist)
37
38 For a complete definition of MessageBox and its associated resources,
39 see XmMessageBox(3).
40
42 Returns the MessageBox widget ID.
43
45 XmMessageBox(3).
46
47
48
49 XmCreateMessageBox(library call)