/*
|
This file is part of Ext JS 4.2
|
|
Copyright (c) 2011-2013 Sencha Inc
|
|
Contact: http://www.sencha.com/contact
|
|
GNU General Public License Usage
|
This file may be used under the terms of the GNU General Public License version 3.0 as
|
published by the Free Software Foundation and appearing in the file LICENSE included in the
|
packaging of this file.
|
|
Please review the following information to ensure the GNU General Public License version 3.0
|
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
|
|
If you are unsure which license is appropriate for your use, please contact the sales department
|
at http://www.sencha.com/contact.
|
|
Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314)
|
*/
|
/**
|
* This class manages event dispatching for Controllers. The details of connecting classes
|
* to this dispatching mechanism is delegated to {@link Ext.app.EventDomain} instances.
|
*
|
* @private
|
*/
|
Ext.define('Ext.app.EventBus', {
|
singleton: true,
|
|
requires: [
|
'Ext.app.domain.Component'
|
],
|
|
constructor: function() {
|
var me = this,
|
domains = Ext.app.EventDomain.instances;
|
|
me.callParent();
|
|
me.domains = domains;
|
me.bus = domains.component.bus; // compat
|
},
|
|
/**
|
* Adds a set of component event listeners for a controller. To work with event domains
|
* other than component, see {@link #listen}.
|
*
|
* @param {Object} selectors Config object containing selectors and listeners.
|
* @param {Ext.app.Controller} controller The listening controller instance.
|
*/
|
control: function(selectors, controller) {
|
return this.domains.component.listen(selectors, controller);
|
},
|
|
/**
|
* Adds a set of event domain listeners for a controller. For more information on event
|
* domains, see {@link Ext.app.EventDomain} and {@link Ext.app.Controller}.
|
*
|
* @param {Object} to Config object containing domains, selectors and listeners.
|
* @param {Ext.app.Controller} controller The listening controller instance.
|
*/
|
listen: function(to, controller) {
|
var domains = this.domains,
|
domain;
|
|
for (domain in to) {
|
if (to.hasOwnProperty(domain)) {
|
domains[domain].listen(to[domain], controller);
|
}
|
}
|
},
|
|
/**
|
* Removes all of a controller's attached listeners.
|
*
|
* @param {String} controllerId The id of the controller.
|
*/
|
unlisten: function(controllerId) {
|
var domains = Ext.app.EventDomain.instances,
|
domain;
|
|
for (domain in domains) {
|
domains[domain].unlisten(controllerId);
|
}
|
}
|
});
|