facebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
66 lines
1.8 KiB
9 years ago
|
Ext.define('Ext.draw.ContainerBase', {
|
||
|
extend: 'Ext.Container',
|
||
|
|
||
|
inheritableStatics: {
|
||
|
WATERMARK: 'Powered by <span style="color:#22E962; font-weight: 900">Sencha Touch</span> <span style="color:#75cdff; font-weight: 900">GPLv3</span>'
|
||
|
},
|
||
|
|
||
|
constructor: function(config) {
|
||
|
this.callParent([config]);
|
||
|
this.initAnimator();
|
||
|
},
|
||
|
|
||
|
initialize: function () {
|
||
|
this.callParent();
|
||
|
this.element.on('resize', 'onBodyResize', this);
|
||
|
},
|
||
|
|
||
|
getElementConfig: function () {
|
||
|
return {
|
||
|
reference: 'element',
|
||
|
className: 'x-container',
|
||
|
children: [
|
||
|
{
|
||
|
reference: 'innerElement',
|
||
|
className: 'x-inner',
|
||
|
children: [
|
||
|
{
|
||
|
reference: 'watermarkElement',
|
||
|
cls: 'x-chart-watermark',
|
||
|
html: Ext.draw.Container.WATERMARK,
|
||
|
style: Ext.draw.Container.WATERMARK ? '': 'display:none'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
},
|
||
|
|
||
|
addElementListener: function() {
|
||
|
this.element.on.apply(this.element, arguments);
|
||
|
},
|
||
|
|
||
|
preview: function () {
|
||
|
Ext.Viewport.add({
|
||
|
xtype: 'panel',
|
||
|
layout: 'fit',
|
||
|
modal: true,
|
||
|
width: '90%',
|
||
|
height: '90%',
|
||
|
hideOnMaskTap: true,
|
||
|
centered: true,
|
||
|
scrollable: false,
|
||
|
items: {
|
||
|
xtype: 'image',
|
||
|
mode: 'img',
|
||
|
src: this.getImage().data
|
||
|
},
|
||
|
listeners: {
|
||
|
hide: function () {
|
||
|
Ext.Viewport.remove(this);
|
||
|
}
|
||
|
}
|
||
|
}).show();
|
||
|
}
|
||
|
});
|