electron/default_app/default_app.js

75 lines
1.8 KiB
JavaScript
Raw Normal View History

const {app, BrowserWindow,TouchBar} = require('electron')
2016-07-06 18:47:21 +00:00
const path = require('path')
2016-07-06 18:47:21 +00:00
let mainWindow = null
// Quit when all windows are closed.
app.on('window-all-closed', () => {
app.quit()
})
exports.load = (appUrl) => {
app.on('ready', () => {
2016-07-06 18:47:21 +00:00
const options = {
width: 800,
height: 600,
autoHideMenuBar: true,
2016-04-26 16:25:46 +00:00
backgroundColor: '#FFFFFF',
2016-03-27 17:38:32 +00:00
useContentSize: true
2016-07-06 18:47:21 +00:00
}
if (process.platform === 'linux') {
options.icon = path.join(__dirname, 'icon.png')
}
mainWindow = new BrowserWindow(options)
mainWindow.loadURL(appUrl)
mainWindow.focus()
mainWindow.setTouchBar(new TouchBar([
new (TouchBar.Button)({
label: 'Hello World!',
// image: '/path/to/image',
2016-11-28 10:46:32 +00:00
backgroundColor: "FF0000",
labelColor: "0000FF",
click: () => {
console.log('Hello World Clicked')
}
2016-11-28 07:24:48 +00:00
}),
new (TouchBar.Label)({
label: 'This is a Label'
}),
new (TouchBar.ColorPicker)({
change: (newColor) => {
console.log('Color was changed', newColor)
2016-11-28 07:24:48 +00:00
}
}),
new (TouchBar.PopOver)({
// image: '/path/to/image',
label: 'foo',
showCloseButton: true,
touchBar: new TouchBar([
2016-11-29 07:36:57 +00:00
new (TouchBar.Group)({
items: new TouchBar(
[1, 2, 3].map((i) => new (TouchBar.Button)({
label: `Button ${i}`,
click: () => {
console.log(`Button ${i} (group) Clicked`)
}
}))
)
})
])
}),
new (TouchBar.Slider)({
label: 'Slider 123',
minValue: 50,
maxValue: 1000,
2016-11-28 10:46:32 +00:00
initialValue: 300,
change: (newVal) => {
console.log('Slider was changed', newVal, typeof newVal)
}
}),
]))
})
}