class fwt::MenuItem
sys::Obj fwt::Widget fwt::MenuItem
MenuItem is an individual item on a Menu.
- accelerator
-
Key? acceleratorAccelerator for menu item.
- command
-
Command? commandCommand associated with this menu item. Setting the command automatically maps the text, icon, enable state, and eventing to the command.
- image
-
Image? imageImage to display on menu item. Defaults to null.
- make
-
new make(|This|? f := null)Default constructor.
- makeCommand
-
new makeCommand(Command c)Make a menu item for the specified command.
- mode
-
const MenuItemMode mode := ...Mode defines the menu item's style. Normal items are one of check, push, radio, or sep. The default is push. All instances of
Menuhave a mode of menu. This field cannot be changed once the item is constructed. - onAction
-
EventListeners onAction()Callback function when menu is selected.
Event id fired:
Event fields:
- none
- selected
-
Bool selectedThe button's selection state (if check or radio). Defaults to false.
- text
-
Str textText of the menu item's label. Defaults to "".