This repository has been archived by the owner on Mar 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
64 lines (52 loc) · 1.84 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
'use strict';
// app: ブラウザウインドを生成するためのモジュール
// BrowserWindow: アプリケーションのライフサイクル管理のためのモジュール
const {app, BrowserWindow} = require('electron'),
path = require('path'),
url = require('url'),
is_fake = true,
deviceConnector = is_fake ? require("./lib/fakeConnector.js") : require("./lib/deviceConnector.js"),
FileManager = require('./lib/fileManager.js'),
Model = require('./lib/model.js');
// メインウインドウをグローバル変数として保持しておく
// これがないと,JSのGCにウインドウを殺されてしまう
var mainWindow, dc, fileManager, model;
/******** アプリケーションのイベントハンドラ登録 ********/
// 起準備動時の処理
app.on('ready', function () {
createWindow();
});
// 終了時の処理
app.on('window-all-closed', function() {
if (process.platform !== 'darwin') {
app.quit();
dc.closeBt();
}
});
// 起動時の処理
app.on('activate', function() {
if (mainWindow === null) {
createWindow();
}
});
/****** アプリケーションのイベントハンドラ登録終了 ******/
/******* 各種関数定義 *******/
// メインウインドウの生成
function createWindow() {
mainWindow = new BrowserWindow({
width: 1100,
height: 700,
titleBarStyle: 'hidden'
});
mainWindow.loadURL(`file://${__dirname}/src/index.html`);
model = new Model( mainWindow );
fileManager = new FileManager( mainWindow, app.getAppPath(), model );
fileManager.updateLogFileName();
dc = new deviceConnector( mainWindow, fileManager, model );
dc.setListPairedDevices();
// ウインドウが閉じられた場合の処理
mainWindow.on('closed', function() {
mainWindow = null;
});
};
/***** 各種関数定義終了 *****/