2016-01-12 02:40:23 +00:00
|
|
|
var EventEmitter, Tray, deprecate;
|
|
|
|
|
|
|
|
deprecate = require('electron').deprecate;
|
|
|
|
|
|
|
|
EventEmitter = require('events').EventEmitter;
|
|
|
|
|
|
|
|
Tray = process.atomBinding('tray').Tray;
|
|
|
|
|
|
|
|
Tray.prototype.__proto__ = EventEmitter.prototype;
|
|
|
|
|
|
|
|
Tray.prototype._init = function() {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Deprecated.
|
2016-01-12 02:40:23 +00:00
|
|
|
deprecate.rename(this, 'popContextMenu', 'popUpContextMenu');
|
|
|
|
deprecate.event(this, 'clicked', 'click');
|
|
|
|
deprecate.event(this, 'double-clicked', 'double-click');
|
|
|
|
deprecate.event(this, 'right-clicked', 'right-click');
|
|
|
|
return deprecate.event(this, 'balloon-clicked', 'balloon-click');
|
|
|
|
};
|
|
|
|
|
|
|
|
Tray.prototype.setContextMenu = function(menu) {
|
|
|
|
this._setContextMenu(menu);
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Keep a strong reference of menu.
|
2016-01-12 02:40:23 +00:00
|
|
|
return this.menu = menu;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Tray;
|