2020-03-20 20:28:31 +00:00
|
|
|
'use strict';
|
2018-04-17 07:29:16 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
const electron = require('electron');
|
|
|
|
const { EventEmitter } = require('events');
|
|
|
|
const { TopLevelWindow } = process.electronBinding('top_level_window');
|
2018-04-17 07:29:16 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
Object.setPrototypeOf(TopLevelWindow.prototype, EventEmitter.prototype);
|
2018-04-17 07:29:16 +00:00
|
|
|
|
2018-04-17 07:46:32 +00:00
|
|
|
TopLevelWindow.prototype._init = function () {
|
|
|
|
// Avoid recursive require.
|
2020-03-20 20:28:31 +00:00
|
|
|
const { app } = electron;
|
2018-04-17 07:46:32 +00:00
|
|
|
|
|
|
|
// Simulate the application menu on platforms other than macOS.
|
|
|
|
if (process.platform !== 'darwin') {
|
2020-03-20 20:28:31 +00:00
|
|
|
const menu = app.applicationMenu;
|
|
|
|
if (menu) this.setMenu(menu);
|
2018-04-17 07:46:32 +00:00
|
|
|
}
|
2020-03-20 20:28:31 +00:00
|
|
|
};
|
2018-04-17 07:46:32 +00:00
|
|
|
|
2020-04-01 15:22:32 +00:00
|
|
|
// Properties
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'autoHideMenuBar', {
|
|
|
|
get: function () { return this.isMenuBarAutoHide(); },
|
|
|
|
set: function (autoHide) { this.setAutoHideMenuBar(autoHide); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'visibleOnAllWorkspaces', {
|
|
|
|
get: function () { return this.isVisibleOnAllWorkspaces(); },
|
|
|
|
set: function (visible) { this.setVisibleOnAllWorkspaces(visible); }
|
|
|
|
});
|
|
|
|
|
2020-04-21 03:25:18 +00:00
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'fullScreen', {
|
|
|
|
get: function () { return this.isFullScreen(); },
|
|
|
|
set: function (full) { this.setFullScreen(full); }
|
|
|
|
});
|
|
|
|
|
2020-04-01 15:22:32 +00:00
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'simpleFullScreen', {
|
|
|
|
get: function () { return this.isSimpleFullScreen(); },
|
|
|
|
set: function (simple) { this.setSimpleFullScreen(simple); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'kiosk', {
|
|
|
|
get: function () { return this.isKiosk(); },
|
|
|
|
set: function (kiosk) { this.setKiosk(kiosk); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'documentEdited', {
|
|
|
|
get: function () { return this.isFullscreen(); },
|
|
|
|
set: function (edited) { this.setDocumentEdited(edited); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'shadow', {
|
|
|
|
get: function () { return this.hasShadow(); },
|
|
|
|
set: function (shadow) { this.setHasShadow(shadow); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'representedFilename', {
|
|
|
|
get: function () { return this.getRepresentedFilename(); },
|
|
|
|
set: function (filename) { this.setRepresentedFilename(filename); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'minimizable', {
|
|
|
|
get: function () { return this.isMinimizable(); },
|
|
|
|
set: function (min) { this.setMinimizable(min); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'title', {
|
|
|
|
get: function () { return this.getTitle(); },
|
|
|
|
set: function (title) { this.setTitle(title); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'maximizable', {
|
|
|
|
get: function () { return this.isMaximizable(); },
|
|
|
|
set: function (max) { this.setMaximizable(max); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'resizable', {
|
|
|
|
get: function () { return this.isResizable(); },
|
|
|
|
set: function (res) { this.setResizable(res); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'menuBarVisible', {
|
|
|
|
get: function () { return this.isMenuBarVisible(); },
|
|
|
|
set: function (visible) { this.setMenuBarVisibility(visible); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'fullScreenable', {
|
|
|
|
get: function () { return this.isFullScreenable(); },
|
|
|
|
set: function (full) { this.setFullScreenable(full); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'closable', {
|
|
|
|
get: function () { return this.isClosable(); },
|
|
|
|
set: function (close) { this.setClosable(close); }
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(TopLevelWindow.prototype, 'movable', {
|
|
|
|
get: function () { return this.isMovable(); },
|
|
|
|
set: function (move) { this.setMovable(move); }
|
|
|
|
});
|
|
|
|
|
2018-04-17 08:14:49 +00:00
|
|
|
TopLevelWindow.getFocusedWindow = () => {
|
2020-03-20 20:28:31 +00:00
|
|
|
return TopLevelWindow.getAllWindows().find((win) => win.isFocused());
|
|
|
|
};
|
2018-04-17 08:14:49 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
module.exports = TopLevelWindow;
|