-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
69 lines (58 loc) · 1.57 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const electron = require('electron')
const app = electron.app
const BrowserWindow = electron.BrowserWindow
const path = require('path')
const url = require('url')
const Store = require('./store.js')
let mainWindow
const store = new Store({
configName: 'user-preferences',
defaults: {
windowBounds: { width: 800, height: 600 }
}
});
function createWindow () {
var resourcePath = process.resourcesPath;
var imgPath = resourcePath + '/imgfiles/';
let { x, y, width, height } = store.get('windowBounds');
// Create the browser window.
mainWindow = new BrowserWindow({
x, y, width, height,
fullscreen: false,
autoHideMenuBar: false,
icon: imgPath+'qubes_small.png',
transparent: false,
frame: true,
toolbar: true,
webPreferences: { nodeIntegrationInWorker: true }
})
// Load the index.html of the app.
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
mainWindow.webContents.openDevTools()
mainWindow.on('resize', () => {
let { x, y, width, height } = mainWindow.getBounds();
store.set('windowBounds', { x, y, width, height });
});
mainWindow.loadURL('file://' + path.join(__dirname, 'index.html'));
mainWindow.on('closed', function () {
mainWindow = null
})
}
app.on('ready', function () {
createWindow()
})
// Quit when all windows are closed.
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function () {
if (mainWindow === null) {
createWindow()
}
})