pointvec/desktop/main.js

76 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-02-07 04:06:55 +00:00
const { app, BrowserWindow, webFrame, Menu } = require('electron')
2017-11-05 00:52:05 +00:00
const path = require('path')
const url = require('url')
2017-12-26 22:14:58 +00:00
const shell = require('electron').shell
2017-11-05 00:52:05 +00:00
2019-01-09 04:53:28 +00:00
let isShown = true
2017-11-05 00:52:05 +00:00
2019-02-07 04:06:55 +00:00
app.win = null
2018-10-03 23:27:40 +00:00
app.on('ready', () => {
2018-09-13 21:38:14 +00:00
app.win = new BrowserWindow({
2019-02-07 04:06:55 +00:00
width: 700,
2019-01-10 03:28:04 +00:00
height: 430,
2019-02-07 04:06:55 +00:00
minWidth: 320,
minHeight: 320,
2019-02-16 22:51:09 +00:00
backgroundColor: '#000',
2019-02-07 04:06:55 +00:00
resizable: true,
icon: __dirname + '/icon.ico',
frame: process.platform === 'win32',
skipTaskbar: process.platform !== 'win32',
autoHideMenuBar: process.platform !== 'win32'
2018-09-13 21:38:14 +00:00
})
2018-10-03 23:27:40 +00:00
app.win.loadURL(`file://${__dirname}/sources/index.html`)
2019-02-07 04:06:55 +00:00
// app.inspect()
2018-10-03 23:27:40 +00:00
2018-01-13 03:03:21 +00:00
app.win.on('closed', () => {
2017-11-05 00:52:05 +00:00
win = null
app.quit()
})
2018-10-03 23:27:40 +00:00
app.win.on('hide', function () {
2019-01-09 04:53:28 +00:00
isShown = false
2017-11-05 00:52:05 +00:00
})
2018-10-03 23:27:40 +00:00
app.win.on('show', function () {
2019-01-09 04:53:28 +00:00
isShown = true
2017-11-05 00:52:05 +00:00
})
2018-09-13 21:38:14 +00:00
2018-10-03 23:27:40 +00:00
app.on('window-all-closed', () => {
2018-09-13 21:38:14 +00:00
app.quit()
})
app.on('activate', () => {
if (app.win === null) {
createWindow()
2018-10-03 23:27:40 +00:00
} else {
app.win.show()
2018-09-13 21:38:14 +00:00
}
})
2017-11-05 00:52:05 +00:00
})
2018-10-03 23:27:40 +00:00
app.inspect = function () {
app.win.toggleDevTools()
2018-09-13 21:38:14 +00:00
}
2017-11-05 00:52:05 +00:00
2019-01-09 21:00:52 +00:00
app.toggleFullscreen = function () {
2018-10-03 23:27:40 +00:00
app.win.setFullScreen(!app.win.isFullScreen())
2018-09-13 21:38:14 +00:00
}
2019-01-09 21:00:52 +00:00
app.toggleVisible = function () {
2019-02-07 04:06:55 +00:00
if (process.platform === 'win32') {
2018-10-03 23:27:40 +00:00
if (!app.win.isMinimized()) { app.win.minimize() } else { app.win.restore() }
} else {
2019-01-09 04:53:28 +00:00
if (isShown && !app.win.isFullScreen()) { app.win.hide() } else { app.win.show() }
2018-09-14 03:34:07 +00:00
}
2018-09-13 21:38:14 +00:00
}
2019-02-07 04:06:55 +00:00
app.injectMenu = function (menu) {
2018-10-03 23:27:40 +00:00
try {
Menu.setApplicationMenu(Menu.buildFromTemplate(menu))
} catch (err) {
console.warn('Cannot inject menu.')
2018-09-14 03:34:07 +00:00
}
2018-10-03 23:27:40 +00:00
}