2016-11-15 03:24:48 +03:00
## Class: MenuItem
2015-08-29 02:19:28 +03:00
2016-04-22 21:42:54 +03:00
> Add items to native application menus and context menus.
2015-08-29 02:19:28 +03:00
2016-11-23 22:20:56 +03:00
Process: [Main ](../glossary.md#main-process )
2016-11-03 20:26:00 +03:00
2016-06-22 07:23:07 +03:00
See [`Menu` ](menu.md ) for examples.
2013-09-09 11:35:57 +04:00
2016-08-22 21:29:15 +03:00
### `new MenuItem(options)`
2013-08-15 02:43:35 +04:00
* `options` Object
2016-12-30 01:11:26 +03:00
* `click` Function (optional) - Will be called with
2016-06-22 07:23:07 +03:00
`click(menuItem, browserWindow, event)` when the menu item is clicked.
2016-10-13 09:30:57 +03:00
* `menuItem` MenuItem
2017-11-29 13:38:35 +03:00
* `browserWindow` [BrowserWindow ](browser-window.md )
2019-02-19 12:24:19 +03:00
* `event` [KeyboardEvent ](structures/keyboard-event.md )
2019-02-12 17:22:33 +03:00
* `role` String (optional) - Can be `undo` , `redo` , `cut` , `copy` , `paste` , `pasteandmatchstyle` , `delete` , `selectall` , `reload` , `forcereload` , `toggledevtools` , `resetzoom` , `zoomin` , `zoomout` , `togglefullscreen` , `window` , `minimize` , `close` , `help` , `about` , `services` , `hide` , `hideothers` , `unhide` , `quit` , `startspeaking` , `stopspeaking` , `close` , `minimize` , `zoom` , `front` , `appMenu` , `fileMenu` , `editMenu` , `viewMenu` or `windowMenu` - Define the action of the menu item, when specified the
2017-03-30 21:07:25 +03:00
`click` property will be ignored. See [roles ](#roles ).
2016-12-30 01:11:26 +03:00
* `type` String (optional) - Can be `normal` , `separator` , `submenu` , `checkbox` or
2016-06-22 07:23:07 +03:00
`radio` .
2017-11-28 20:15:15 +03:00
* `label` String (optional)
* `sublabel` String (optional)
2019-07-11 11:56:22 +03:00
* `toolTip` String (optional) _macOS_ - Hover text for this menu item.
2016-12-30 01:11:26 +03:00
* `accelerator` [Accelerator ](accelerator.md ) (optional)
* `icon` ([NativeImage](native-image.md) | String) (optional)
* `enabled` Boolean (optional) - If false, the menu item will be greyed out and
2016-04-22 16:53:26 +03:00
unclickable.
2019-06-28 00:51:18 +03:00
* `acceleratorWorksWhenHidden` Boolean (optional) _macOS_ - default is `true` , and when `false` will prevent the accelerator from triggering the item if the item is not visible`.
2016-12-30 01:11:26 +03:00
* `visible` Boolean (optional) - If false, the menu item will be entirely hidden.
* `checked` Boolean (optional) - Should only be specified for `checkbox` or `radio` type
2016-06-22 07:23:07 +03:00
menu items.
2019-06-27 06:20:04 +03:00
* `registerAccelerator` Boolean (optional) _Linux_ _Windows_ - If false, the accelerator won't be registered
2018-11-26 21:43:55 +03:00
with the system, but it will still be displayed. Defaults to true.
2018-09-10 06:03:58 +03:00
* `submenu` (MenuItemConstructorOptions[] | [Menu ](menu.md )) (optional) - Should be specified
for `submenu` type menu items. If `submenu` is specified, the `type: 'submenu'` can be omitted.
If the value is not a [`Menu` ](menu.md ) then it will be automatically converted to one using
2016-06-22 07:23:07 +03:00
`Menu.buildFromTemplate` .
2016-12-30 01:11:26 +03:00
* `id` String (optional) - Unique within a single menu. If defined then it can be used
2016-06-22 07:23:07 +03:00
as a reference to this item by the position attribute.
2018-09-10 06:03:58 +03:00
* `before` String[] (optional) - Inserts this item before the item with the specified label. If
the referenced item doesn't exist the item will be inserted at the end of the menu. Also implies
that the menu item in question should be placed in the same “group” as the item.
* `after` String[] (optional) - Inserts this item after the item with the specified label. If the
referenced item doesn't exist the item will be inserted at the end of
the menu.
* `beforeGroupContaining` String[] (optional) - Provides a means for a single context menu to declare
the placement of their containing group before the containing group of the item
with the specified label.
* `afterGroupContaining` String[] (optional) - Provides a means for a single context menu to declare
the placement of their containing group after the containing group of the item
with the specified label.
2015-09-02 04:19:18 +03:00
2019-02-28 20:00:54 +03:00
**Note:** `acceleratorWorksWhenHidden` is specified as being macOS-only because accelerators always work when items are hidden on Windows and Linux. The option is exposed to users to give them the option to turn it off, as this is possible in native macOS development. This property is only usable on macOS High Sierra 10.13 or newer.
2017-03-30 21:07:25 +03:00
### Roles
Roles allow menu items to have predefined behaviors.
2016-03-31 06:57:28 +03:00
It is best to specify `role` for any menu item that matches a standard role,
rather than trying to manually implement the behavior in a `click` function.
The built-in `role` behavior will give the best native experience.
2015-09-02 04:19:18 +03:00
2017-03-30 21:07:25 +03:00
The `label` and `accelerator` values are optional when using a `role` and will
default to appropriate values for each platform.
2016-06-23 00:10:38 +03:00
2018-08-17 23:10:14 +03:00
Every menu item must have either a `role` , `label` , or in the case of a separator
a `type` .
2015-09-02 04:19:18 +03:00
The `role` property can have following values:
* `undo`
* `redo`
* `cut`
* `copy`
* `paste`
2017-12-28 08:22:39 +03:00
* `pasteAndMatchStyle`
* `selectAll`
2016-06-04 18:23:35 +03:00
* `delete`
2017-11-29 13:38:35 +03:00
* `minimize` - Minimize current window.
* `close` - Close current window.
2018-07-20 20:58:19 +03:00
* `quit` - Quit the application.
2017-11-29 13:38:35 +03:00
* `reload` - Reload the current window.
2017-12-28 08:22:39 +03:00
* `forceReload` - Reload the current window ignoring the cache.
* `toggleDevTools` - Toggle developer tools in the current window.
2018-07-20 20:58:19 +03:00
* `toggleFullScreen` - Toggle full screen mode on the current window.
2017-12-28 08:22:39 +03:00
* `resetZoom` - Reset the focused page's zoom level to the original size.
* `zoomIn` - Zoom in the focused page by 10%.
* `zoomOut` - Zoom out the focused page by 10%.
2019-01-10 16:32:03 +03:00
* `fileMenu` - Whole default "File" menu (Close / Quit)
2017-11-29 13:38:35 +03:00
* `editMenu` - Whole default "Edit" menu (Undo, Copy, etc.).
2019-01-10 16:32:03 +03:00
* `viewMenu` - Whole default "View" menu (Reload, Toggle Developer Tools, etc.)
2019-02-25 16:34:32 +03:00
* `windowMenu` - Whole default "Window" menu (Minimize, Zoom, etc.).
2017-11-29 13:38:35 +03:00
The following additional roles are available on _macOS_ :
2019-01-10 16:32:03 +03:00
* `appMenu` - Whole default "App" menu (About, Services, etc.)
2017-11-29 13:38:35 +03:00
* `about` - Map to the `orderFrontStandardAboutPanel` action.
* `hide` - Map to the `hide` action.
2017-12-28 08:22:39 +03:00
* `hideOthers` - Map to the `hideOtherApplications` action.
2017-11-29 13:38:35 +03:00
* `unhide` - Map to the `unhideAllApplications` action.
2017-12-28 08:22:39 +03:00
* `startSpeaking` - Map to the `startSpeaking` action.
* `stopSpeaking` - Map to the `stopSpeaking` action.
2017-11-29 13:38:35 +03:00
* `front` - Map to the `arrangeInFront` action.
* `zoom` - Map to the `performZoom` action.
2017-12-28 08:22:39 +03:00
* `toggleTabBar` - Map to the `toggleTabBar` action.
* `selectNextTab` - Map to the `selectNextTab` action.
* `selectPreviousTab` - Map to the `selectPreviousTab` action.
* `mergeAllWindows` - Map to the `mergeAllWindows` action.
* `moveTabToNewWindow` - Map to the `moveTabToNewWindow` action.
2017-11-29 13:38:35 +03:00
* `window` - The submenu is a "Window" menu.
* `help` - The submenu is a "Help" menu.
2019-05-31 00:33:48 +03:00
* `services` - The submenu is a ["Services" ](https://developer.apple.com/documentation/appkit/nsapplication/1428608-servicesmenu?language=objc ) menu. This is only intended for use in the Application Menu and is *not* the same as the "Services" submenu used in context menus in macOS apps, which is not implemented in Electron.
2017-12-28 08:22:39 +03:00
* `recentDocuments` - The submenu is an "Open Recent" menu.
* `clearRecentDocuments` - Map to the `clearRecentDocuments` action.
2016-03-31 06:57:28 +03:00
2017-03-30 21:07:25 +03:00
When specifying a `role` on macOS, `label` and `accelerator` are the only
options that will affect the menu item. All other options will be ignored.
2017-12-28 08:22:39 +03:00
Lowercase `role` , e.g. `toggledevtools` , is still supported.
2016-04-20 04:12:37 +03:00
2018-10-29 23:04:25 +03:00
**Nota Bene:** The `enabled` and `visibility` properties are not available for top-level menu items in the tray on MacOS.
2016-06-22 07:23:07 +03:00
### Instance Properties
2016-03-31 06:57:28 +03:00
2016-06-22 07:23:07 +03:00
The following properties are available on instances of `MenuItem` :
2016-03-31 06:57:28 +03:00
2019-04-24 19:53:15 +03:00
#### `menuItem.id`
A `String` indicating the item's unique id, this property can be
dynamically changed.
#### `menuItem.label`
A `String` indicating the item's visible label, this property can be
dynamically changed.
#### `menuItem.click`
A `Function` that is fired when the MenuItem receives a click event.
It can be called with `menuItem.click(event, focusedWindow, focusedWebContents)` .
* `event` [KeyboardEvent ](structures/keyboard-event.md )
* `focusedWindow` [BrowserWindow ](browser-window.md )
* `focusedWebContents` [WebContents ](web-contents.md )
#### `menuItem.submenu`
A `Menu` (optional) containing the menu
item's submenu, if present.
#### `menuItem.type`
2019-05-06 18:29:01 +03:00
A `String` indicating the type of the item. Can be `normal` , `separator` , `submenu` , `checkbox` or `radio` .
2019-04-24 19:53:15 +03:00
#### `menuItem.role`
2019-06-15 00:13:42 +03:00
A `String` (optional) indicating the item's role, if set. Can be `undo` , `redo` , `cut` , `copy` , `paste` , `pasteandmatchstyle` , `delete` , `selectall` , `reload` , `forcereload` , `toggledevtools` , `resetzoom` , `zoomin` , `zoomout` , `togglefullscreen` , `window` , `minimize` , `close` , `help` , `about` , `services` , `hide` , `hideothers` , `unhide` , `quit` , `startspeaking` , `stopspeaking` , `close` , `minimize` , `zoom` , `front` , `appMenu` , `fileMenu` , `editMenu` , `viewMenu` or `windowMenu`
2019-04-24 19:53:15 +03:00
#### `menuItem.accelerator`
2019-05-06 18:29:01 +03:00
A `Accelerator` (optional) indicating the item's accelerator, if set.
2019-04-24 19:53:15 +03:00
#### `menuItem.icon`
A `NativeImage | String` (optional) indicating the
item's icon, if set.
#### `menuItem.sublabel`
A `String` indicating the item's sublabel, this property can be dynamically changed.
2019-07-11 11:56:22 +03:00
#### `menuItem.toolTip` _macOS_
A `String` indicating the item's hover text.
2016-06-22 07:23:07 +03:00
#### `menuItem.enabled`
2016-03-31 06:57:28 +03:00
2017-07-24 11:29:03 +03:00
A `Boolean` indicating whether the item is enabled, this property can be
2016-06-22 07:23:07 +03:00
dynamically changed.
2016-03-31 06:57:28 +03:00
2016-06-22 07:23:07 +03:00
#### `menuItem.visible`
2017-07-24 11:29:03 +03:00
A `Boolean` indicating whether the item is visible, this property can be
2016-06-22 07:23:07 +03:00
dynamically changed.
#### `menuItem.checked`
2017-07-24 11:29:03 +03:00
A `Boolean` indicating whether the item is checked, this property can be
2016-06-22 07:23:07 +03:00
dynamically changed.
A `checkbox` menu item will toggle the `checked` property on and off when
selected.
2016-03-31 06:57:28 +03:00
A `radio` menu item will turn on its `checked` property when clicked, and
2016-06-22 07:23:07 +03:00
will turn off that property for all adjacent items in the same menu.
You can add a `click` function for additional behavior.
2016-11-25 15:17:31 +03:00
2019-04-24 19:53:15 +03:00
#### `menuItem.registerAccelerator`
2016-11-25 15:17:31 +03:00
2019-04-24 19:53:15 +03:00
A `Boolean` indicating if the accelerator should be registered with the
system or just displayed, this property can be dynamically changed.
2016-11-25 15:17:31 +03:00
2019-04-24 19:53:15 +03:00
#### `menuItem.commandId`
2016-11-25 15:17:31 +03:00
2019-04-24 19:53:15 +03:00
A `Number` indicating an item's sequential unique id.
#### `menuItem.menu`
A `Menu` that the item is a part of.