1XmMessageBoxGetChild(library call) XmMessageBoxGetChild(library call)
2
3
4
6 XmMessageBoxGetChild — A MessageBox function that is used to access a
7 component
8
10 #include <Xm/MessageB.h>
11 Widget XmMessageBoxGetChild(
12 Widget widget,
13 unsigned char child);
14
16 XmMessageBoxGetChild is used to access a component within a MessageBox.
17 The parameters given to the function are the MessageBox widget and a
18 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 XmMessageBoxGetChild, you should call
22 XtNameToWidget as described in the XmMessageBox(3) reference page.
23
24 widget Specifies the MessageBox widget ID.
25
26 child Specifies a component within the MessageBox. The following
27 are legal values for this parameter:
28
29 · XmDIALOG_CANCEL_BUTTON
30
31 · XmDIALOG_DEFAULT_BUTTON
32
33 · XmDIALOG_HELP_BUTTON
34
35 · XmDIALOG_MESSAGE_LABEL
36
37 · XmDIALOG_OK_BUTTON
38
39 · XmDIALOG_SEPARATOR
40
41 · XmDIALOG_SYMBOL_LABEL
42
43 For a complete definition of MessageBox and its associated resources,
44 see XmMessageBox(3).
45
47 Returns the widget ID of the specified MessageBox component. An appli‐
48 cation should not assume that the returned widget will be of any par‐
49 ticular class.
50
52 XmMessageBox(3).
53
54
55
56 XmMessageBoxGetChild(library call)