97 lines
No EOL
2.3 KiB
JavaScript
97 lines
No EOL
2.3 KiB
JavaScript
/*
|
|
This file is part of Ext JS 3.4
|
|
|
|
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-04-03 15:07:25
|
|
*/
|
|
Ext.app.App = function(cfg){
|
|
Ext.apply(this, cfg);
|
|
this.addEvents({
|
|
'ready' : true,
|
|
'beforeunload' : true
|
|
});
|
|
|
|
Ext.onReady(this.initApp, this);
|
|
};
|
|
|
|
Ext.extend(Ext.app.App, Ext.util.Observable, {
|
|
isReady: false,
|
|
startMenu: null,
|
|
modules: null,
|
|
|
|
getStartConfig : function(){
|
|
|
|
},
|
|
|
|
initApp : function(){
|
|
this.startConfig = this.startConfig || this.getStartConfig();
|
|
|
|
this.desktop = new Ext.Desktop(this);
|
|
|
|
this.launcher = this.desktop.taskbar.startMenu;
|
|
|
|
this.modules = this.getModules();
|
|
if(this.modules){
|
|
this.initModules(this.modules);
|
|
}
|
|
|
|
this.init();
|
|
|
|
Ext.EventManager.on(window, 'beforeunload', this.onUnload, this);
|
|
this.fireEvent('ready', this);
|
|
this.isReady = true;
|
|
},
|
|
|
|
getModules : Ext.emptyFn,
|
|
init : Ext.emptyFn,
|
|
|
|
initModules : function(ms){
|
|
for(var i = 0, len = ms.length; i < len; i++){
|
|
var m = ms[i];
|
|
this.launcher.add(m.launcher);
|
|
m.app = this;
|
|
}
|
|
},
|
|
|
|
getModule : function(name){
|
|
var ms = this.modules;
|
|
for(var i = 0, len = ms.length; i < len; i++){
|
|
if(ms[i].id == name || ms[i].appType == name){
|
|
return ms[i];
|
|
}
|
|
}
|
|
return '';
|
|
},
|
|
|
|
onReady : function(fn, scope){
|
|
if(!this.isReady){
|
|
this.on('ready', fn, scope);
|
|
}else{
|
|
fn.call(scope, this);
|
|
}
|
|
},
|
|
|
|
getDesktop : function(){
|
|
return this.desktop;
|
|
},
|
|
|
|
onUnload : function(e){
|
|
if(this.fireEvent('beforeunload', this) === false){
|
|
e.stopEvent();
|
|
}
|
|
}
|
|
}); |