electron/docs/api/touch-bar-popover.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1.1 KiB
Markdown
Raw Normal View History

2017-03-03 17:54:46 +00:00
## Class: TouchBarPopover
> Create a popover in the touch bar for native macOS applications
Process: [Main](../glossary.md#main-process)<br />
_This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._
2017-03-03 17:54:46 +00:00
### `new TouchBarPopover(options)`
2017-03-03 17:54:46 +00:00
* `options` Object
* `label` string (optional) - Popover button text.
2017-03-08 21:04:55 +00:00
* `icon` [NativeImage](native-image.md) (optional) - Popover button icon.
* `items` [TouchBar](touch-bar.md) - Items to display in the popover.
* `showCloseButton` boolean (optional) - `true` to display a close button
2017-03-03 17:54:46 +00:00
on the left of the popover, `false` to not show it. Default is `true`.
### Instance Properties
The following properties are available on instances of `TouchBarPopover`:
#### `touchBarPopover.label`
A `string` representing the popover's current button text. Changing this value immediately updates the
2017-03-03 17:54:46 +00:00
popover in the touch bar.
#### `touchBarPopover.icon`
A `NativeImage` representing the popover's current button icon. Changing this value immediately updates the
2017-03-03 17:54:46 +00:00
popover in the touch bar.