This repository has been archived by the owner on Oct 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
70 lines (58 loc) · 2.22 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
70
const { app, BrowserWindow, Menu, MenuItem, dialog } = require('electron')
const path = require('path')
require('./ipcs/mainIpc') //require du fichier principal des IPCs
function createWindow() {
global.mainWindow = new BrowserWindow({
width: 800,
height: 800,
resizable: true,
autoHideMenuBar: true,
webPreferences: {
contextIsolation: true,
enableRemoteModule: false,
//devTools: false,
preload: path.join(app.getAppPath() + "/app", 'preload.js')
}
})
global.mainWindow.loadFile(app.getAppPath() + '/app/view/index.html')
}
function createParams() {
var params = new BrowserWindow({
width: 800,
height: 800,
autoHideMenuBar: true,
webPreferences: {
contextIsolation: true,
enableRemoteModule: false,
//devTools: false,
preload: path.join(app.getAppPath() + "/app", 'preload.js')
}
})
params.loadFile(app.getAppPath() + '/app/view/parametres.html')
}
app.whenReady().then(() => {
createWindow()
//définition du menu contextuel
const ctxMenu = new Menu()
ctxMenu.append(new MenuItem({
label: "Paramètres",
click: function() {
createParams()
}
}))
ctxMenu.append(new MenuItem({ type: "separator" }))
ctxMenu.append(new MenuItem({ label: "rafraichir", role: "forcereload" }))
//définition du clique droit
global.mainWindow.webContents.on('context-menu', function(event, params) {
ctxMenu.popup(global.mainWindow, params.x, params.y)
})
app.on('activate', function() {
//prise en charge de mac (l'application ne se ferme que lors du Cmd + Q ici on ouvre donc une nouvelle fenêtre si le processus est réactivé)
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
app.on('window-all-closed', function() {
// ici on prend en charge la fermeture de l'application en spécifiant que pour mac l'application
// ne se ferme pas quand toutes les fenêtres sont fermé pour mac il faut donc utiliser Cmd + Q (il suffit de supprimer le if si on ne veut pas gérer ça)
if (process.platform !== 'darwin') app.quit()
})