2013-05-02 16:05:09 +00:00
|
|
|
EventEmitter = require('events').EventEmitter
|
|
|
|
|
2013-12-26 10:41:21 +00:00
|
|
|
bindings = process.atomBinding 'app'
|
|
|
|
|
2014-04-17 09:13:46 +00:00
|
|
|
app = bindings.app
|
|
|
|
app.__proto__ = EventEmitter.prototype
|
2013-05-17 07:39:44 +00:00
|
|
|
|
2013-10-05 05:46:48 +00:00
|
|
|
app.setApplicationMenu = (menu) ->
|
|
|
|
require('menu').setApplicationMenu menu
|
|
|
|
|
2013-10-05 13:05:59 +00:00
|
|
|
app.getApplicationMenu = ->
|
|
|
|
require('menu').getApplicationMenu()
|
|
|
|
|
2013-05-17 07:39:44 +00:00
|
|
|
app.commandLine =
|
|
|
|
appendSwitch: bindings.appendSwitch,
|
|
|
|
appendArgument: bindings.appendArgument
|
2013-05-02 16:05:09 +00:00
|
|
|
|
2013-08-06 08:19:56 +00:00
|
|
|
if process.platform is 'darwin'
|
|
|
|
app.dock =
|
2013-12-26 10:41:21 +00:00
|
|
|
bounce: (type='informational') -> bindings.dockBounce type
|
2013-08-06 08:19:56 +00:00
|
|
|
cancelBounce: bindings.dockCancelBounce
|
|
|
|
setBadge: bindings.dockSetBadgeText
|
2013-08-06 08:39:31 +00:00
|
|
|
getBadge: bindings.dockGetBadgeText
|
2014-07-29 14:31:51 +00:00
|
|
|
hide: bindings.dockHide
|
|
|
|
show: bindings.dockShow
|
2014-11-16 15:04:31 +00:00
|
|
|
setMenu: bindings.dockSetMenu
|
2013-08-06 08:19:56 +00:00
|
|
|
|
2014-04-10 07:08:14 +00:00
|
|
|
# Be compatible with old API.
|
2013-12-27 03:08:26 +00:00
|
|
|
app.once 'ready', -> app.emit 'finish-launching'
|
2014-04-10 09:07:39 +00:00
|
|
|
app.terminate = app.quit
|
|
|
|
app.exit = process.exit
|
2015-01-19 02:01:58 +00:00
|
|
|
app.getHomeDir = -> app.getPath 'home'
|
|
|
|
app.getDataPath = -> app.getPath 'userData'
|
|
|
|
app.setDataPath = (path) -> app.setPath 'userData', path
|
2013-12-27 03:08:26 +00:00
|
|
|
|
2013-05-03 02:53:54 +00:00
|
|
|
# Only one App object pemitted.
|
2013-05-17 07:39:44 +00:00
|
|
|
module.exports = app
|