|
NAMEXmVaCreateSimpleCheckBox — A RowColumn widget convenience creation functionSYNOPSIS#include <Xm/RowColumn.h> Widget XmVaCreateSimpleCheckBox( Widget parent, String name, XtCallbackProc callback); DESCRIPTIONXmVaCreateSimpleCheckBox creates an instance of a RowColumn widget of type XmWORK_AREA and returns the associated widget ID. This routine uses the ANSI C variable-length argument list (varargs) calling convention.This routine creates a CheckBox and its ToggleButtonGadget children. A CheckBox is similar to a RadioBox, except that more than one button can be selected at a time. The name of each button is button_n, where n is an integer from 0 (zero) to the number of buttons in the menu minus 1. Buttons are named and created in the order in which they are specified in the variable portion of the argument list.
The variable portion of the argument list consists of groups of arguments. The first argument in each group is a constant or a string and determines which arguments follow in that group. The last argument in the list must be NULL. The following list describes the possible first arguments in each group of varargs:
For more information on variable-length argument lists, see the X Toolkit Intrinsics documentation. A number of resources exist specifically for use with this and other simple menu creation routines. For a complete definition of RowColumn and its associated resources, see XmRowColumn(3). RETURNReturns the RowColumn widget ID.RELATEDXmCreateRadioBox(3), XmCreateRowColumn(3), XmCreateSimpleCheckBox(3), XmCreateSimpleRadioBox(3), XmRowColumn(3), and XmVaCreateSimpleRadioBox(3). Visit the GSP FreeBSD Man Page Interface. |