/*
|
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.layout.component.field.Slider', {
|
|
/* Begin Definitions */
|
|
alias: ['layout.sliderfield'],
|
|
extend: 'Ext.layout.component.field.Field',
|
|
/* End Definitions */
|
|
type: 'sliderfield',
|
|
beginLayout: function(ownerContext) {
|
this.callParent(arguments);
|
|
ownerContext.endElContext = ownerContext.getEl('endEl');
|
ownerContext.innerElContext = ownerContext.getEl('innerEl');
|
ownerContext.bodyElContext = ownerContext.getEl('bodyEl');
|
},
|
|
publishInnerHeight: function (ownerContext, height) {
|
var innerHeight = height - this.measureLabelErrorHeight(ownerContext),
|
endElPad,
|
inputPad;
|
if (this.owner.vertical) {
|
endElPad = ownerContext.endElContext.getPaddingInfo();
|
inputPad = ownerContext.inputContext.getPaddingInfo();
|
ownerContext.innerElContext.setHeight(innerHeight - inputPad.height - endElPad.height);
|
} else {
|
ownerContext.bodyElContext.setHeight(innerHeight);
|
}
|
},
|
|
publishInnerWidth: function (ownerContext, width) {
|
if (!this.owner.vertical) {
|
var endElPad = ownerContext.endElContext.getPaddingInfo(),
|
inputPad = ownerContext.inputContext.getPaddingInfo();
|
|
ownerContext.innerElContext.setWidth(width - inputPad.left - endElPad.right - ownerContext.labelContext.getProp('width'));
|
}
|
},
|
|
beginLayoutFixed: function(ownerContext, width, suffix) {
|
var me = this,
|
ieInputWidthAdjustment = me.ieInputWidthAdjustment;
|
|
if (ieInputWidthAdjustment) {
|
// adjust for IE 6/7 strict content-box model
|
// RTL: This might have to be padding-left unless the senses of the padding styles switch when in RTL mode.
|
me.owner.bodyEl.setStyle('padding-right', ieInputWidthAdjustment + 'px');
|
}
|
|
me.callParent(arguments);
|
}
|
});
|