📝 BrowserWindow.setThumbarButton API.
This commit is contained in:
parent
54af048f04
commit
97ab780305
1 changed files with 29 additions and 0 deletions
|
@ -643,6 +643,35 @@ Sets a 16px overlay onto the current taskbar icon, usually used to convey some s
|
||||||
|
|
||||||
__Note:__ This API is only available on Windows (Windows 7 and above)
|
__Note:__ This API is only available on Windows (Windows 7 and above)
|
||||||
|
|
||||||
|
|
||||||
|
### BrowserWindow.setThumbarButtons(buttons)
|
||||||
|
|
||||||
|
* `buttons` Array of `button` objects
|
||||||
|
* `button` Object
|
||||||
|
* `icon` [NativeImage](native-image.md) - The icon showing in thumbnail toolbar.
|
||||||
|
* `tooltip` String - (Option) - The text of the button's tooltip.
|
||||||
|
* `flags` Array of Strings - (Option) Control specific states and behaviors
|
||||||
|
of the button. By default, it uses `enabled`.
|
||||||
|
* `enabled` - The button is active and available to the user.
|
||||||
|
* `disabled` - The button is disabled. It is present, but has a visual state
|
||||||
|
that indicates that it will not respond to user action.
|
||||||
|
* `dismissonclick` - When the button is clicked, the taskbar button's flyout
|
||||||
|
closes immediately.
|
||||||
|
* `nobackground` - Do not draw a button border, use only the image.
|
||||||
|
* `hidden` - The button is not shown to the user.
|
||||||
|
* `noninteractive` - The button is enabled but not interactive; no pressed
|
||||||
|
button state is drawn. This value is intended for instances where the button
|
||||||
|
is used in a notification.
|
||||||
|
* `click` - Function
|
||||||
|
|
||||||
|
Add a thumbnail toolbar with a specified set of buttons to the thumbnail image of
|
||||||
|
a window in a taskbar button layout.
|
||||||
|
|
||||||
|
__Note:__ This API is only available on Windows (Windows 7 and above).
|
||||||
|
Once you setup the thumbnail toolbar, the toolbar cannot be removed due to the
|
||||||
|
platform's limitation. But you can call the API with an empty array to clean the
|
||||||
|
buttons.
|
||||||
|
|
||||||
### BrowserWindow.showDefinitionForSelection()
|
### BrowserWindow.showDefinitionForSelection()
|
||||||
|
|
||||||
Shows pop-up dictionary that searches the selected word on the page.
|
Shows pop-up dictionary that searches the selected word on the page.
|
||||||
|
|
Loading…
Add table
Reference in a new issue