- onenote.git
- src
- electron
- main
- create
- tray.js
This file ( 983B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const {Menu, Tray} = require('electron')
const menus = require('../menus');
const action = require('../action');
const destroyTray = () => {
if (global.p3x.onenote.tray !== undefined) {
global.p3x.onenote.tray.destroy()
global.p3x.onenote.tray = undefined
}
}
function mainTray() {
destroyTray();
if (!global.p3x.onenote.disableHide) {
global.p3x.onenote.tray = new Tray(global.p3x.onenote.iconFile)
global.p3x.onenote.tray.setToolTip(`${global.p3x.onenote.title} v${global.p3x.onenote.pkg.version}`)
const click = () => {
console.info('tray on click is executed - if not shown in console. this click is not executed.')
action.toggleVisible()
}
global.p3x.onenote.tray.on('click', click)
const menu = menus.default()
const contextMenu = Menu.buildFromTemplate(menu)
global.p3x.onenote.tray.setContextMenu(contextMenu)
}
}
module.exports = mainTray;