electron/lib/browser/api/menu-item-roles.js

148 lines
3 KiB
JavaScript
Raw Normal View History

2016-06-22 22:21:45 +00:00
const {app} = require('electron')
const roles = {
2016-06-22 20:15:20 +00:00
about: {
get label () {
2016-06-22 22:26:17 +00:00
return process.platform === 'linux' ? 'About' : `About ${app.getName()}`
2016-06-22 20:15:20 +00:00
}
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
close: {
label: 'Close',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+W',
2016-06-22 20:48:26 +00:00
windowMethod: 'close'
2016-06-22 20:15:20 +00:00
},
copy: {
label: 'Copy',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+C',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'copy'
2016-06-22 17:29:49 +00:00
},
cut: {
label: 'Cut',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+X',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'cut'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
delete: {
label: 'Delete',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'delete'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
front: {
label: 'Bring All to Front'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
help: {
label: 'Help'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
hide: {
get label () {
return `Hide ${app.getName()}`
},
accelerator: 'Command+H'
},
hideothers: {
label: 'Hide Others',
accelerator: 'Command+Alt+H'
2016-06-22 17:29:49 +00:00
},
minimize: {
label: 'Minimize',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+M',
2016-06-22 20:48:26 +00:00
windowMethod: 'minimize'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
paste: {
label: 'Paste',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+V',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'paste'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
pasteandmatchstyle: {
label: 'Paste and Match Style',
2016-06-22 22:26:17 +00:00
accelerator: 'Shift+CommandOrControl+V',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'pasteAndMatchStyle'
2016-06-22 17:29:49 +00:00
},
quit: {
get label () {
2016-06-22 22:26:17 +00:00
switch (process.platform) {
case 'darwin': return `Quit ${app.getName()}`
case 'win32': return 'Exit'
default: return 'Quit'
}
2016-06-22 17:29:49 +00:00
},
accelerator: process.platform === 'win32' ? null : 'Command+Q',
2016-06-22 20:48:26 +00:00
appMethod: 'quit'
2016-06-22 17:29:49 +00:00
},
2016-06-22 20:15:20 +00:00
redo: {
label: 'Redo',
2016-06-22 22:26:17 +00:00
accelerator: 'Shift+CommandOrControl+Z',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'redo'
2016-06-22 20:15:20 +00:00
},
selectall: {
label: 'Select All',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+A',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'selectAll'
2016-06-22 20:15:20 +00:00
},
services: {
label: 'Services'
},
2016-06-22 17:29:49 +00:00
togglefullscreen: {
label: 'Toggle Full Screen',
2016-06-22 23:56:45 +00:00
accelerator: process.platform === 'darwin' ? 'Control+Command+F' : 'F11',
2016-06-22 20:48:26 +00:00
windowMethod: function (window) {
window.setFullScreen(!window.isFullScreen())
}
2016-06-22 17:47:25 +00:00
},
2016-06-22 20:15:20 +00:00
undo: {
label: 'Undo',
2016-06-22 22:26:17 +00:00
accelerator: 'CommandOrControl+Z',
2016-06-22 20:48:26 +00:00
webContentsMethod: 'undo'
2016-06-22 20:15:20 +00:00
},
unhide: {
label: 'Show All'
2016-06-22 17:47:25 +00:00
},
window: {
label: 'Window'
2016-06-22 20:09:39 +00:00
},
zoom: {
label: 'Zoom'
2016-06-22 17:29:49 +00:00
}
}
2016-06-22 22:26:17 +00:00
exports.getDefaultLabel = (role) => {
if (roles.hasOwnProperty(role)) {
return roles[role].label
} else {
return ''
}
}
2016-06-22 22:26:17 +00:00
exports.getDefaultAccelerator = (role) => {
if (roles.hasOwnProperty(role)) return roles[role].accelerator
}
2016-06-22 20:48:26 +00:00
2016-06-22 22:26:17 +00:00
exports.execute = (role, focusedWindow) => {
2016-06-22 20:48:26 +00:00
if (!roles.hasOwnProperty(role)) return false
if (process.platform === 'darwin') return false
const {appMethod, webContentsMethod, windowMethod} = roles[role]
if (appMethod) {
app[appMethod]()
return true
}
2016-06-22 21:14:32 +00:00
if (windowMethod && focusedWindow != null) {
if (typeof windowMethod === 'function') {
windowMethod(focusedWindow)
} else {
focusedWindow[windowMethod]()
2016-06-22 20:48:26 +00:00
}
2016-06-22 21:14:32 +00:00
return true
}
if (webContentsMethod && focusedWindow != null) {
const {webContents} = focusedWindow
if (webContents) {
webContents[webContentsMethod]()
}
return true
2016-06-22 20:48:26 +00:00
}
return false
}