Files
pointvec/main.js

74 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-01-13 16:24:18 +13:00
const {app, BrowserWindow, webFrame, Menu, dialog} = require('electron')
2017-11-05 14:52:05 +14:00
const path = require('path')
const url = require('url')
2017-12-27 11:14:58 +13:00
const shell = require('electron').shell
2017-11-05 14:52:05 +14:00
2018-01-13 09:00:53 +13:00
let is_shown = true;
2017-11-05 14:52:05 +14:00
2018-01-12 21:09:26 +13:00
app.inspect = function()
{
2018-01-13 16:03:21 +13:00
app.win.toggleDevTools();
2018-01-13 09:00:53 +13:00
}
app.toggle_fullscreen = function()
{
2018-01-13 16:03:21 +13:00
app.win.setFullScreen(app.win.isFullScreen() ? false : true);
2018-01-13 09:00:53 +13:00
}
app.toggle_visible = function()
{
2018-01-13 16:03:21 +13:00
if(is_shown){ app.win.hide(); } else{ app.win.show(); }
2018-01-12 21:09:26 +13:00
}
app.inject_menu = function(m)
{
Menu.setApplicationMenu(Menu.buildFromTemplate(m));
}
2018-01-13 16:03:21 +13:00
app.generate_docs = function(m)
{
var fs = require('fs');
2018-01-13 16:24:18 +13:00
var docs = require('./docs.js');
dialog.showSaveDialog((fileName) => {
if (fileName === undefined){ return; }
fileName = fileName.substr(-4,4) != ".svg" ? fileName+".svg" : fileName;
fs.writeFile(fileName, docs.generate(m));
});
2018-01-13 16:03:21 +13:00
}
app.win = null;
2018-01-13 09:00:53 +13:00
2017-11-05 14:52:05 +14:00
app.on('ready', () =>
{
2018-01-13 16:03:21 +13:00
app.win = new BrowserWindow({width: 400, height: 420, minWidth: 400, minHeight: 400, backgroundColor:"#000", frame:false, autoHideMenuBar: true, icon: __dirname + '/icon.ico'})
2017-11-05 14:52:05 +14:00
2018-01-13 16:03:21 +13:00
app.win.loadURL(`file://${__dirname}/sources/index.html`);
2018-01-12 21:09:26 +13:00
2018-01-13 16:03:21 +13:00
app.win.on('closed', () => {
2017-11-05 14:52:05 +14:00
win = null
app.quit()
})
2018-01-13 16:03:21 +13:00
app.win.on('hide',function() {
2017-11-05 14:52:05 +14:00
is_shown = false;
})
2018-01-13 16:03:21 +13:00
app.win.on('show',function() {
2017-11-05 14:52:05 +14:00
is_shown = true;
})
})
app.on('window-all-closed', () =>
{
app.quit()
})
app.on('activate', () => {
2018-01-13 16:03:21 +13:00
if (app.win === null) {
2017-11-05 14:52:05 +14:00
createWindow()
}
else{
}
})