/*
|
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)
|
*/
|
/**
|
* @private
|
*/
|
Ext.define('Ext.chart.MaskLayer', {
|
extend: 'Ext.Component',
|
|
constructor: function(config) {
|
config = Ext.apply(config || {}, {
|
style: 'position:absolute;background-color:#ff9;cursor:crosshair;opacity:0.5;border:1px solid #00f;'
|
});
|
this.callParent([config]);
|
},
|
|
initComponent: function() {
|
var me = this;
|
me.callParent(arguments);
|
me.addEvents(
|
'mousedown',
|
'mouseup',
|
'mousemove',
|
'mouseenter',
|
'mouseleave'
|
);
|
},
|
|
initDraggable: function() {
|
this.callParent(arguments);
|
this.dd.onStart = function (e) {
|
var me = this,
|
comp = me.comp;
|
|
// Cache the start [X, Y] array
|
this.startPosition = comp.getPosition(true);
|
|
// If client Component has a ghost method to show a lightweight version of itself
|
// then use that as a drag proxy unless configured to liveDrag.
|
if (comp.ghost && !comp.liveDrag) {
|
me.proxy = comp.ghost();
|
me.dragTarget = me.proxy.header.el;
|
}
|
|
// Set the constrainTo Region before we start dragging.
|
if (me.constrain || me.constrainDelegate) {
|
me.constrainTo = me.calculateConstrainRegion();
|
}
|
};
|
}
|
});
|