new_ml_form_radio_group

NAME
SYNOPSIS
DESCRIPTION
AUTHOR
LICENSE
VERSION
SEE ALSO

NAME

new_ml_form_radio_group, ml_form_radio_group_pack - monolith group of radio buttons widget

SYNOPSIS

#include <ml_form_radio_group.h>

ml_form_radio_group new_ml_form_radio_group (pool pool, ml_form form);
void ml_form_radio_group_pack (ml_form_radio_group w, ml_widget);

DESCRIPTION

A radio group is a widget which contains a group of related radio buttons. You cannot use radio buttons "naked" in a form, but instead must embed related buttons inside one of these widgets.
new_ml_form_radio_group creates a new group widget.
ml_form_radio_group_pack packs a single widget inside the radio group widget. A radio group can only contain a single widget, so if you call pack again, it will forget the previous widget. It is recommended that you pack either a flow layout or a table layout directly inside the radio group, and then pack the actual radio buttons inside that.

AUTHOR

Richard Jones <rich@annexia.org>

LICENSE

GNU LGPL (see http://www.gnu.org/)

VERSION

monolith-1.0.0

SEE ALSO

new_ml_form(3), new_ml_form_radio(3), ml_form_input_get_value(3).