pointvec/desktop/main.js

77 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-01-13 03:24:18 +00:00
const {app, BrowserWindow, webFrame, Menu, dialog} = 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
2018-01-12 20:00:53 +00:00
let is_shown = true;
2017-11-05 00:52:05 +00:00
2018-01-13 03:03:21 +00:00
app.win = null;
2018-01-12 20:00:53 +00:00
2017-11-05 00:52:05 +00:00
app.on('ready', () =>
{
2018-09-13 21:38:14 +00:00
app.win = new BrowserWindow({
width: 405,
height: 420,
minWidth: 405,
minHeight: 420,
webPreferences: {zoomFactor: 1.0},
backgroundColor:"#000",
frame:false,
autoHideMenuBar: true,
icon: __dirname + '/icon.ico'
})
2018-05-12 21:50:19 +00:00
app.win.loadURL(`file://${__dirname}/sources/index.html`);
2018-09-14 03:13:51 +00:00
app.inspect();
2018-08-02 22:57:35 +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-01-13 03:03:21 +00:00
app.win.on('hide',function() {
2017-11-05 00:52:05 +00:00
is_shown = false;
})
2018-01-13 03:03:21 +00:00
app.win.on('show',function() {
2017-11-05 00:52:05 +00:00
is_shown = true;
})
2018-09-13 21:38:14 +00:00
app.on('window-all-closed', () =>
{
app.quit()
})
app.on('activate', () => {
if (app.win === null) {
createWindow()
}
else{
app.win.show();
}
})
2017-11-05 00:52:05 +00:00
})
2018-09-13 21:38:14 +00:00
app.inspect = function()
2017-11-05 00:52:05 +00:00
{
2018-09-13 21:38:14 +00:00
app.win.toggleDevTools();
}
2017-11-05 00:52:05 +00:00
2018-09-13 21:38:14 +00:00
app.toggle_fullscreen = function()
{
app.win.setFullScreen(app.win.isFullScreen() ? false : true);
}
app.toggle_visible = function()
{
if(is_shown){ app.win.hide(); } else{ app.win.show(); }
}
app.inject_menu = function(m)
{
if(process.platform == "win32"){ return; }
Menu.setApplicationMenu(Menu.buildFromTemplate(m));
}