2013-09-09 07:35:57 +00:00
|
|
|
# menu-item
|
|
|
|
|
2013-08-14 22:43:35 +00:00
|
|
|
## Class: MenuItem
|
|
|
|
|
|
|
|
### new MenuItem(options)
|
|
|
|
|
|
|
|
* `options` Object
|
|
|
|
* `click` Function - Callback when the menu item is clicked
|
2013-08-29 14:37:51 +00:00
|
|
|
* `selector` String - Call the selector of first responder when clicked (OS
|
|
|
|
X only)
|
|
|
|
* `type` String - Can be `normal`, `separator`, `submenu`, `checkbox` or
|
|
|
|
`radio`
|
2013-08-14 22:43:35 +00:00
|
|
|
* `label` String
|
|
|
|
* `sublabel` String
|
2013-08-29 14:37:51 +00:00
|
|
|
* `accelerator` String - In the form of `Command+R`, `Ctrl+C`,
|
|
|
|
`Shift+Command+D`, `D`, etc.
|
2013-08-14 22:43:35 +00:00
|
|
|
* `enabled` Boolean
|
|
|
|
* `visible` Boolean
|
|
|
|
* `checked` Boolean
|
|
|
|
* `groupId` Boolean - Should be specified for `radio` type menu item
|
2013-08-29 14:37:51 +00:00
|
|
|
* `submenu` Menu - Should be specified for `submenu` type menu item, when
|
|
|
|
it's specified the `type: 'submenu'` can be omitted for the menu item
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
## Notes on accelerator
|
|
|
|
|
2013-08-29 14:37:51 +00:00
|
|
|
On OS X, the `Ctrl` would automatically translated to `Command`, if you really
|
|
|
|
want `Ctrl` on OS X, you should use `MacCtrl`.
|