1XmCreateSimpleCheckBox(library call) XmCreateSimpleCheckBox(library call)
2
3
4
6 XmCreateSimpleCheckBox — A RowColumn widget convenience creation func‐
7 tion
8
10 #include <Xm/RowColumn.h>
11 Widget XmCreateSimpleCheckBox(
12 Widget parent,
13 String name,
14 ArgList arglist,
15 Cardinal argcount);
16
18 XmCreateSimpleCheckBox creates an instance of a RowColumn widget of
19 type XmWORK_AREA and returns the associated widget ID.
20
21 This routine creates a CheckBox and its ToggleButtonGadget children. A
22 CheckBox is similar to a RadioBox, except that more than one button can
23 be selected at a time. The name of each button is button_n, where n is
24 an integer from 0 (zero) to the number of buttons in the menu minus 1.
25 Buttons are named and created in the order they are specified in the
26 RowColumn simple menu creation resources supplied in the argument list.
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 A number of resources exist specifically for use with this and other
38 simple menu creation routines. The only button type allowed in the
39 XmNbuttonType resource is XmCHECKBUTTON. For a complete definition of
40 RowColumn and its associated resources, see XmRowColumn(3).
41
43 Returns the RowColumn widget ID.
44
46 XmCreateRadioBox(3), XmCreateRowColumn(3), XmCreateSimpleRadioBox(3),
47 XmRowColumn(3), XmVaCreateSimpleCheckBox(3), and XmVaCreateSimpleRa‐
48 dioBox(3).
49
50
51
52 XmCreateSimpleCheckBox(library call)