This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
forked from kimbtech/KIMB-Notes-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
125 lines (106 loc) · 2.8 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/**
* Die Hauptdatei des Systems
*/
// ****
// Komponentenimporte
// ****
// Electron API
const electron = require('electron');
// Electron API Links
const ipc = electron.ipcMain;
const dialog = electron.dialog;
//Systemkonfiguration
const config = require( __dirname + '/js/config.js' );
//Bildschirm Position
const BildschirmPosition = require( 'electron-window-position' );
// ****
// Allgemeines Fensterverhalten
// ****
//globale Referenz auf das Febster, damit es nicht vom Garbage Collector gefressen wird
let mainWindow, mainTray = null;
let quitokval = false;
function quitok(v){
if( typeof v !== "undefined" ){
quitokval = v;
}
return quitokval;
}
function createWindow () {
// Fenster soll oben links im Fenster geöffnet werden
var windowPos = new BildschirmPosition().getActiveScreenCenter( 900, 700 );
// Hauptfenster erstellen
mainWindow = new electron.BrowserWindow({
x: windowPos.x,
y: windowPos.y,
minWidth: 340,
width: 900,
height: 700,
minHeight: 500,
icon: __dirname + '/assets/icons/png/64x64.png',
backgroundColor: '#f5f5f5',
show: false,
webPreferences : {
nodeIntegration: true,
webviewTag: true,
enableRemoteModule : true,
nativeWindowOpen: true
}
});
//Haupdatei laden
mainWindow.loadURL('file://' + __dirname + '/index.html' );
//Fenster erst zeigen, wenn Inhalt fertig
mainWindow.once( 'page-title-updated', function() {
mainWindow.show();
});
// Fenster schliessen => verbergen?
mainWindow.on('close', function (event) {
if(!quitok()){
event.preventDefault();
// Fenster ausblenden
mainWindow.hide();
}
});
//alles zu => ende
mainWindow.on('closed', function (event) {
mainWindow = null;
});
//Menü laden
electron.Menu.setApplicationMenu(
electron.Menu.buildFromTemplate(
require('./js/menue.js')(quitok)
)
);
if( mainTray === null ){
//Tray
mainTray = require( './js/tray.js')( mainWindow, quitok, createWindow );
}
}
// Fenster erst erstellen, wenn electron vollständig geladen ist
electron.app.on('ready', createWindow);
// Programm beenden, wenn Fenster geschlossen, außer bei Mac
electron.app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {
electron.app.quit();
}
});
// aus dem Mac OS Dock erwachen lassen
electron.app.on('activate', function () {
if( mainWindow === null ){
createWindow();
}
});
// ****
// Updates
// ****
const claUpdates = new require( __dirname + '/js/Updates.js' );
var Updates = new claUpdates();
// Nach Updates gucken und wenn verfügbar Nachricht
Updates.checkUpdates();
// ****
// Load Functions
// ****
const {askForUserData, saveUserData, deleteUserData} = require(__dirname + '/js/functions.js' );
// Messages IPC
ipc.on('delete-userdata', deleteUserData);
ipc.on('ask-for-user-data', askForUserData);
ipc.on('save-user-data', saveUserData);