1XmCreateBulletinBoardDialog(library caXlmlC)reateBulletinBoardDialog(library call)
2
3
4
6 XmCreateBulletinBoardDialog — The BulletinBoard BulletinBoardDialog
7 convenience creation function
8
10 #include <Xm/BulletinB.h>
11 Widget XmCreateBulletinBoardDialog(
12 Widget parent,
13 String name,
14 ArgList arglist,
15 Cardinal argcount);
16
18 XmCreateBulletinBoardDialog is a convenience creation function that
19 creates a DialogShell and an unmanaged BulletinBoard child of the
20 DialogShell. A BulletinBoardDialog is used for interactions not sup‐
21 ported by the standard dialog set. This function does not automati‐
22 cally create any labels, buttons, or other dialog components. Such com‐
23 ponents should be added by the application after the BulletinBoardDia‐
24 log is created.
25
26 Use XtManageChild to pop up the BulletinBoardDialog (passing the Bul‐
27 letinBoard as the widget parameter); use XtUnmanageChild to pop it
28 down.
29
30 XmCreateBulletinBoardDialog forces the value of the Shell resource
31 XmNallowShellResize to True.
32
33 parent Specifies the parent widget ID
34
35 name Specifies the name of the created widget
36
37 arglist Specifies the argument list
38
39 argcount Specifies the number of attribute/value pairs in the argument
40 list (arglist)
41
42 For a complete definition of BulletinBoard and its associated
43 resources, see XmBulletinBoard(3).
44
46 Returns the BulletinBoard widget ID.
47
49 XmBulletinBoard(3).
50
51
52
53 XmCreateBulletinBoardDialog(library call)