Learn R Programming

RGtk2 (version 2.8.8)

GtkRadioMenuItem: GtkRadioMenuItem

Description

A choice from multiple check menu items

Arguments

Methods and Functions

gtkRadioMenuItemNew(group = NULL, show = TRUE) gtkRadioMenuItemNewWithLabel(group = NULL, label, show = TRUE) gtkRadioMenuItemNewWithMnemonic(group = NULL, label, show = TRUE) gtkRadioMenuItemNewFromWidget(group = NULL, show = TRUE) gtkRadioMenuItemNewWithLabelFromWidget(group = NULL, label, show = TRUE) gtkRadioMenuItemNewWithMnemonicFromWidget(group = NULL, label, show = TRUE) gtkRadioMenuItemSetGroup(object, group) gtkRadioMenuItemGetGroup(object) gtkRadioMenuItem(group = NULL, label, show = TRUE)

Hierarchy

\link{GObject} +----\link{GtkObject} +----\link{GtkWidget} +----\link{GtkContainer} +----\link{GtkBin} +----\link{GtkItem} +----\link{GtkMenuItem} +----\link{GtkCheckMenuItem} +----GtkRadioMenuItem

Interfaces

GtkRadioMenuItem implements AtkImplementorIface.

Detailed Description

A radio menu item is a check menu item that belongs to a group. At each instant exactly one of the radio menu items from a group is selected. The group list does not need to be freed, as each GtkRadioMenuItem will remove itself and its list item when it is destroyed. The correct way to create a group of radio menu items is approximatively this: group <- NULL for (i in 1:5) { item <- gtkRadioMenuItem(group, "This is an example") group <- item$getGroup() if (i == 1) item$setActive(TRUE) }

Convenient Construction

gtkRadioMenuItem is the result of collapsing the constructors of GtkRadioMenuItem (gtkRadioMenuItemNew, gtkRadioMenuItemNewWithLabel, gtkRadioMenuItemNewWithMnemonic, gtkRadioMenuItemNewFromWidget, gtkRadioMenuItemNewWithMnemonicFromWidget, gtkRadioMenuItemNewWithLabelFromWidget) and accepts a subset of its arguments matching the required arguments of one of its delegate constructors.

References

http://developer.gnome.org/doc/API/2.0/gtk/GtkRadioMenuItem.html