2017-05-17 21:00:40 +00:00
# BrowserWindow
2013-08-14 22:43:35 +00:00
2016-04-21 22:39:12 +00:00
> Create and control browser windows.
2013-08-14 22:43:35 +00:00
2016-11-23 19:20:56 +00:00
Process: [Main ](../glossary.md#main-process )
2016-11-03 17:26:00 +00:00
2013-08-14 22:43:35 +00:00
```javascript
2015-12-10 20:48:52 +00:00
// In the main process.
2016-06-13 13:11:40 +00:00
const {BrowserWindow} = require('electron')
2013-08-14 22:43:35 +00:00
2016-07-26 01:39:25 +00:00
// Or use `remote` from the renderer process.
// const {BrowserWindow} = require('electron').remote
2015-12-10 20:48:52 +00:00
2016-06-13 13:11:40 +00:00
let win = new BrowserWindow({width: 800, height: 600})
2016-05-04 17:59:02 +00:00
win.on('closed', () => {
2016-06-13 13:11:40 +00:00
win = null
})
2013-08-14 22:43:35 +00:00
2016-08-19 05:20:55 +00:00
// Load a remote URL
2016-06-13 13:11:40 +00:00
win.loadURL('https://github.com')
2016-08-19 05:20:55 +00:00
// Or load a local HTML file
win.loadURL(`file://${__dirname}/app/index.html`)
2013-08-14 22:43:35 +00:00
```
2016-06-13 13:11:40 +00:00
## Frameless window
To create a window without chrome, or a transparent window in arbitrary shape,
you can use the [Frameless Window ](frameless-window.md ) API.
## Showing window gracefully
2016-12-20 03:01:35 +00:00
When loading a page in the window directly, users may see the page load incrementally, which is not a good experience for a native app. To make the window display
2016-06-13 13:11:40 +00:00
without visual flash, there are two solutions for different situations.
### Using `ready-to-show` event
2017-03-20 17:13:45 +00:00
While loading the page, the `ready-to-show` event will be emitted when the renderer
process has rendered the page for the first time if the window has not been shown yet. Showing
2017-03-09 14:41:31 +00:00
the window after this event will have no visual flash:
2016-06-13 13:11:40 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2016-06-13 13:11:40 +00:00
let win = new BrowserWindow({show: false})
2016-06-13 13:19:44 +00:00
win.once('ready-to-show', () => {
2016-06-13 13:11:40 +00:00
win.show()
})
```
2017-02-13 08:14:49 +00:00
This event is usually emitted after the `did-finish-load` event, but for
2016-06-13 13:11:40 +00:00
pages with many remote resources, it may be emitted before the `did-finish-load`
event.
### Setting `backgroundColor`
For a complex app, the `ready-to-show` event could be emitted too late, making
the app feel slow. In this case, it is recommended to show the window
immediately, and use a `backgroundColor` close to your app's background:
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2016-06-13 13:11:40 +00:00
let win = new BrowserWindow({backgroundColor: '#2e2c29'})
win.loadURL('https://github.com')
```
Note that even for apps that use `ready-to-show` event, it is still recommended
to set `backgroundColor` to make app feel more native.
2013-09-09 06:52:46 +00:00
2016-06-20 02:06:48 +00:00
## Parent and child windows
By using `parent` option, you can create child windows:
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2016-06-20 02:06:48 +00:00
let top = new BrowserWindow()
let child = new BrowserWindow({parent: top})
2016-07-26 01:39:25 +00:00
child.show()
top.show()
2016-06-20 02:06:48 +00:00
```
The `child` window will always show on top of the `top` window.
### Modal windows
2016-06-20 07:00:38 +00:00
A modal window is a child window that disables parent window, to create a modal
window, you have to set both `parent` and `modal` options:
2016-06-20 02:06:48 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2016-06-20 07:00:38 +00:00
let child = new BrowserWindow({parent: top, modal: true, show: false})
2016-06-20 02:06:48 +00:00
child.loadURL('https://github.com')
child.once('ready-to-show', () => {
child.show()
})
```
2017-05-22 18:10:10 +00:00
### Page visibility
The [Page Visibility API][page-visibility-api] works as follows:
* On all platforms, the visibility state tracks whether the window is
hidden/minimized or not.
* Additionally, on macOS, the visibility state also tracks the window
occlusion state. If the window is occluded (i.e. fully covered) by another
window, the visibility state will be `hidden` . On other platforms, the
visibility state will be `hidden` only when the window is minimized or
explicitly hidden with `win.hide()` .
* If a `BrowserWindow` is created with `show: false` , the initial visibility
state will be `visible` despite the window actually being hidden.
* If `backgroundThrottling` is disabled, the visibility state will remain
`visible` even if the window is minimized, occluded, or hidden.
It is recommended that you pause expensive operations when the visibility
state is `hidden` in order to minimize power consumption.
2016-06-20 02:06:48 +00:00
### Platform notices
2016-12-06 21:47:26 +00:00
* On macOS modal windows will be displayed as sheets attached to the parent window.
2016-06-20 07:00:38 +00:00
* On macOS the child windows will keep the relative position to parent window
2016-06-20 02:06:48 +00:00
when parent window moves, while on Windows and Linux child windows will not
move.
* On Windows it is not supported to change parent window dynamically.
* On Linux the type of modal windows will be changed to `dialog` .
2016-06-20 07:00:38 +00:00
* On Linux many desktop environments do not support hiding a modal window.
2016-06-20 02:06:48 +00:00
2013-08-14 22:43:35 +00:00
## Class: BrowserWindow
2016-11-15 00:14:32 +00:00
> Create and control browser windows.
2016-11-23 19:20:56 +00:00
Process: [Main ](../glossary.md#main-process )
2016-11-15 00:14:32 +00:00
2013-08-29 14:37:51 +00:00
`BrowserWindow` is an
2018-01-12 15:24:48 +00:00
[EventEmitter ](https://nodejs.org/api/events.html#events_class_events_eventemitter ).
2013-08-14 22:43:35 +00:00
2015-08-20 13:17:53 +00:00
It creates a new `BrowserWindow` with native properties as set by the `options` .
2015-11-21 04:42:40 +00:00
### `new BrowserWindow([options])`
2015-08-20 13:17:53 +00:00
2016-10-30 10:46:20 +00:00
* `options` Object (optional)
* `width` Integer (optional) - Window's width in pixels. Default is `800` .
* `height` Integer (optional) - Window's height in pixels. Default is `600` .
* `x` Integer (optional) (**required** if y is used) - Window's left offset from screen.
2016-05-23 16:17:43 +00:00
Default is to center the window.
2016-10-30 10:46:20 +00:00
* `y` Integer (optional) (**required** if x is used) - Window's top offset from screen.
2016-05-23 16:17:43 +00:00
Default is to center the window.
2016-10-30 10:46:20 +00:00
* `useContentSize` Boolean (optional) - The `width` and `height` would be used as web
2016-01-07 06:23:21 +00:00
page's size, which means the actual window's size will include window
frame's size and be slightly larger. Default is `false` .
2016-10-30 10:46:20 +00:00
* `center` Boolean (optional) - Show window in the center of the screen.
* `minWidth` Integer (optional) - Window's minimum width. Default is `0` .
* `minHeight` Integer (optional) - Window's minimum height. Default is `0` .
* `maxWidth` Integer (optional) - Window's maximum width. Default is no limit.
* `maxHeight` Integer (optional) - Window's maximum height. Default is no limit.
* `resizable` Boolean (optional) - Whether window is resizable. Default is `true` .
* `movable` Boolean (optional) - Whether window is movable. This is not implemented
2016-01-19 15:07:51 +00:00
on Linux. Default is `true` .
2016-10-30 10:46:20 +00:00
* `minimizable` Boolean (optional) - Whether window is minimizable. This is not
2016-01-19 15:07:51 +00:00
implemented on Linux. Default is `true` .
2016-10-30 10:46:20 +00:00
* `maximizable` Boolean (optional) - Whether window is maximizable. This is not
2016-01-22 22:31:59 +00:00
implemented on Linux. Default is `true` .
2016-10-30 10:46:20 +00:00
* `closable` Boolean (optional) - Whether window is closable. This is not implemented
2016-01-19 15:07:51 +00:00
on Linux. Default is `true` .
2016-10-30 10:46:20 +00:00
* `focusable` Boolean (optional) - Whether the window can be focused. Default is
2016-06-13 08:24:45 +00:00
`true` . On Windows setting `focusable: false` also implies setting
2016-06-13 08:53:08 +00:00
`skipTaskbar: true` . On Linux setting `focusable: false` makes the window
stop interacting with wm, so the window will always stay on top in all
workspaces.
2016-10-30 10:46:20 +00:00
* `alwaysOnTop` Boolean (optional) - Whether the window should always stay on top of
2016-01-07 06:23:21 +00:00
other windows. Default is `false` .
2016-10-30 10:46:20 +00:00
* `fullscreen` Boolean (optional) - Whether the window should show in fullscreen. When
2016-05-11 22:14:17 +00:00
explicitly set to `false` the fullscreen button will be hidden or disabled
2016-06-18 13:26:26 +00:00
on macOS. Default is `false` .
2016-10-30 10:46:20 +00:00
* `fullscreenable` Boolean (optional) - Whether the window can be put into fullscreen
2016-06-18 13:26:26 +00:00
mode. On macOS, also whether the maximize/zoom button should toggle full
2016-05-26 17:06:42 +00:00
screen mode or maximize window. Default is `true` .
2017-08-13 06:35:03 +00:00
* `simpleFullscreen` Boolean (optional) - Use pre-Lion fullscreen on macOS. Default is `false` .
2016-10-30 10:46:20 +00:00
* `skipTaskbar` Boolean (optional) - Whether to show the window in taskbar. Default is
2016-01-07 06:23:21 +00:00
`false` .
2016-10-30 10:46:20 +00:00
* `kiosk` Boolean (optional) - The kiosk mode. Default is `false` .
* `title` String (optional) - Default window title. Default is `"Electron"` .
2016-11-05 08:42:45 +00:00
* `icon` ([NativeImage](native-image.md) | String) (optional) - The window icon. On Windows it is
2016-05-20 10:58:47 +00:00
recommended to use `ICO` icons to get best visual effects, you can also
leave it undefined so the executable's icon will be used.
2016-10-30 10:46:20 +00:00
* `show` Boolean (optional) - Whether window should be shown when created. Default is
2016-01-07 06:23:21 +00:00
`true` .
2016-10-30 10:46:20 +00:00
* `frame` Boolean (optional) - Specify `false` to create a
2016-01-07 06:23:21 +00:00
[Frameless Window ](frameless-window.md ). Default is `true` .
2016-10-30 10:46:20 +00:00
* `parent` BrowserWindow (optional) - Specify parent window. Default is `null` .
* `modal` Boolean (optional) - Whether this is a modal window. This only works when the
2016-06-20 07:00:38 +00:00
window is a child window. Default is `false` .
2016-10-30 10:46:20 +00:00
* `acceptFirstMouse` Boolean (optional) - Whether the web view accepts a single
2016-01-11 05:43:24 +00:00
mouse-down event that simultaneously activates the window. Default is
`false` .
2016-10-30 10:46:20 +00:00
* `disableAutoHideCursor` Boolean (optional) - Whether to hide cursor when typing.
2016-01-11 05:43:24 +00:00
Default is `false` .
2016-10-30 10:46:20 +00:00
* `autoHideMenuBar` Boolean (optional) - Auto hide the menu bar unless the `Alt`
2016-01-07 06:23:21 +00:00
key is pressed. Default is `false` .
2016-10-30 10:46:20 +00:00
* `enableLargerThanScreen` Boolean (optional) - Enable the window to be resized larger
2016-01-07 06:23:21 +00:00
than screen. Default is `false` .
2017-11-03 20:02:12 +00:00
* `backgroundColor` String (optional) - Window's background color as a hexadecimal value,
2016-01-23 00:20:18 +00:00
like `#66CD00` or `#FFF` or `#80FFFFFF` (alpha is supported). Default is
2016-04-03 04:55:33 +00:00
`#FFF` (white).
2016-10-30 10:46:20 +00:00
* `hasShadow` Boolean (optional) - Whether window should have a shadow. This is only
2016-06-18 13:26:26 +00:00
implemented on macOS. Default is `true` .
2017-10-02 15:08:10 +00:00
* `opacity` Number (optional) - Set the initial opacity of the window, between 0.0 (fully
2017-10-01 08:36:22 +00:00
transparent) and 1.0 (fully opaque). This is only implemented on Windows and macOS.
2016-10-30 10:46:20 +00:00
* `darkTheme` Boolean (optional) - Forces using dark theme for the window, only works on
2016-01-07 06:23:21 +00:00
some GTK+3 desktop environments. Default is `false` .
2016-10-30 10:46:20 +00:00
* `transparent` Boolean (optional) - Makes the window [transparent ](frameless-window.md ).
2016-01-07 06:23:21 +00:00
Default is `false` .
2016-10-30 10:46:20 +00:00
* `type` String (optional) - The type of window, default is normal window. See more about
2016-01-15 12:43:44 +00:00
this below.
2017-06-05 20:30:08 +00:00
* `titleBarStyle` String (optional) - The style of window title bar.
Default is `default` . Possible values are:
2016-10-26 05:19:41 +00:00
* `default` - Results in the standard gray opaque Mac title
2016-10-26 01:52:40 +00:00
bar.
2016-10-26 05:19:41 +00:00
* `hidden` - Results in a hidden title bar and a full size content window, yet
2016-10-26 01:52:40 +00:00
the title bar still has the standard window controls ("traffic lights") in
the top left.
2017-06-05 20:30:08 +00:00
* `hiddenInset` - Results in a hidden title bar with an alternative look
2016-10-26 01:52:40 +00:00
where the traffic light buttons are slightly more inset from the window edge.
2017-06-05 20:30:08 +00:00
* `customButtonsOnHover` Boolean (optional) - Draw custom close, minimize,
and full screen buttons on macOS frameless windows. These buttons will not
display unless hovered over in the top left of the window. These custom
buttons prevent issues with mouse events that occur with the standard
window toolbar buttons. **Note:** This option is currently experimental.
2017-07-14 18:48:10 +00:00
* `fullscreenWindowTitle` Boolean (optional) - Shows the title in the
2017-12-22 14:13:12 +00:00
title bar in full screen mode on macOS for all `titleBarStyle` options.
2017-07-14 18:48:10 +00:00
Default is `false` .
2016-10-30 10:46:20 +00:00
* `thickFrame` Boolean (optional) - Use `WS_THICKFRAME` style for frameless windows on
2016-07-09 12:52:45 +00:00
Windows, which adds standard window frame. Setting it to `false` will remove
window shadow and window animations. Default is `true` .
2016-12-29 22:11:26 +00:00
* `vibrancy` String (optional) - Add a type of vibrancy effect to the window, only on
2016-11-08 14:24:11 +00:00
macOS. Can be `appearance-based` , `light` , `dark` , `titlebar` , `selection` ,
2018-03-07 16:40:36 +00:00
`menu` , `popover` , `sidebar` , `medium-light` or `ultra-dark` . Please note that
using `frame: false` in combination with a vibrancy value requires that you use a
non-default `titleBarStyle` as well.
2016-12-29 22:11:26 +00:00
* `zoomToPageWidth` Boolean (optional) - Controls the behavior on macOS when
2016-11-17 21:12:52 +00:00
option-clicking the green stoplight button on the toolbar or by clicking the
Window > Zoom menu item. If `true` , the window will grow to the preferred
width of the web page when zoomed, `false` will cause it to zoom to the
width of the screen. This will also affect the behavior when calling
`maximize()` directly. Default is `false` .
2017-03-30 20:49:00 +00:00
* `tabbingIdentifier` String (optional) - Tab group name, allows opening the
window as a native tab on macOS 10.12+. Windows with the same tabbing
2017-06-11 08:19:01 +00:00
identifier will be grouped together. This also adds a native new tab button
to your window's tab bar and allows your `app` and window to receive the
`new-window-for-tab` event.
2016-10-30 10:46:20 +00:00
* `webPreferences` Object (optional) - Settings of web page's features.
* `devTools` Boolean (optional) - Whether to enable DevTools. If it is set to `false` , can not use `BrowserWindow.webContents.openDevTools()` to open DevTools. Default is `true` .
* `nodeIntegration` Boolean (optional) - Whether node integration is enabled. Default
2016-10-26 01:52:40 +00:00
is `true` .
2017-03-15 10:34:21 +00:00
* `nodeIntegrationInWorker` Boolean (optional) - Whether node integration is
enabled in web workers. Default is `false` . More about this can be found
in [Multithreading ](../tutorial/multithreading.md ).
2016-10-30 10:46:20 +00:00
* `preload` String (optional) - Specifies a script that will be loaded before other
2016-10-26 01:52:40 +00:00
scripts run in the page. This script will always have access to node APIs
no matter whether node integration is turned on or off. The value should
be the absolute file path to the script.
When node integration is turned off, the preload script can reintroduce
Node global symbols back to the global scope. See example
[here ](process.md#event-loaded ).
2017-03-09 12:23:03 +00:00
* `sandbox` Boolean (optional) - If set, this will sandbox the renderer
2017-03-27 17:14:38 +00:00
associated with the window, making it compatible with the Chromium
OS-level sandbox and disabling the Node.js engine. This is not the same as
the `nodeIntegration` option and the APIs available to the preload script
are more limited. Read more about the option [here ](sandbox-option.md ).
**Note:** This option is currently experimental and may change or be
removed in future Electron releases.
2016-10-30 10:46:20 +00:00
* `session` [Session ](session.md#class-session ) (optional) - Sets the session used by the
2016-10-26 01:52:40 +00:00
page. Instead of passing the Session object directly, you can also choose to
use the `partition` option instead, which accepts a partition string. When
both `session` and `partition` are provided, `session` will be preferred.
Default is the default session.
2016-10-30 10:46:20 +00:00
* `partition` String (optional) - Sets the session used by the page according to the
2016-10-26 01:52:40 +00:00
session's partition string. If `partition` starts with `persist:` , the page
will use a persistent session available to all pages in the app with the
same `partition` . If there is no `persist:` prefix, the page will use an
in-memory session. By assigning the same `partition` , multiple pages can share
the same session. Default is the default session.
2018-02-13 06:33:11 +00:00
* `affinity` String (optional) - When specified, web pages with the same
`affinity` will run in the same renderer process. Note that due to reusing
the renderer process, certain `webPreferences` options will also be shared
between the web pages even when you specified different values for them,
including but not limited to `preload` , `sandbox` and `nodeIntegration` .
So it is suggested to use exact same `webPreferences` for web pages with
2018-06-19 14:33:24 +00:00
the same `affinity` . _This property is experimental_
2016-10-30 10:46:20 +00:00
* `zoomFactor` Number (optional) - The default zoom factor of the page, `3.0` represents
2016-10-26 01:52:40 +00:00
`300%` . Default is `1.0` .
2016-10-30 10:46:20 +00:00
* `javascript` Boolean (optional) - Enables JavaScript support. Default is `true` .
* `webSecurity` Boolean (optional) - When `false` , it will disable the
2016-10-26 01:52:40 +00:00
same-origin policy (usually using testing websites by people), and set
2017-01-24 05:42:02 +00:00
`allowRunningInsecureContent` to `true` if this options has not been set
by user. Default is `true` .
2016-10-30 10:46:20 +00:00
* `allowRunningInsecureContent` Boolean (optional) - Allow an https page to run
2016-10-26 01:52:40 +00:00
JavaScript, CSS or plugins from http URLs. Default is `false` .
2016-10-30 10:46:20 +00:00
* `images` Boolean (optional) - Enables image support. Default is `true` .
* `textAreasAreResizable` Boolean (optional) - Make TextArea elements resizable. Default
2016-10-26 01:52:40 +00:00
is `true` .
2016-10-30 10:46:20 +00:00
* `webgl` Boolean (optional) - Enables WebGL support. Default is `true` .
* `webaudio` Boolean (optional) - Enables WebAudio support. Default is `true` .
* `plugins` Boolean (optional) - Whether plugins should be enabled. Default is `false` .
* `experimentalFeatures` Boolean (optional) - Enables Chromium's experimental features.
2016-10-26 01:52:40 +00:00
Default is `false` .
2016-10-30 10:46:20 +00:00
* `experimentalCanvasFeatures` Boolean (optional) - Enables Chromium's experimental
2016-10-26 01:52:40 +00:00
canvas features. Default is `false` .
2016-10-30 10:46:20 +00:00
* `scrollBounce` Boolean (optional) - Enables scroll bounce (rubber banding) effect on
2016-10-26 01:52:40 +00:00
macOS. Default is `false` .
2018-05-23 21:01:34 +00:00
* `enableBlinkFeatures` String (optional) - A list of feature strings separated by `,` , like
2016-10-26 01:52:40 +00:00
`CSSVariables,KeyboardEventKey` to enable. The full list of supported feature
2018-04-14 00:49:30 +00:00
strings can be found in the [RuntimeEnabledFeatures.json5][runtime-enabled-features]
2016-10-26 01:52:40 +00:00
file.
2016-10-30 10:46:20 +00:00
* `disableBlinkFeatures` String (optional) - A list of feature strings separated by `,` ,
2016-10-26 01:52:40 +00:00
like `CSSVariables,KeyboardEventKey` to disable. The full list of supported
feature strings can be found in the
2018-04-14 00:49:30 +00:00
[RuntimeEnabledFeatures.json5][runtime-enabled-features] file.
2016-10-30 10:46:20 +00:00
* `defaultFontFamily` Object (optional) - Sets the default font for the font-family.
* `standard` String (optional) - Defaults to `Times New Roman` .
* `serif` String (optional) - Defaults to `Times New Roman` .
* `sansSerif` String (optional) - Defaults to `Arial` .
* `monospace` String (optional) - Defaults to `Courier New` .
2016-12-28 18:29:55 +00:00
* `cursive` String (optional) - Defaults to `Script` .
* `fantasy` String (optional) - Defaults to `Impact` .
2016-10-30 10:46:20 +00:00
* `defaultFontSize` Integer (optional) - Defaults to `16` .
* `defaultMonospaceFontSize` Integer (optional) - Defaults to `13` .
* `minimumFontSize` Integer (optional) - Defaults to `0` .
* `defaultEncoding` String (optional) - Defaults to `ISO-8859-1` .
* `backgroundThrottling` Boolean (optional) - Whether to throttle animations and timers
2017-05-22 18:10:10 +00:00
when the page becomes background. This also affects the
2017-11-07 13:17:00 +00:00
[Page Visibility API ](#page-visibility ). Defaults to `true` .
2016-10-30 10:46:20 +00:00
* `offscreen` Boolean (optional) - Whether to enable offscreen rendering for the browser
2016-12-29 17:15:28 +00:00
window. Defaults to `false` . See the
[offscreen rendering tutorial ](../tutorial/offscreen-rendering.md ) for
more details.
2017-01-05 17:47:03 +00:00
* `contextIsolation` Boolean (optional) - Whether to run Electron APIs and
the specified `preload` script in a separate JavaScript context. Defaults
to `false` . The context that the `preload` script runs in will still
have full access to the `document` and `window` globals but it will use
its own set of JavaScript builtins (`Array`, `Object` , `JSON` , etc.)
and will be isolated from any changes made to the global environment
by the loaded page. The Electron API will only be available in the
`preload` script and not the loaded page. This option should be used when
loading potentially untrusted remote content to ensure the loaded content
cannot tamper with the `preload` script and any Electron APIs being used.
This option uses the same technique used by [Chrome Content Scripts][chrome-content-scripts].
2017-01-13 19:01:46 +00:00
You can access this context in the dev tools by selecting the
'Electron Isolated Context' entry in the combo box at the top of the
Console tab. **Note:** This option is currently experimental and may
change or be removed in future Electron releases.
2017-07-17 19:40:59 +00:00
* `nativeWindowOpen` Boolean (optional) - Whether to use native
2018-01-12 15:24:48 +00:00
`window.open()` . Defaults to `false` . **Note:** This option is currently
2017-07-17 19:40:59 +00:00
experimental.
2017-05-17 20:09:24 +00:00
* `webviewTag` Boolean (optional) - Whether to enable the [`<webview>` tag ](webview-tag.md ).
Defaults to the value of the `nodeIntegration` option. **Note:** The
2017-05-19 17:22:28 +00:00
`preload` script configured for the `<webview>` will have node integration
enabled when it is executed so you should ensure remote/untrusted content
is not able to create a `<webview>` tag with a possibly malicious `preload`
script. You can use the `will-attach-webview` event on [webContents ](web-contents.md )
to strip away the `preload` script and to validate or alter the
`<webview>` 's initial settings.
2018-03-23 22:35:14 +00:00
* `additionalArguments` String[] (optional) - A list of strings that will be appended
2018-02-12 17:54:31 +00:00
to `process.argv` in the renderer process of this app. Useful for passing small
bits of data down to renderer process preload scripts.
2018-01-10 06:07:56 +00:00
* `safeDialogs` Boolean (optional) - Whether to enable browser style
2018-03-06 02:21:40 +00:00
consecutive dialog protection. Default is `false` .
2018-03-06 02:24:42 +00:00
* `safeDialogsMessage` String (optional) - The message to display when
consecutive dialog protection is triggered. If not defined the default
message would be used, note that currently the default message is in
English and not localized.
2018-04-26 15:23:27 +00:00
* `navigateOnDragDrop` Boolean (optional) - Whether dragging and dropping a
file or link onto the page causes a navigation. Default is `false` .
2016-01-07 06:23:21 +00:00
2016-05-06 05:21:19 +00:00
When setting minimum or maximum window size with `minWidth` /`maxWidth`/
2016-07-13 04:21:25 +00:00
`minHeight` /`maxHeight`, it only constrains the users. It won't prevent you from
2016-05-06 05:21:19 +00:00
passing a size that does not follow size constraints to `setBounds` /`setSize` or
to the constructor of `BrowserWindow` .
2016-07-13 04:21:25 +00:00
The possible values and behaviors of the `type` option are platform dependent.
Possible values are:
2016-01-07 06:23:21 +00:00
* On Linux, possible types are `desktop` , `dock` , `toolbar` , `splash` ,
`notification` .
2016-06-18 13:26:26 +00:00
* On macOS, possible types are `desktop` , `textured` .
2016-01-07 06:23:21 +00:00
* The `textured` type adds metal gradient appearance
(`NSTexturedBackgroundWindowMask`).
* The `desktop` type places the window at the desktop background window level
2015-11-20 05:06:42 +00:00
(`kCGDesktopWindowLevel - 1`). Note that desktop window will not receive
focus, keyboard or mouse events, but you can use `globalShortcut` to receive
input sparingly.
2016-07-12 18:02:14 +00:00
* On Windows, possible type is `toolbar` .
2016-01-07 06:23:21 +00:00
2016-07-13 04:24:22 +00:00
### Instance Events
2015-08-20 13:17:53 +00:00
2016-07-13 04:30:27 +00:00
Objects created with `new BrowserWindow` emit the following events:
2013-08-14 22:43:35 +00:00
2016-01-11 05:43:24 +00:00
**Note:** Some events are only available on specific operating systems and are
labeled as such.
2015-08-26 21:14:59 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'page-title-updated'
2013-08-14 22:43:35 +00:00
2015-08-20 13:17:53 +00:00
Returns:
2013-08-14 22:43:35 +00:00
* `event` Event
2016-08-15 17:06:29 +00:00
* `title` String
2013-08-14 22:43:35 +00:00
2013-08-29 14:37:51 +00:00
Emitted when the document changed its title, calling `event.preventDefault()`
2016-07-13 04:40:46 +00:00
will prevent the native window's title from changing.
2013-08-14 22:43:35 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'close'
2013-08-14 22:43:35 +00:00
2015-08-20 13:17:53 +00:00
Returns:
2013-08-14 22:43:35 +00:00
* `event` Event
2013-08-29 14:37:51 +00:00
Emitted when the window is going to be closed. It's emitted before the
2015-08-20 13:17:53 +00:00
`beforeunload` and `unload` event of the DOM. Calling `event.preventDefault()`
will cancel the close.
2013-08-14 22:43:35 +00:00
2013-08-29 14:37:51 +00:00
Usually you would want to use the `beforeunload` handler to decide whether the
window should be closed, which will also be called when the window is
2016-05-23 04:28:16 +00:00
reloaded. In Electron, returning any value other than `undefined` would cancel the
2015-08-20 13:17:53 +00:00
close. For example:
2013-08-14 22:43:35 +00:00
```javascript
2016-05-10 17:15:09 +00:00
window.onbeforeunload = (e) => {
2016-07-26 01:39:25 +00:00
console.log('I do not want to be closed')
2013-08-14 22:43:35 +00:00
2016-05-23 04:28:16 +00:00
// Unlike usual browsers that a message box will be prompted to users, returning
// a non-void value will silently cancel the close.
// It is recommended to use the dialog API to let the user confirm closing the
// application.
2017-08-25 21:24:50 +00:00
e.returnValue = false // equivalent to `return false` but not recommended
2016-07-26 01:39:25 +00:00
}
2013-08-14 22:43:35 +00:00
```
2018-05-08 05:16:09 +00:00
_**Note**: There is a subtle difference between the behaviors of `window.onbeforeunload = handler` and `window.addEventListener('beforeunload', handler)` . It is recommended to always set the `event.returnValue` explicitly, instead of only returning a value, as the former works more consistently within Electron._
2013-08-14 22:43:35 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'closed'
2013-08-14 22:43:35 +00:00
2014-04-30 06:52:58 +00:00
Emitted when the window is closed. After you have received this event you should
2016-07-13 04:40:46 +00:00
remove the reference to the window and avoid using it any more.
2013-08-14 22:43:35 +00:00
2017-04-24 17:16:11 +00:00
#### Event: 'session-end' _Windows_
2017-04-21 20:45:30 +00:00
2017-05-17 19:45:29 +00:00
Emitted when window session is going to end due to force shutdown or machine restart
2017-04-21 20:45:30 +00:00
or session log off.
2016-07-13 04:24:22 +00:00
#### Event: 'unresponsive'
2014-01-15 14:42:47 +00:00
2014-05-07 06:34:53 +00:00
Emitted when the web page becomes unresponsive.
2014-01-15 14:42:47 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'responsive'
2014-01-15 14:42:47 +00:00
Emitted when the unresponsive web page becomes responsive again.
2016-07-13 04:24:22 +00:00
#### Event: 'blur'
2014-01-15 14:42:47 +00:00
2015-08-20 13:17:53 +00:00
Emitted when the window loses focus.
2014-01-15 14:42:47 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'focus'
2014-05-21 17:46:13 +00:00
2015-08-20 13:17:53 +00:00
Emitted when the window gains focus.
2014-05-21 17:46:13 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'show'
2016-03-08 17:36:41 +00:00
Emitted when the window is shown.
2016-07-13 04:24:22 +00:00
#### Event: 'hide'
2016-03-08 17:36:41 +00:00
Emitted when the window is hidden.
2016-07-13 04:24:22 +00:00
#### Event: 'ready-to-show'
2016-06-13 13:11:40 +00:00
2017-03-09 14:41:31 +00:00
Emitted when the web page has been rendered (while not being shown) and window can be displayed without
2016-07-13 04:40:46 +00:00
a visual flash.
2016-06-13 13:11:40 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'maximize'
2014-11-25 06:43:11 +00:00
Emitted when window is maximized.
2016-07-13 04:24:22 +00:00
#### Event: 'unmaximize'
2014-11-25 06:43:11 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window exits from a maximized state.
2014-11-25 06:43:11 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'minimize'
2014-11-25 06:43:11 +00:00
2015-08-20 13:17:53 +00:00
Emitted when the window is minimized.
2014-11-25 06:43:11 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'restore'
2014-11-25 06:43:11 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window is restored from a minimized state.
2014-11-25 06:43:11 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'resize'
2015-05-09 15:55:10 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window is being resized.
2015-05-09 15:55:10 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'move'
2015-05-09 15:55:10 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window is being moved to a new position.
2015-05-20 08:37:13 +00:00
2018-05-07 15:46:14 +00:00
__Note__: On macOS this event is an alias of `moved` .
2015-05-27 06:57:14 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'moved' _macOS_
2015-05-20 08:37:13 +00:00
Emitted once when the window is moved to a new position.
2015-05-09 15:55:10 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'enter-full-screen'
2014-11-25 06:43:11 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window enters a full-screen state.
2014-11-25 06:43:11 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'leave-full-screen'
2014-11-25 06:43:11 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window leaves a full-screen state.
2014-11-25 06:43:11 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'enter-html-full-screen'
2015-05-16 21:01:30 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window enters a full-screen state triggered by HTML API.
2015-05-16 21:01:30 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'leave-html-full-screen'
2015-05-16 21:01:30 +00:00
2016-07-13 04:40:46 +00:00
Emitted when the window leaves a full-screen state triggered by HTML API.
2015-05-16 21:01:30 +00:00
2016-07-13 04:24:22 +00:00
#### Event: 'app-command' _Windows_
2015-06-19 19:58:47 +00:00
2016-03-31 07:56:49 +00:00
Returns:
* `event` Event
* `command` String
2015-09-02 19:44:51 +00:00
Emitted when an [App Command ](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85 ).aspx)
2015-08-24 22:41:02 +00:00
is invoked. These are typically related to keyboard media keys or browser
commands, as well as the "Back" button built into some mice on Windows.
2015-06-19 19:58:47 +00:00
2016-07-13 04:40:46 +00:00
Commands are lowercased, underscores are replaced with hyphens, and the
`APPCOMMAND_` prefix is stripped off.
2016-03-31 07:56:49 +00:00
e.g. `APPCOMMAND_BROWSER_BACKWARD` is emitted as `browser-backward` .
2016-04-22 14:15:31 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
win.on('app-command', (e, cmd) => {
2015-06-19 19:58:47 +00:00
// Navigate the window back when the user hits their mouse back button
2016-07-26 01:39:25 +00:00
if (cmd === 'browser-backward' & & win.webContents.canGoBack()) {
win.webContents.goBack()
2015-06-19 19:58:47 +00:00
}
2016-07-26 01:39:25 +00:00
})
2015-06-19 19:58:47 +00:00
```
2016-07-13 04:24:22 +00:00
#### Event: 'scroll-touch-begin' _macOS_
2016-01-25 07:02:43 +00:00
Emitted when scroll wheel event phase has begun.
2016-07-13 04:24:22 +00:00
#### Event: 'scroll-touch-end' _macOS_
2016-01-25 07:02:43 +00:00
Emitted when scroll wheel event phase has ended.
2016-09-17 14:29:32 +00:00
#### Event: 'scroll-touch-edge' _macOS_
Emitted when scroll wheel event phase filed upon reaching the edge of element.
2016-07-13 04:24:22 +00:00
#### Event: 'swipe' _macOS_
2016-03-18 15:20:04 +00:00
2016-03-23 15:20:11 +00:00
Returns:
2016-03-18 15:20:04 +00:00
2016-03-23 15:20:11 +00:00
* `event` Event
* `direction` String
2016-03-18 15:20:04 +00:00
2016-03-23 15:20:11 +00:00
Emitted on 3-finger swipe. Possible directions are `up` , `right` , `down` , `left` .
2016-03-18 15:20:04 +00:00
2017-04-03 16:44:26 +00:00
#### Event: 'sheet-begin' _macOS_
Emitted when the window opens a sheet.
#### Event: 'sheet-end' _macOS_
Emitted when the window has closed a sheet.
2017-06-11 08:19:01 +00:00
#### Event: 'new-window-for-tab' _macOS_
Emitted when the native new tab button is clicked.
2016-07-13 04:29:09 +00:00
### Static Methods
2015-08-20 13:17:53 +00:00
2016-07-13 04:28:27 +00:00
The `BrowserWindow` class has the following static methods:
2015-08-20 13:17:53 +00:00
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.getAllWindows()`
2013-12-26 10:41:21 +00:00
2016-09-24 23:59:30 +00:00
Returns `BrowserWindow[]` - An array of all opened browser windows.
2013-12-26 10:41:21 +00:00
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.getFocusedWindow()`
2013-08-14 22:43:35 +00:00
2018-03-07 01:23:02 +00:00
Returns `BrowserWindow | null` - The window that is focused in this application, otherwise returns `null` .
2013-08-14 22:43:35 +00:00
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.fromWebContents(webContents)`
2014-04-25 09:15:26 +00:00
2015-09-10 19:19:37 +00:00
* `webContents` [WebContents ](web-contents.md )
2014-04-25 09:15:26 +00:00
2016-09-24 23:59:30 +00:00
Returns `BrowserWindow` - The window that owns the given `webContents` .
2013-08-14 22:43:35 +00:00
2017-11-22 22:38:22 +00:00
#### `BrowserWindow.fromBrowserView(browserView)`
* `browserView` [BrowserView ](browser-view.md )
Returns `BrowserWindow | null` - The window that owns the given `browserView` . If the given view is not attached to any window, returns `null` .
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.fromId(id)`
2014-05-22 01:56:04 +00:00
* `id` Integer
2016-09-24 23:59:30 +00:00
Returns `BrowserWindow` - The window with the given `id` .
2014-05-22 01:56:04 +00:00
2017-07-05 15:01:30 +00:00
#### `BrowserWindow.addExtension(path)`
* `path` String
Adds Chrome extension located at `path` , and returns extension's name.
The method will also not return if the extension's manifest is missing or incomplete.
**Note:** This API cannot be called before the `ready` event of the `app` module
is emitted.
#### `BrowserWindow.removeExtension(name)`
* `name` String
Remove a Chrome extension by name.
**Note:** This API cannot be called before the `ready` event of the `app` module
is emitted.
#### `BrowserWindow.getExtensions()`
Returns `Object` - The keys are the extension names and each value is
an Object containing `name` and `version` properties.
**Note:** This API cannot be called before the `ready` event of the `app` module
is emitted.
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.addDevToolsExtension(path)`
2014-08-28 08:33:27 +00:00
* `path` String
2015-09-09 21:11:06 +00:00
Adds DevTools extension located at `path` , and returns extension's name.
2014-08-28 08:33:27 +00:00
The extension will be remembered so you only need to call this API once, this
2016-06-03 21:30:55 +00:00
API is not for programming use. If you try to add an extension that has already
been loaded, this method will not return and instead log a warning to the
console.
2016-07-13 04:40:46 +00:00
The method will also not return if the extension's manifest is missing or incomplete.
2014-08-28 08:33:27 +00:00
2016-06-17 22:01:16 +00:00
**Note:** This API cannot be called before the `ready` event of the `app` module
is emitted.
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.removeDevToolsExtension(name)`
2014-08-28 08:33:27 +00:00
* `name` String
2016-07-13 04:40:46 +00:00
Remove a DevTools extension by name.
2014-08-28 08:33:27 +00:00
2016-06-17 22:01:16 +00:00
**Note:** This API cannot be called before the `ready` event of the `app` module
is emitted.
2016-07-13 04:29:09 +00:00
#### `BrowserWindow.getDevToolsExtensions()`
2016-06-09 17:05:09 +00:00
2016-09-24 23:59:30 +00:00
Returns `Object` - The keys are the extension names and each value is
2016-06-10 16:29:26 +00:00
an Object containing `name` and `version` properties.
To check if a DevTools extension is installed you can run the following:
2016-06-09 17:05:09 +00:00
2016-06-10 16:29:26 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2016-06-10 16:34:34 +00:00
let installed = BrowserWindow.getDevToolsExtensions().hasOwnProperty('devtron')
2016-07-26 01:39:25 +00:00
console.log(installed)
2016-06-10 16:29:26 +00:00
```
2016-06-09 17:05:09 +00:00
2016-06-17 22:01:16 +00:00
**Note:** This API cannot be called before the `ready` event of the `app` module
is emitted.
2016-07-13 04:42:08 +00:00
### Instance Properties
2015-08-20 13:17:53 +00:00
2015-09-09 20:57:35 +00:00
Objects created with `new BrowserWindow` have the following properties:
2015-08-26 21:14:59 +00:00
2015-08-20 13:17:53 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
2015-08-20 13:17:53 +00:00
// In this example `win` is our instance
2016-07-26 01:39:25 +00:00
let win = new BrowserWindow({width: 800, height: 600})
win.loadURL('https://github.com')
2015-08-20 13:17:53 +00:00
```
2016-07-13 04:42:08 +00:00
#### `win.webContents`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
A `WebContents` object this window owns. All web page related events and
2015-08-20 13:17:53 +00:00
operations will be done via it.
2015-08-24 22:41:02 +00:00
See the [`webContents` documentation ](web-contents.md ) for its methods and
events.
2014-04-25 09:15:26 +00:00
2016-07-13 04:42:08 +00:00
#### `win.id`
2015-09-09 20:57:35 +00:00
2016-09-24 23:59:30 +00:00
A `Integer` representing the unique ID of the window.
2015-09-09 20:57:35 +00:00
2016-07-13 04:42:08 +00:00
### Instance Methods
2015-09-09 20:57:35 +00:00
Objects created with `new BrowserWindow` have the following instance methods:
2016-01-11 05:43:24 +00:00
**Note:** Some methods are only available on specific operating systems and are
labeled as such.
2015-09-09 20:57:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.destroy()`
2013-08-14 22:43:35 +00:00
2014-04-30 06:52:58 +00:00
Force closing the window, the `unload` and `beforeunload` event won't be emitted
2015-08-20 13:17:53 +00:00
for the web page, and `close` event will also not be emitted
for this window, but it guarantees the `closed` event will be emitted.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.close()`
2013-08-14 22:43:35 +00:00
2016-07-13 04:40:46 +00:00
Try to close the window. This has the same effect as a user manually clicking
the close button of the window. The web page may cancel the close though. See
2015-04-01 00:24:39 +00:00
the [close event ](#event-close ).
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.focus()`
2013-08-14 22:43:35 +00:00
2016-06-22 05:56:51 +00:00
Focuses on the window.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.blur()`
2016-03-11 05:45:51 +00:00
2016-06-22 05:56:51 +00:00
Removes focus from the window.
2016-03-11 05:45:51 +00:00
2016-07-13 04:42:08 +00:00
#### `win.isFocused()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is focused.
2013-08-14 22:43:35 +00:00
2016-08-03 21:54:36 +00:00
#### `win.isDestroyed()`
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is destroyed.
2016-08-03 21:54:36 +00:00
2016-07-13 04:42:08 +00:00
#### `win.show()`
2013-08-14 22:43:35 +00:00
2014-10-17 14:46:00 +00:00
Shows and gives focus to the window.
2016-07-13 04:42:08 +00:00
#### `win.showInactive()`
2014-10-17 14:46:00 +00:00
Shows the window but doesn't focus on it.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.hide()`
2013-08-14 22:43:35 +00:00
Hides the window.
2016-07-13 04:42:08 +00:00
#### `win.isVisible()`
2013-10-03 00:27:59 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is visible to the user.
2013-10-03 00:27:59 +00:00
2016-07-13 04:42:08 +00:00
#### `win.isModal()`
2016-06-20 02:06:48 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether current window is a modal window.
2016-06-20 02:06:48 +00:00
2016-07-13 04:42:08 +00:00
#### `win.maximize()`
2013-08-14 22:43:35 +00:00
2017-03-09 14:41:31 +00:00
Maximizes the window. This will also show (but not focus) the window if it
isn't being displayed already.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.unmaximize()`
2013-08-14 22:43:35 +00:00
Unmaximizes the window.
2016-07-13 04:42:08 +00:00
#### `win.isMaximized()`
2014-05-14 21:58:49 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is maximized.
2014-05-14 21:58:49 +00:00
2016-07-13 04:42:08 +00:00
#### `win.minimize()`
2013-08-14 22:43:35 +00:00
2013-08-29 14:37:51 +00:00
Minimizes the window. On some platforms the minimized window will be shown in
the Dock.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.restore()`
2013-08-14 22:43:35 +00:00
Restores the window from minimized state to its previous state.
2016-07-13 04:42:08 +00:00
#### `win.isMinimized()`
2014-07-26 05:58:26 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is minimized.
2014-07-26 05:58:26 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setFullScreen(flag)`
2013-08-14 22:43:35 +00:00
* `flag` Boolean
Sets whether the window should be in fullscreen mode.
2016-07-13 04:42:08 +00:00
#### `win.isFullScreen()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is in fullscreen mode.
2013-08-14 22:43:35 +00:00
2017-08-13 06:35:03 +00:00
#### `win.setSimpleFullScreen(flag)` _macOS_
* `flag` Boolean
2017-09-12 05:09:45 +00:00
Enters or leaves simple fullscreen mode.
Simple fullscreen mode emulates the native fullscreen behavior found in versions of Mac OS X prior to Lion (10.7).
2017-08-13 06:35:03 +00:00
#### `win.isSimpleFullScreen()` _macOS_
2017-09-12 05:09:45 +00:00
Returns `Boolean` - Whether the window is in simple (pre-Lion) fullscreen mode.
2017-08-13 06:35:03 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setAspectRatio(aspectRatio[, extraSize])` _macOS_
2015-07-22 14:23:31 +00:00
2016-07-29 09:53:01 +00:00
* `aspectRatio` Float - The aspect ratio to maintain for some portion of the
2015-08-24 22:41:02 +00:00
content view.
2017-04-03 22:35:39 +00:00
* `extraSize` [Size ](structures/size.md ) - The extra size not to be included while
2016-02-16 04:11:05 +00:00
maintaining the aspect ratio.
2015-07-22 14:23:31 +00:00
2016-07-13 04:40:46 +00:00
This will make a window maintain an aspect ratio. The extra size allows a
2015-08-26 20:57:42 +00:00
developer to have space, specified in pixels, not included within the aspect
ratio calculations. This API already takes into account the difference between a
2015-08-24 22:41:02 +00:00
window's size and its content size.
2015-07-22 14:23:31 +00:00
2015-08-24 22:41:02 +00:00
Consider a normal window with an HD video player and associated controls.
Perhaps there are 15 pixels of controls on the left edge, 25 pixels of controls
on the right edge and 50 pixels of controls below the player. In order to
maintain a 16:9 aspect ratio (standard aspect ratio for HD @1920x1080 ) within
the player itself we would call this function with arguments of 16/9 and
[ 40, 50 ]. The second argument doesn't care where the extra width and height
2018-05-07 15:46:14 +00:00
are within the content view--only that they exist. Sum any extra width and
2015-08-24 22:41:02 +00:00
height areas you have within the overall content view.
2015-07-22 14:23:31 +00:00
2018-06-19 15:24:42 +00:00
Calling this function with a value of `0` will remove any previously set aspect
ratios.
2016-10-26 00:55:34 +00:00
#### `win.previewFile(path[, displayName])` _macOS_
2016-10-13 03:46:42 +00:00
2016-10-26 00:47:22 +00:00
* `path` String - The absolute path to the file to preview with QuickLook. This
2016-10-26 00:55:34 +00:00
is important as Quick Look uses the file name and file extension on the path
to determine the content type of the file to open.
2017-06-13 20:50:10 +00:00
* `displayName` String (optional) - The name of the file to display on the
2016-10-26 00:47:22 +00:00
Quick Look modal view. This is purely visual and does not affect the content
type of the file. Defaults to `path` .
2016-10-13 15:20:47 +00:00
2016-10-26 00:47:22 +00:00
Uses [Quick Look][quick-look] to preview a file at a given path.
2016-10-13 03:46:42 +00:00
2016-11-21 18:30:13 +00:00
#### `win.closeFilePreview()` _macOS_
Closes the currently open [Quick Look][quick-look] panel.
2016-10-08 02:09:31 +00:00
#### `win.setBounds(bounds[, animate])`
2015-05-01 10:50:53 +00:00
2016-10-08 02:09:31 +00:00
* `bounds` [Rectangle ](structures/rectangle.md )
2016-06-18 13:26:26 +00:00
* `animate` Boolean (optional) _macOS_
2015-05-01 10:50:53 +00:00
2016-10-04 22:35:23 +00:00
Resizes and moves the window to the supplied bounds
2015-05-01 10:50:53 +00:00
2016-07-13 04:42:08 +00:00
#### `win.getBounds()`
2015-05-01 10:50:53 +00:00
2016-10-08 02:09:31 +00:00
Returns [`Rectangle` ](structures/rectangle.md )
2015-05-01 10:50:53 +00:00
2016-10-08 02:09:31 +00:00
#### `win.setContentBounds(bounds[, animate])`
2016-08-04 19:15:24 +00:00
2016-10-08 02:09:31 +00:00
* `bounds` [Rectangle ](structures/rectangle.md )
2016-08-04 19:15:24 +00:00
* `animate` Boolean (optional) _macOS_
Resizes and moves the window's client area (e.g. the web page) to
2016-10-04 22:35:23 +00:00
the supplied bounds.
2016-08-04 19:15:24 +00:00
2016-07-29 16:44:39 +00:00
#### `win.getContentBounds()`
2016-10-08 02:09:31 +00:00
Returns [`Rectangle` ](structures/rectangle.md )
2016-07-29 16:44:39 +00:00
2018-02-06 14:16:22 +00:00
#### `win.setEnabled(enable)`
2018-02-06 13:28:41 +00:00
2018-02-06 13:30:33 +00:00
* `enable` Boolean
2018-02-06 13:28:41 +00:00
Disable or enable the window.
2016-07-13 04:42:08 +00:00
#### `win.setSize(width, height[, animate])`
2013-08-14 22:43:35 +00:00
* `width` Integer
* `height` Integer
2016-06-18 13:26:26 +00:00
* `animate` Boolean (optional) _macOS_
2013-08-14 22:43:35 +00:00
Resizes the window to `width` and `height` .
2016-07-13 04:42:08 +00:00
#### `win.getSize()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Integer[]` - Contains the window's width and height.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setContentSize(width, height[, animate])`
2014-05-18 13:33:31 +00:00
* `width` Integer
* `height` Integer
2016-06-18 13:26:26 +00:00
* `animate` Boolean (optional) _macOS_
2014-05-18 13:33:31 +00:00
Resizes the window's client area (e.g. the web page) to `width` and `height` .
2016-07-13 04:42:08 +00:00
#### `win.getContentSize()`
2014-05-18 13:33:31 +00:00
2016-09-24 23:59:30 +00:00
Returns `Integer[]` - Contains the window's client area's width and height.
2014-05-18 13:33:31 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setMinimumSize(width, height)`
2013-08-14 22:43:35 +00:00
* `width` Integer
* `height` Integer
Sets the minimum size of window to `width` and `height` .
2016-07-13 04:42:08 +00:00
#### `win.getMinimumSize()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Integer[]` - Contains the window's minimum width and height.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setMaximumSize(width, height)`
2013-08-14 22:43:35 +00:00
* `width` Integer
* `height` Integer
Sets the maximum size of window to `width` and `height` .
2016-07-13 04:42:08 +00:00
#### `win.getMaximumSize()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Integer[]` - Contains the window's maximum width and height.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setResizable(resizable)`
2013-08-14 22:43:35 +00:00
* `resizable` Boolean
Sets whether the window can be manually resized by user.
2016-07-13 04:42:08 +00:00
#### `win.isResizable()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window can be manually resized by user.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setMovable(movable)` _macOS_ _Windows_
2016-01-19 15:07:51 +00:00
* `movable` Boolean
Sets whether the window can be moved by user. On Linux does nothing.
2016-07-13 04:42:08 +00:00
#### `win.isMovable()` _macOS_ _Windows_
2016-01-19 15:07:51 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window can be moved by user.
On Linux always returns `true` .
2016-01-19 15:07:51 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setMinimizable(minimizable)` _macOS_ _Windows_
2016-01-19 15:07:51 +00:00
* `minimizable` Boolean
Sets whether the window can be manually minimized by user. On Linux does
nothing.
2016-07-13 04:42:08 +00:00
#### `win.isMinimizable()` _macOS_ _Windows_
2016-01-19 15:07:51 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window can be manually minimized by user
On Linux always returns `true` .
2016-01-19 15:07:51 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setMaximizable(maximizable)` _macOS_ _Windows_
2016-01-22 22:31:59 +00:00
* `maximizable` Boolean
Sets whether the window can be manually maximized by user. On Linux does
nothing.
2016-07-13 04:42:08 +00:00
#### `win.isMaximizable()` _macOS_ _Windows_
2016-01-22 22:31:59 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window can be manually maximized by user.
On Linux always returns `true` .
2016-01-22 22:31:59 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setFullScreenable(fullscreenable)`
2016-01-22 22:31:59 +00:00
* `fullscreenable` Boolean
Sets whether the maximize/zoom window button toggles fullscreen mode or
2016-02-22 09:23:56 +00:00
maximizes the window.
2016-01-22 22:31:59 +00:00
2016-07-13 04:42:08 +00:00
#### `win.isFullScreenable()`
2016-01-22 22:31:59 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the maximize/zoom window button toggles fullscreen mode or
2016-02-22 09:23:56 +00:00
maximizes the window.
2016-01-22 22:31:59 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setClosable(closable)` _macOS_ _Windows_
2016-01-19 15:07:51 +00:00
* `closable` Boolean
Sets whether the window can be manually closed by user. On Linux does nothing.
2016-07-13 04:42:08 +00:00
#### `win.isClosable()` _macOS_ _Windows_
2016-01-19 15:07:51 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window can be manually closed by user.
On Linux always returns `true` .
2016-01-19 15:07:51 +00:00
2017-01-24 05:28:12 +00:00
#### `win.setAlwaysOnTop(flag[, level][, relativeLevel])`
2013-08-14 22:43:35 +00:00
* `flag` Boolean
2016-09-28 16:20:22 +00:00
* `level` String (optional) _macOS_ - Values include `normal` , `floating` ,
`torn-off-menu` , `modal-panel` , `main-menu` , `status` , `pop-up-menu` ,
2016-12-06 21:48:40 +00:00
`screen-saver` , and ~~`dock`~~ (Deprecated). The default is `floating` . See the
2016-09-28 16:20:22 +00:00
[macOS docs][window-levels] for more details.
2017-01-24 05:28:12 +00:00
* `relativeLevel` Integer (optional) _macOS_ - The number of layers higher to set
2017-01-30 23:27:51 +00:00
this window relative to the given `level` . The default is `0` . Note that Apple
2017-02-27 04:30:26 +00:00
discourages setting levels higher than 1 above `screen-saver` .
2013-08-14 22:43:35 +00:00
2013-08-29 14:37:51 +00:00
Sets whether the window should show always on top of other windows. After
setting this, the window is still a normal window, not a toolbox window which
can not be focused on.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.isAlwaysOnTop()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is always on top of other windows.
2013-08-14 22:43:35 +00:00
2018-04-03 13:04:32 +00:00
#### `win.moveTop()` _macOS_ _Windows_
Moves window to top(z-order) regardless of focus
2016-07-13 04:42:08 +00:00
#### `win.center()`
2013-08-14 22:43:35 +00:00
Moves window to the center of the screen.
2016-07-13 04:42:08 +00:00
#### `win.setPosition(x, y[, animate])`
2013-08-14 22:43:35 +00:00
* `x` Integer
* `y` Integer
2016-06-18 13:26:26 +00:00
* `animate` Boolean (optional) _macOS_
2013-08-14 22:43:35 +00:00
Moves window to `x` and `y` .
2016-07-13 04:42:08 +00:00
#### `win.getPosition()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Integer[]` - Contains the window's current position.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setTitle(title)`
2013-08-14 22:43:35 +00:00
* `title` String
Changes the title of native window to `title` .
2016-07-13 04:42:08 +00:00
#### `win.getTitle()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `String` - The title of the native window.
2013-08-14 22:43:35 +00:00
2013-08-29 14:37:51 +00:00
**Note:** The title of web page can be different from the title of the native
2014-08-22 07:14:49 +00:00
window.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setSheetOffset(offsetY[, offsetX])` _macOS_
2016-04-19 05:39:12 +00:00
2016-07-29 09:53:01 +00:00
* `offsetY` Float
* `offsetX` Float (optional)
2016-06-18 13:26:26 +00:00
Changes the attachment point for sheets on macOS. By default, sheets are
2016-04-22 13:53:26 +00:00
attached just below the window frame, but you may want to display them beneath
a HTML-rendered toolbar. For example:
2016-04-19 05:39:12 +00:00
2016-04-22 14:15:31 +00:00
```javascript
2016-07-26 01:39:25 +00:00
const {BrowserWindow} = require('electron')
let win = new BrowserWindow()
let toolbarRect = document.getElementById('toolbar').getBoundingClientRect()
win.setSheetOffset(toolbarRect.height)
2016-04-19 05:39:12 +00:00
```
2016-07-13 04:42:08 +00:00
#### `win.flashFrame(flag)`
2014-08-28 08:00:29 +00:00
2014-08-23 05:20:47 +00:00
* `flag` Boolean
2013-08-14 22:43:35 +00:00
2014-08-23 05:20:47 +00:00
Starts or stops flashing the window to attract user's attention.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setSkipTaskbar(skip)`
2014-06-16 02:51:45 +00:00
* `skip` Boolean
2015-06-09 14:49:44 +00:00
Makes the window not show in the taskbar.
2014-06-16 02:51:45 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setKiosk(flag)`
2013-08-14 22:43:35 +00:00
* `flag` Boolean
Enters or leaves the kiosk mode.
2016-07-13 04:42:08 +00:00
#### `win.isKiosk()`
2013-08-14 22:43:35 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is in kiosk mode.
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.getNativeWindowHandle()`
2016-01-07 21:17:23 +00:00
2016-09-24 23:59:30 +00:00
Returns `Buffer` - The platform-specific handle of the window.
2016-01-11 05:43:24 +00:00
2016-06-18 13:26:26 +00:00
The native type of the handle is `HWND` on Windows, `NSView*` on macOS, and
2016-01-11 05:43:24 +00:00
`Window` (`unsigned long`) on Linux.
2016-01-07 21:17:23 +00:00
2016-07-13 04:42:08 +00:00
#### `win.hookWindowMessage(message, callback)` _Windows_
2015-10-27 12:00:08 +00:00
* `message` Integer
* `callback` Function
Hooks a windows message. The `callback` is called when
the message is received in the WndProc.
2016-07-13 04:42:08 +00:00
#### `win.isWindowMessageHooked(message)` _Windows_
2015-10-27 12:00:08 +00:00
* `message` Integer
2016-09-24 23:59:30 +00:00
Returns `Boolean` - `true` or `false` depending on whether the message is hooked.
2015-10-27 12:00:08 +00:00
2016-07-13 04:42:08 +00:00
#### `win.unhookWindowMessage(message)` _Windows_
2015-10-27 12:00:08 +00:00
* `message` Integer
Unhook the window message.
2016-07-13 04:42:08 +00:00
#### `win.unhookAllWindowMessages()` _Windows_
2015-10-27 12:00:08 +00:00
Unhooks all of the window messages.
2016-07-13 04:42:08 +00:00
#### `win.setRepresentedFilename(filename)` _macOS_
2014-05-27 06:15:34 +00:00
* `filename` String
2014-12-19 20:48:53 +00:00
Sets the pathname of the file the window represents, and the icon of the file
will show in window's title bar.
2016-07-13 04:42:08 +00:00
#### `win.getRepresentedFilename()` _macOS_
2014-07-18 13:42:26 +00:00
2016-09-24 23:59:30 +00:00
Returns `String` - The pathname of the file the window represents.
2014-12-19 20:48:53 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setDocumentEdited(edited)` _macOS_
2014-05-27 06:15:34 +00:00
* `edited` Boolean
2014-12-19 20:48:53 +00:00
Specifies whether the window’ s document has been edited, and the icon in title
2016-02-15 05:51:20 +00:00
bar will become gray when set to `true` .
2014-12-19 20:48:53 +00:00
2016-07-13 04:42:08 +00:00
#### `win.isDocumentEdited()` _macOS_
2014-07-24 07:48:33 +00:00
2016-11-05 08:42:45 +00:00
Returns `Boolean` - Whether the window's document has been edited.
2014-12-19 20:48:53 +00:00
2016-07-13 04:42:08 +00:00
#### `win.focusOnWebView()`
2013-08-14 22:43:35 +00:00
2016-07-13 04:42:08 +00:00
#### `win.blurWebView()`
2013-11-22 06:39:10 +00:00
2016-07-13 04:42:08 +00:00
#### `win.capturePage([rect, ]callback)`
2013-11-22 06:39:10 +00:00
2016-10-08 02:09:31 +00:00
* `rect` [Rectangle ](structures/rectangle.md ) (optional) - The bounds to capture
2016-08-25 17:52:19 +00:00
* `callback` Function
2016-10-13 06:30:57 +00:00
* `image` [NativeImage ](native-image.md )
2016-08-25 17:52:19 +00:00
2016-07-06 00:26:05 +00:00
Same as `webContents.capturePage([rect, ]callback)` .
2013-11-22 06:39:10 +00:00
2016-07-13 04:42:08 +00:00
#### `win.loadURL(url[, options])`
2013-08-14 22:43:35 +00:00
2016-11-05 08:42:45 +00:00
* `url` String
2016-08-25 17:52:19 +00:00
* `options` Object (optional)
2018-05-11 17:18:38 +00:00
* `httpReferrer` (String | [Referrer ](structures/referrer.md )) (optional) - An HTTP Referrer url.
2016-11-11 18:55:13 +00:00
* `userAgent` String (optional) - A user agent originating the request.
* `extraHeaders` String (optional) - Extra headers separated by "\n"
2018-04-12 20:20:01 +00:00
* `postData` ([UploadRawData[]](structures/upload-raw-data.md) | [UploadFile[]](structures/upload-file.md) | [UploadBlob[]](structures/upload-blob.md)) (optional)
2017-03-07 17:42:45 +00:00
* `baseURLForDataURL` String (optional) - Base url (with trailing path separator) for files to be loaded by the data url. This is needed only if the specified `url` is a data url and needs to load other files.
2016-08-25 17:52:19 +00:00
2015-11-13 08:03:40 +00:00
Same as `webContents.loadURL(url[, options])` .
2013-08-14 22:43:35 +00:00
2016-08-19 20:31:57 +00:00
The `url` can be a remote address (e.g. `http://` ) or a path to a local
2016-08-19 05:20:55 +00:00
HTML file using the `file://` protocol.
2016-08-19 20:31:57 +00:00
To ensure that file URLs are properly formatted, it is recommended to use
Node's [`url.format` ](https://nodejs.org/api/url.html#url_url_format_urlobject )
method:
```javascript
let url = require('url').format({
protocol: 'file',
slashes: true,
2016-08-22 21:25:48 +00:00
pathname: require('path').join(__dirname, 'index.html')
2016-08-19 20:31:57 +00:00
})
win.loadURL(url)
```
2016-12-07 00:48:22 +00:00
You can load a URL using a `POST` request with URL-encoded data by doing
the following:
```javascript
win.loadURL('http://localhost:8000/post', {
postData: [{
type: 'rawData',
bytes: Buffer.from('hello=world')
}],
extraHeaders: 'Content-Type: application/x-www-form-urlencoded'
})
```
2018-01-03 22:38:56 +00:00
#### `win.loadFile(filePath)`
* `filePath` String
Same as `webContents.loadFile` , `filePath` should be a path to an HTML
file relative to the root of your application. See the `webContents` docs
for more information.
2016-07-13 04:42:08 +00:00
#### `win.reload()`
2014-05-15 12:21:37 +00:00
2015-08-20 13:17:53 +00:00
Same as `webContents.reload` .
2014-05-14 16:06:56 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setMenu(menu)` _Linux_ _Windows_
2014-05-14 16:19:30 +00:00
2017-07-12 14:29:32 +00:00
* `menu` Menu | null
2014-05-27 06:20:22 +00:00
2015-06-04 08:12:29 +00:00
Sets the `menu` as the window's menu bar, setting it to `null` will remove the
menu bar.
2014-05-14 16:19:30 +00:00
2016-08-08 22:44:48 +00:00
#### `win.setProgressBar(progress[, options])`
2014-09-18 11:29:23 +00:00
* `progress` Double
2016-08-08 22:44:48 +00:00
* `options` Object (optional)
2018-03-27 23:29:31 +00:00
* `mode` String _Windows_ - Mode for the progress bar. Can be `none` , `normal` , `indeterminate` , `error` or `paused` .
2014-09-18 11:29:23 +00:00
Sets progress value in progress bar. Valid range is [0, 1.0].
Remove progress bar when progress < 0 ;
Change to indeterminate mode when progress > 1.
On Linux platform, only supports Unity desktop environment, you need to specify
the `*.desktop` file name to `desktopName` field in `package.json` . By default,
2014-09-18 14:58:17 +00:00
it will assume `app.getName().desktop` .
2014-09-18 11:29:23 +00:00
2016-08-19 05:20:55 +00:00
On Windows, a mode can be passed. Accepted values are `none` , `normal` ,
2016-08-08 22:44:48 +00:00
`indeterminate` , `error` , and `paused` . If you call `setProgressBar` without a
mode set (but with a value within the valid range), `normal` will be assumed.
2016-07-15 00:32:14 +00:00
#### `win.setOverlayIcon(overlay, description)` _Windows_
2015-02-07 01:11:54 +00:00
2015-02-12 05:52:28 +00:00
* `overlay` [NativeImage ](native-image.md ) - the icon to display on the bottom
2015-06-09 14:49:44 +00:00
right corner of the taskbar icon. If this parameter is `null` , the overlay is
2015-02-12 05:52:28 +00:00
cleared
* `description` String - a description that will be provided to Accessibility
screen readers
2015-02-07 01:11:54 +00:00
2016-04-22 13:53:26 +00:00
Sets a 16 x 16 pixel overlay onto the current taskbar icon, usually used to
convey some sort of application status or to passively notify the user.
2015-02-07 01:11:54 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setHasShadow(hasShadow)` _macOS_
2016-01-23 00:15:49 +00:00
2016-06-23 21:13:03 +00:00
* `hasShadow` Boolean
2016-01-23 00:15:49 +00:00
Sets whether the window should have a shadow. On Windows and Linux does
nothing.
2016-07-13 04:42:08 +00:00
#### `win.hasShadow()` _macOS_
2016-01-23 00:15:49 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window has a shadow.
On Windows and Linux always returns
2016-01-23 00:15:49 +00:00
`true` .
2015-02-07 01:11:54 +00:00
2017-10-01 08:36:22 +00:00
#### `win.setOpacity(opacity)` _Windows_ _macOS_
2017-10-02 15:08:10 +00:00
* `opacity` Number - between 0.0 (fully transparent) and 1.0 (fully opaque)
2017-10-01 08:36:22 +00:00
Sets the opacity of the window. On Linux does nothing.
2017-10-02 15:08:10 +00:00
#### `win.getOpacity()` _Windows_ _macOS_
Returns `Number` - between 0.0 (fully transparent) and 1.0 (fully opaque)
2016-07-15 00:32:14 +00:00
#### `win.setThumbarButtons(buttons)` _Windows_
2015-08-20 13:17:53 +00:00
2016-10-04 22:35:23 +00:00
* `buttons` [ThumbarButton[]](structures/thumbar-button.md)
Returns `Boolean` - Whether the buttons were added successfully
2015-08-05 05:47:59 +00:00
Add a thumbnail toolbar with a specified set of buttons to the thumbnail image
of a window in a taskbar button layout. Returns a `Boolean` object indicates
whether the thumbnail has been added successfully.
2015-08-02 05:07:55 +00:00
2015-08-05 05:47:59 +00:00
The number of buttons in thumbnail toolbar should be no greater than 7 due to
the limited room. 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.
2015-08-02 05:07:55 +00:00
2016-02-16 04:11:05 +00:00
The `buttons` is an array of `Button` objects:
* `Button` Object
* `icon` [NativeImage ](native-image.md ) - The icon showing in thumbnail
toolbar.
* `click` Function
* `tooltip` String (optional) - The text of the button's tooltip.
2016-12-29 22:11:26 +00:00
* `flags` String[] (optional) - Control specific states and behaviors of the
2016-02-16 04:11:05 +00:00
button. By default, it is `['enabled']` .
The `flags` is an array that can include following `String` s:
* `enabled` - The button is active and available to the user.
* `disabled` - The button is disabled. It is present, but has a visual state
indicating it will not respond to user action.
* `dismissonclick` - When the button is clicked, the thumbnail window 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.
2016-07-14 22:54:57 +00:00
#### `win.setThumbnailClip(region)` _Windows_
2016-10-08 02:09:31 +00:00
* `region` [Rectangle ](structures/rectangle.md ) - Region of the window
2016-07-14 22:54:57 +00:00
Sets the region of the window to show as the thumbnail image displayed when
2016-07-15 16:30:42 +00:00
hovering over the window in the taskbar. You can reset the thumbnail to be
the entire window by specifying an empty region:
`{x: 0, y: 0, width: 0, height: 0}` .
2016-07-14 22:54:57 +00:00
2016-08-07 17:23:42 +00:00
#### `win.setThumbnailToolTip(toolTip)` _Windows_
* `toolTip` String
Sets the toolTip that is displayed when hovering over the window thumbnail
in the taskbar.
2016-11-18 20:29:04 +00:00
#### `win.setAppDetails(options)` _Windows_
* `options` Object
2016-11-28 22:29:21 +00:00
* `appId` String (optional) - Window's [App User Model ID ](https://msdn.microsoft.com/en-us/library/windows/desktop/dd391569(v=vs.85 ).aspx).
2016-11-18 20:29:04 +00:00
It has to be set, otherwise the other options will have no effect.
2016-11-28 22:29:21 +00:00
* `appIconPath` String (optional) - Window's [Relaunch Icon ](https://msdn.microsoft.com/en-us/library/windows/desktop/dd391573(v=vs.85 ).aspx).
2016-11-18 20:29:04 +00:00
* `appIconIndex` Integer (optional) - Index of the icon in `appIconPath` .
Ignored when `appIconPath` is not set. Default is `0` .
2016-11-28 22:29:21 +00:00
* `relaunchCommand` String (optional) - Window's [Relaunch Command ](https://msdn.microsoft.com/en-us/library/windows/desktop/dd391571(v=vs.85 ).aspx).
* `relaunchDisplayName` String (optional) - Window's [Relaunch Display Name ](https://msdn.microsoft.com/en-us/library/windows/desktop/dd391572(v=vs.85 ).aspx).
2016-11-18 20:29:04 +00:00
Sets the properties for the window's taskbar button.
2016-11-28 22:29:21 +00:00
**Note:** `relaunchCommand` and `relaunchDisplayName` must always be set
together. If one of those properties is not set, then neither will be used.
2016-11-18 20:29:04 +00:00
2016-07-13 04:42:08 +00:00
#### `win.showDefinitionForSelection()` _macOS_
2014-12-18 23:40:35 +00:00
2016-06-07 20:09:54 +00:00
Same as `webContents.showDefinitionForSelection()` .
2014-12-19 20:48:53 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setIcon(icon)` _Windows_ _Linux_
2016-05-20 13:22:15 +00:00
* `icon` [NativeImage ](native-image.md )
Changes window icon.
2016-07-13 04:42:08 +00:00
#### `win.setAutoHideMenuBar(hide)`
2014-11-12 12:49:38 +00:00
* `hide` Boolean
Sets whether the window menu bar should hide itself automatically. Once set the
menu bar will only show when users press the single `Alt` key.
If the menu bar is already visible, calling `setAutoHideMenuBar(true)` won't
hide it immediately.
2016-07-13 04:42:08 +00:00
#### `win.isMenuBarAutoHide()`
2014-11-12 12:49:38 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether menu bar automatically hides itself.
2014-11-12 12:49:38 +00:00
2016-10-25 04:04:45 +00:00
#### `win.setMenuBarVisibility(visible)` _Windows_ _Linux_
2014-11-12 12:49:38 +00:00
* `visible` Boolean
Sets whether the menu bar should be visible. If the menu bar is auto-hide, users
can still bring up the menu bar by pressing the single `Alt` key.
2016-07-13 04:42:08 +00:00
#### `win.isMenuBarVisible()`
2014-11-12 12:49:38 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the menu bar is visible.
2014-11-12 12:49:38 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setVisibleOnAllWorkspaces(visible)`
2015-03-26 10:59:24 +00:00
* `visible` Boolean
Sets whether the window should be visible on all workspaces.
2015-03-27 11:41:07 +00:00
**Note:** This API does nothing on Windows.
2015-03-26 10:59:24 +00:00
2016-07-13 04:42:08 +00:00
#### `win.isVisibleOnAllWorkspaces()`
2015-03-26 10:59:24 +00:00
2016-09-24 23:59:30 +00:00
Returns `Boolean` - Whether the window is visible on all workspaces.
2015-03-26 10:59:24 +00:00
2015-03-29 12:40:02 +00:00
**Note:** This API always returns false on Windows.
2015-12-09 04:05:47 +00:00
2017-08-14 18:21:00 +00:00
#### `win.setIgnoreMouseEvents(ignore[, options])`
2015-12-09 04:05:47 +00:00
* `ignore` Boolean
2017-08-14 18:21:00 +00:00
* `options` Object (optional)
2018-04-09 10:35:05 +00:00
* `forward` Boolean (optional) _macOS_ _Windows_ - If true, forwards mouse move
2017-08-14 18:21:00 +00:00
messages to Chromium, enabling mouse related events such as `mouseleave` .
2018-04-09 10:35:05 +00:00
Only used when `ignore` is true. If `ignore` is false, forwarding is always
disabled regardless of this value.
2015-12-09 04:05:47 +00:00
2016-06-07 11:32:52 +00:00
Makes the window ignore all mouse events.
2016-06-08 02:03:01 +00:00
All mouse events happened in this window will be passed to the window below
2016-06-07 11:32:52 +00:00
this window, but if this window has focus, it will still receive keyboard
events.
2016-01-07 06:10:18 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setContentProtection(enable)` _macOS_ _Windows_
2016-06-22 08:40:01 +00:00
2016-08-25 17:52:19 +00:00
* `enable` Boolean
2016-06-22 08:40:01 +00:00
Prevents the window contents from being captured by other apps.
On macOS it sets the NSWindow's sharingType to NSWindowSharingNone.
2016-08-18 05:42:10 +00:00
On Windows it calls SetWindowDisplayAffinity with `WDA_MONITOR` .
2016-06-22 08:40:01 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setFocusable(focusable)` _Windows_
2016-06-12 18:20:25 +00:00
2016-06-13 08:24:45 +00:00
* `focusable` Boolean
2016-06-13 07:40:02 +00:00
2016-06-13 08:24:45 +00:00
Changes whether the window can be focused.
2016-06-12 18:20:25 +00:00
2016-07-13 04:42:08 +00:00
#### `win.setParentWindow(parent)` _Linux_ _macOS_
2016-06-20 02:06:48 +00:00
* `parent` BrowserWindow
Sets `parent` as current window's parent window, passing `null` will turn
current window into a top-level window.
2016-07-13 04:42:08 +00:00
#### `win.getParentWindow()`
2016-06-20 02:06:48 +00:00
2016-09-24 23:59:30 +00:00
Returns `BrowserWindow` - The parent window.
2016-06-20 02:06:48 +00:00
2016-07-13 04:42:08 +00:00
#### `win.getChildWindows()`
2016-06-20 02:06:48 +00:00
2016-09-24 23:59:30 +00:00
Returns `BrowserWindow[]` - All child windows.
2016-09-28 16:20:22 +00:00
2016-11-28 19:38:40 +00:00
#### `win.setAutoHideCursor(autoHide)` _macOS_
* `autoHide` Boolean
Controls whether to hide cursor when typing.
2017-08-21 04:46:10 +00:00
#### `win.selectPreviousTab()` _macOS_
Selects the previous tab when native tabs are enabled and there are other
tabs in the window.
#### `win.selectNextTab()` _macOS_
Selects the next tab when native tabs are enabled and there are other
tabs in the window.
#### `win.mergeAllWindows()` _macOS_
Merges all windows into one window with multiple tabs when native tabs
are enabled and there is more than one open window.
#### `win.moveTabToNewWindow()` _macOS_
Moves the current tab into a new window if native tabs are enabled and
there is more than one tab in the current window.
#### `win.toggleTabBar()` _macOS_
Toggles the visibility of the tab bar if native tabs are enabled and
there is only one tab in the current window.
2017-09-13 19:15:14 +00:00
#### `win.addTabbedWindow(browserWindow)` _macOS_
* `browserWindow` BrowserWindow
Adds a window as a tab on this window, after the tab for the window instance.
2016-11-07 20:22:41 +00:00
#### `win.setVibrancy(type)` _macOS_
2016-11-08 14:24:11 +00:00
* `type` String - Can be `appearance-based` , `light` , `dark` , `titlebar` ,
`selection` , `menu` , `popover` , `sidebar` , `medium-light` or `ultra-dark` . See
2016-11-07 20:32:09 +00:00
the [macOS documentation][vibrancy-docs] for more details.
2016-11-10 10:59:25 +00:00
Adds a vibrancy effect to the browser window. Passing `null` or an empty string
will remove the vibrancy effect on the window.
2016-11-07 20:22:41 +00:00
2017-03-17 17:38:15 +00:00
#### `win.setTouchBar(touchBar)` _macOS_ _Experimental_
2016-12-02 12:58:02 +00:00
* `touchBar` TouchBar
2017-03-03 17:54:46 +00:00
Sets the touchBar layout for the current window. Specifying `null` or
2017-03-03 22:04:55 +00:00
`undefined` clears the touch bar. This method only has an effect if the
machine has a touch bar and is running on macOS 10.12.1+.
2016-12-02 12:58:02 +00:00
2017-03-07 17:42:45 +00:00
**Note:** The TouchBar API is currently experimental and may change or be
removed in future Electron releases.
Implement initial, experimental BrowserView API
Right now, `<webview>` is the only way to embed additional content in a
`BrowserWindow`. Unfortunately `<webview>` suffers from a [number of
problems](https://github.com/electron/electron/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20label%3Awebview%20).
To make matters worse, many of these are upstream Chromium bugs instead
of Electron-specific bugs.
For us at [Figma](https://www.figma.com), the main issue is very slow
performance.
Despite the upstream improvements to `<webview>` through the OOPIF work, it is
probable that there will continue to be `<webview>`-specific bugs in the
future.
Therefore, this introduces a `<webview>` alternative to called `BrowserView`,
which...
- is a thin wrapper around `api::WebContents` (so bugs in `BrowserView` will
likely also be bugs in `BrowserWindow` web contents)
- is instantiated in the main process like `BrowserWindow` (and unlike
`<webview>`, which lives in the DOM of a `BrowserWindow` web contents)
- needs to be added to a `BrowserWindow` to display something on the screen
This implements the most basic API. The API is expected to evolve and change in
the near future and has consequently been marked as experimental. Please do not
use this API in production unless you are prepared to deal with breaking
changes.
In the future, we will want to change the API to support multiple
`BrowserView`s per window. We will also want to consider z-ordering
auto-resizing, and possibly even nested views.
2017-04-11 17:47:30 +00:00
#### `win.setBrowserView(browserView)` _Experimental_
* `browserView` [BrowserView ](browser-view.md )
2017-10-27 18:44:48 +00:00
#### `win.getBrowserView()` _Experimental_
2017-10-27 19:14:09 +00:00
Returns `BrowserView | null` - an attached BrowserView. Returns `null` if none is attached.
2017-10-27 18:44:48 +00:00
Implement initial, experimental BrowserView API
Right now, `<webview>` is the only way to embed additional content in a
`BrowserWindow`. Unfortunately `<webview>` suffers from a [number of
problems](https://github.com/electron/electron/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20label%3Awebview%20).
To make matters worse, many of these are upstream Chromium bugs instead
of Electron-specific bugs.
For us at [Figma](https://www.figma.com), the main issue is very slow
performance.
Despite the upstream improvements to `<webview>` through the OOPIF work, it is
probable that there will continue to be `<webview>`-specific bugs in the
future.
Therefore, this introduces a `<webview>` alternative to called `BrowserView`,
which...
- is a thin wrapper around `api::WebContents` (so bugs in `BrowserView` will
likely also be bugs in `BrowserWindow` web contents)
- is instantiated in the main process like `BrowserWindow` (and unlike
`<webview>`, which lives in the DOM of a `BrowserWindow` web contents)
- needs to be added to a `BrowserWindow` to display something on the screen
This implements the most basic API. The API is expected to evolve and change in
the near future and has consequently been marked as experimental. Please do not
use this API in production unless you are prepared to deal with breaking
changes.
In the future, we will want to change the API to support multiple
`BrowserView`s per window. We will also want to consider z-ordering
auto-resizing, and possibly even nested views.
2017-04-11 17:47:30 +00:00
**Note:** The BrowserView API is currently experimental and may change or be
removed in future Electron releases.
2018-04-14 00:49:30 +00:00
[runtime-enabled-features]: https://cs.chromium.org/chromium/src/third_party/blink/renderer/platform/runtime_enabled_features.json5?l=70
2017-05-22 18:10:10 +00:00
[page-visibility-api]: https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API
2016-11-11 18:22:27 +00:00
[quick-look]: https://en.wikipedia.org/wiki/Quick_Look
2018-01-12 15:24:48 +00:00
[vibrancy-docs]: https://developer.apple.com/documentation/appkit/nsvisualeffectview?preferredLanguage=objc
2016-11-11 18:22:27 +00:00
[window-levels]: https://developer.apple.com/reference/appkit/nswindow/1664726-window_levels
2017-01-05 17:47:03 +00:00
[chrome-content-scripts]: https://developer.chrome.com/extensions/content_scripts#execution-environment