outlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplace
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.
36 lines
853 B
36 lines
853 B
9 years ago
|
// @define Ext.layout.SizePolicy
|
||
|
|
||
|
/**
|
||
|
* This class describes how a layout will interact with a component it manages.
|
||
|
*
|
||
|
* There are special instances of this class stored as static properties to avoid object
|
||
|
* instantiation. All instances of this class should be treated as readonly objects.
|
||
|
*
|
||
|
* @class Ext.layout.SizePolicy
|
||
|
* @protected
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @property {Boolean} readsWidth
|
||
|
* Indicates that the `width` of the component is consumed.
|
||
|
* @readonly
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @property {Boolean} readsHeight
|
||
|
* Indicates that the `height` of the component is consumed.
|
||
|
* @readonly
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @property {Boolean} setsWidth
|
||
|
* Indicates that the `width` of the component will be set (i.e., calculated).
|
||
|
* @readonly
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @property {Boolean} setsHeight
|
||
|
* Indicates that the `height` of the component will be set (i.e., calculated).
|
||
|
* @readonly
|
||
|
*/
|