2020-09-14 10:36:54 -07:00
|
|
|
const { BrowserWindow, app, screen, ipcMain } = require('electron')
|
2019-10-16 20:47:50 +05:30
|
|
|
|
|
|
|
let mainWindow = null
|
|
|
|
|
2020-09-14 10:36:54 -07:00
|
|
|
ipcMain.handle('get-screen-size', () => {
|
|
|
|
return screen.getPrimaryDisplay().workAreaSize
|
|
|
|
})
|
|
|
|
|
2019-10-16 20:47:50 +05:30
|
|
|
function createWindow () {
|
|
|
|
const windowOptions = {
|
|
|
|
width: 600,
|
|
|
|
height: 300,
|
|
|
|
title: 'Take a Screenshot',
|
|
|
|
webPreferences: {
|
2023-07-13 10:10:37 +02:00
|
|
|
contextIsolation: false,
|
2019-10-16 20:47:50 +05:30
|
|
|
nodeIntegration: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mainWindow = new BrowserWindow(windowOptions)
|
|
|
|
mainWindow.loadFile('index.html')
|
|
|
|
|
|
|
|
mainWindow.on('closed', () => {
|
|
|
|
mainWindow = null
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-03 16:43:22 -06:00
|
|
|
app.whenReady().then(() => {
|
2019-10-16 20:47:50 +05:30
|
|
|
createWindow()
|
|
|
|
})
|