73 lines
2.5 KiB
CoffeeScript
73 lines
2.5 KiB
CoffeeScript
{deprecate, session, Menu} = require 'electron'
|
|
{EventEmitter} = require 'events'
|
|
|
|
bindings = process.atomBinding 'app'
|
|
downloadItemBindings = process.atomBinding 'download_item'
|
|
|
|
app = bindings.app
|
|
app.__proto__ = EventEmitter.prototype
|
|
|
|
app.setApplicationMenu = (menu) ->
|
|
Menu.setApplicationMenu menu
|
|
|
|
app.getApplicationMenu = ->
|
|
Menu.getApplicationMenu()
|
|
|
|
app.commandLine =
|
|
appendSwitch: bindings.appendSwitch,
|
|
appendArgument: bindings.appendArgument
|
|
|
|
if process.platform is 'darwin'
|
|
app.dock =
|
|
bounce: (type='informational') -> bindings.dockBounce type
|
|
cancelBounce: bindings.dockCancelBounce
|
|
setBadge: bindings.dockSetBadgeText
|
|
getBadge: bindings.dockGetBadgeText
|
|
hide: bindings.dockHide
|
|
show: bindings.dockShow
|
|
setMenu: bindings.dockSetMenu
|
|
|
|
appPath = null
|
|
app.setAppPath = (path) ->
|
|
appPath = path
|
|
|
|
app.getAppPath = ->
|
|
appPath
|
|
|
|
# Routes the events to webContents.
|
|
for name in ['login', 'certificate-error', 'select-client-certificate']
|
|
do (name) ->
|
|
app.on name, (event, webContents, args...) ->
|
|
webContents.emit name, event, args...
|
|
|
|
# Deprecated.
|
|
app.getHomeDir = deprecate 'app.getHomeDir', 'app.getPath', ->
|
|
@getPath 'home'
|
|
app.getDataPath = deprecate 'app.getDataPath', 'app.getPath', ->
|
|
@getPath 'userData'
|
|
app.setDataPath = deprecate 'app.setDataPath', 'app.setPath', (path) ->
|
|
@setPath 'userData', path
|
|
app.resolveProxy = deprecate 'app.resolveProxy', 'session.defaultSession.resolveProxy', (url, callback) ->
|
|
session.defaultSession.resolveProxy url, callback
|
|
deprecate.rename app, 'terminate', 'quit'
|
|
deprecate.event app, 'finish-launching', 'ready', ->
|
|
setImmediate => # give default app a chance to setup default menu.
|
|
@emit 'finish-launching'
|
|
deprecate.event app, 'activate-with-no-open-windows', 'activate', (event, hasVisibleWindows) ->
|
|
@emit 'activate-with-no-open-windows', event if not hasVisibleWindows
|
|
deprecate.event app, 'select-certificate', 'select-client-certificate'
|
|
|
|
# Wrappers for native classes.
|
|
wrapDownloadItem = (downloadItem) ->
|
|
# downloadItem is an EventEmitter.
|
|
downloadItem.__proto__ = EventEmitter.prototype
|
|
# Deprecated.
|
|
deprecate.property downloadItem, 'url', 'getURL'
|
|
deprecate.property downloadItem, 'filename', 'getFilename'
|
|
deprecate.property downloadItem, 'mimeType', 'getMimeType'
|
|
deprecate.property downloadItem, 'hasUserGesture', 'hasUserGesture'
|
|
deprecate.rename downloadItem, 'getUrl', 'getURL'
|
|
downloadItemBindings._setWrapDownloadItem wrapDownloadItem
|
|
|
|
# Only one App object pemitted.
|
|
module.exports = app
|