Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[extjs.git] / docs / source / BoxComponent.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="cls-Ext.BoxComponent"></div>/**
10  * @class Ext.BoxComponent
11  * @extends Ext.Component
12  * <p>Base class for any {@link Ext.Component Component} that is to be sized as a box, using width and height.</p>
13  * <p>BoxComponent provides automatic box model adjustments for sizing and positioning and will work correctly
14  * within the Component rendering model.</p>
15  * <p>A BoxComponent may be created as a custom Component which encapsulates any HTML element, either a pre-existing
16  * element, or one that is created to your specifications at render time. Usually, to participate in layouts,
17  * a Component will need to be a <b>Box</b>Component in order to have its width and height managed.</p>
18  * <p>To use a pre-existing element as a BoxComponent, configure it so that you preset the <b>el</b> property to the
19  * element to reference:<pre><code>
20 var pageHeader = new Ext.BoxComponent({
21     el: 'my-header-div'
22 });</code></pre>
23  * This may then be {@link Ext.Container#add added} to a {@link Ext.Container Container} as a child item.</p>
24  * <p>To create a BoxComponent based around a HTML element to be created at render time, use the
25  * {@link Ext.Component#autoEl autoEl} config option which takes the form of a
26  * {@link Ext.DomHelper DomHelper} specification:<pre><code>
27 var myImage = new Ext.BoxComponent({
28     autoEl: {
29         tag: 'img',
30         src: '/images/my-image.jpg'
31     }
32 });</code></pre></p>
33  * @constructor
34  * @param {Ext.Element/String/Object} config The configuration options.
35  * @xtype box
36  */
37 Ext.BoxComponent = Ext.extend(Ext.Component, {
38
39     // Configs below are used for all Components when rendered by BoxLayout.
40     <div id="cfg-Ext.BoxComponent-flex"></div>/**
41      * @cfg {Number} flex
42      * <p><b>Note</b>: this config is only used when this Component is rendered
43      * by a Container which has been configured to use a <b>{@link Ext.layout.BoxLayout BoxLayout}.</b>
44      * Each child Component with a <code>flex</code> property will be flexed either vertically (by a VBoxLayout)
45      * or horizontally (by an HBoxLayout) according to the item's <b>relative</b> <code>flex</code> value
46      * compared to the sum of all Components with <code>flex</flex> value specified. Any child items that have
47      * either a <code>flex = 0</code> or <code>flex = undefined</code> will not be 'flexed' (the initial size will not be changed).
48      */
49     // Configs below are used for all Components when rendered by AnchorLayout.
50     <div id="cfg-Ext.BoxComponent-anchor"></div>/**
51      * @cfg {String} anchor <p><b>Note</b>: this config is only used when this Component is rendered
52      * by a Container which has been configured to use an <b>{@link Ext.layout.AnchorLayout AnchorLayout} (or subclass thereof).</b>
53      * based layout manager, for example:<div class="mdetail-params"><ul>
54      * <li>{@link Ext.form.FormPanel}</li>
55      * <li>specifying <code>layout: 'anchor' // or 'form', or 'absolute'</code></li>
56      * </ul></div></p>
57      * <p>See {@link Ext.layout.AnchorLayout}.{@link Ext.layout.AnchorLayout#anchor anchor} also.</p>
58      */
59     // tabTip config is used when a BoxComponent is a child of a TabPanel
60     <div id="cfg-Ext.BoxComponent-tabTip"></div>/**
61      * @cfg {String} tabTip
62      * <p><b>Note</b>: this config is only used when this BoxComponent is a child item of a TabPanel.</p>
63      * A string to be used as innerHTML (html tags are accepted) to show in a tooltip when mousing over
64      * the associated tab selector element. {@link Ext.QuickTips}.init()
65      * must be called in order for the tips to render.
66      */
67     // Configs below are used for all Components when rendered by BorderLayout.
68     <div id="cfg-Ext.BoxComponent-region"></div>/**
69      * @cfg {String} region <p><b>Note</b>: this config is only used when this BoxComponent is rendered
70      * by a Container which has been configured to use the <b>{@link Ext.layout.BorderLayout BorderLayout}</b>
71      * layout manager (e.g. specifying <tt>layout:'border'</tt>).</p><br>
72      * <p>See {@link Ext.layout.BorderLayout} also.</p>
73      */
74     // margins config is used when a BoxComponent is rendered by BorderLayout or BoxLayout.
75     <div id="cfg-Ext.BoxComponent-margins"></div>/**
76      * @cfg {Object} margins <p><b>Note</b>: this config is only used when this BoxComponent is rendered
77      * by a Container which has been configured to use the <b>{@link Ext.layout.BorderLayout BorderLayout}</b>
78      * or one of the two <b>{@link Ext.layout.BoxLayout BoxLayout} subclasses.</b></p>
79      * <p>An object containing margins to apply to this BoxComponent in the
80      * format:</p><pre><code>
81 {
82     top: (top margin),
83     right: (right margin),
84     bottom: (bottom margin),
85     left: (left margin)
86 }</code></pre>
87      * <p>May also be a string containing space-separated, numeric margin values. The order of the
88      * sides associated with each value matches the way CSS processes margin values:</p>
89      * <p><div class="mdetail-params"><ul>
90      * <li>If there is only one value, it applies to all sides.</li>
91      * <li>If there are two values, the top and bottom borders are set to the first value and the
92      * right and left are set to the second.</li>
93      * <li>If there are three values, the top is set to the first value, the left and right are set
94      * to the second, and the bottom is set to the third.</li>
95      * <li>If there are four values, they apply to the top, right, bottom, and left, respectively.</li>
96      * </ul></div></p>
97      * <p>Defaults to:</p><pre><code>
98      * {top:0, right:0, bottom:0, left:0}
99      * </code></pre>
100      */
101     <div id="cfg-Ext.BoxComponent-x"></div>/**
102      * @cfg {Number} x
103      * The local x (left) coordinate for this component if contained within a positioning container.
104      */
105     <div id="cfg-Ext.BoxComponent-y"></div>/**
106      * @cfg {Number} y
107      * The local y (top) coordinate for this component if contained within a positioning container.
108      */
109     <div id="cfg-Ext.BoxComponent-pageX"></div>/**
110      * @cfg {Number} pageX
111      * The page level x coordinate for this component if contained within a positioning container.
112      */
113     <div id="cfg-Ext.BoxComponent-pageY"></div>/**
114      * @cfg {Number} pageY
115      * The page level y coordinate for this component if contained within a positioning container.
116      */
117     <div id="cfg-Ext.BoxComponent-height"></div>/**
118      * @cfg {Number} height
119      * The height of this component in pixels (defaults to auto).
120      * <b>Note</b> to express this dimension as a percentage or offset see {@link Ext.Component#anchor}.
121      */
122     <div id="cfg-Ext.BoxComponent-width"></div>/**
123      * @cfg {Number} width
124      * The width of this component in pixels (defaults to auto).
125      * <b>Note</b> to express this dimension as a percentage or offset see {@link Ext.Component#anchor}.
126      */
127     <div id="cfg-Ext.BoxComponent-boxMinHeight"></div>/**
128      * @cfg {Number} boxMinHeight
129      * <p>The minimum value in pixels which this BoxComponent will set its height to.</p>
130      * <p><b>Warning:</b> This will override any size management applied by layout managers.</p>
131      */
132     <div id="cfg-Ext.BoxComponent-boxMinWidth"></div>/**
133      * @cfg {Number} boxMinWidth
134      * <p>The minimum value in pixels which this BoxComponent will set its width to.</p>
135      * <p><b>Warning:</b> This will override any size management applied by layout managers.</p>
136      */
137     <div id="cfg-Ext.BoxComponent-boxMaxHeight"></div>/**
138      * @cfg {Number} boxMaxHeight
139      * <p>The maximum value in pixels which this BoxComponent will set its height to.</p>
140      * <p><b>Warning:</b> This will override any size management applied by layout managers.</p>
141      */
142     <div id="cfg-Ext.BoxComponent-boxMaxWidth"></div>/**
143      * @cfg {Number} boxMaxWidth
144      * <p>The maximum value in pixels which this BoxComponent will set its width to.</p>
145      * <p><b>Warning:</b> This will override any size management applied by layout managers.</p>
146      */
147     <div id="cfg-Ext.BoxComponent-autoHeight"></div>/**
148      * @cfg {Boolean} autoHeight
149      * <p>True to use height:'auto', false to use fixed height (or allow it to be managed by its parent
150      * Container's {@link Ext.Container#layout layout manager}. Defaults to false.</p>
151      * <p><b>Note</b>: Although many components inherit this config option, not all will
152      * function as expected with a height of 'auto'. Setting autoHeight:true means that the
153      * browser will manage height based on the element's contents, and that Ext will not manage it at all.</p>
154      * <p>If the <i>browser</i> is managing the height, be aware that resizes performed by the browser in response
155      * to changes within the structure of the Component cannot be detected. Therefore changes to the height might
156      * result in elements needing to be synchronized with the new height. Example:</p><pre><code>
157 var w = new Ext.Window({
158     title: 'Window',
159     width: 600,
160     autoHeight: true,
161     items: {
162         title: 'Collapse Me',
163         height: 400,
164         collapsible: true,
165         border: false,
166         listeners: {
167             beforecollapse: function() {
168                 w.el.shadow.hide();
169             },
170             beforeexpand: function() {
171                 w.el.shadow.hide();
172             },
173             collapse: function() {
174                 w.syncShadow();
175             },
176             expand: function() {
177                 w.syncShadow();
178             }
179         }
180     }
181 }).show();
182 </code></pre>
183      */
184     <div id="cfg-Ext.BoxComponent-autoWidth"></div>/**
185      * @cfg {Boolean} autoWidth
186      * <p>True to use width:'auto', false to use fixed width (or allow it to be managed by its parent
187      * Container's {@link Ext.Container#layout layout manager}. Defaults to false.</p>
188      * <p><b>Note</b>: Although many components  inherit this config option, not all will
189      * function as expected with a width of 'auto'. Setting autoWidth:true means that the
190      * browser will manage width based on the element's contents, and that Ext will not manage it at all.</p>
191      * <p>If the <i>browser</i> is managing the width, be aware that resizes performed by the browser in response
192      * to changes within the structure of the Component cannot be detected. Therefore changes to the width might
193      * result in elements needing to be synchronized with the new width. For example, where the target element is:</p><pre><code>
194 &lt;div id='grid-container' style='margin-left:25%;width:50%'>&lt;/div>
195 </code></pre>
196      * A Panel rendered into that target element must listen for browser window resize in order to relay its
197       * child items when the browser changes its width:<pre><code>
198 var myPanel = new Ext.Panel({
199     renderTo: 'grid-container',
200     monitorResize: true, // relay on browser resize
201     title: 'Panel',
202     height: 400,
203     autoWidth: true,
204     layout: 'hbox',
205     layoutConfig: {
206         align: 'stretch'
207     },
208     defaults: {
209         flex: 1
210     },
211     items: [{
212         title: 'Box 1',
213     }, {
214         title: 'Box 2'
215     }, {
216         title: 'Box 3'
217     }],
218 });
219 </code></pre>
220      */
221     <div id="cfg-Ext.BoxComponent-autoScroll"></div>/**
222      * @cfg {Boolean} autoScroll
223      * <code>true</code> to use overflow:'auto' on the components layout element and show scroll bars automatically when
224      * necessary, <code>false</code> to clip any overflowing content (defaults to <code>false</code>).
225      */
226
227     /* // private internal config
228      * {Boolean} deferHeight
229      * True to defer height calculations to an external component, false to allow this component to set its own
230      * height (defaults to false).
231      */
232
233     // private
234     initComponent : function(){
235         Ext.BoxComponent.superclass.initComponent.call(this);
236         this.addEvents(
237             <div id="event-Ext.BoxComponent-resize"></div>/**
238              * @event resize
239              * Fires after the component is resized.
240              * @param {Ext.Component} this
241              * @param {Number} adjWidth The box-adjusted width that was set
242              * @param {Number} adjHeight The box-adjusted height that was set
243              * @param {Number} rawWidth The width that was originally specified
244              * @param {Number} rawHeight The height that was originally specified
245              */
246             'resize',
247             <div id="event-Ext.BoxComponent-move"></div>/**
248              * @event move
249              * Fires after the component is moved.
250              * @param {Ext.Component} this
251              * @param {Number} x The new x position
252              * @param {Number} y The new y position
253              */
254             'move'
255         );
256     },
257
258     // private, set in afterRender to signify that the component has been rendered
259     boxReady : false,
260     // private, used to defer height settings to subclasses
261     deferHeight: false,
262
263     <div id="method-Ext.BoxComponent-setSize"></div>/**
264      * Sets the width and height of this BoxComponent. This method fires the {@link #resize} event. This method can accept
265      * either width and height as separate arguments, or you can pass a size object like <code>{width:10, height:20}</code>.
266      * @param {Mixed} width The new width to set. This may be one of:<div class="mdetail-params"><ul>
267      * <li>A Number specifying the new width in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels).</li>
268      * <li>A String used to set the CSS width style.</li>
269      * <li>A size object in the format <code>{width: widthValue, height: heightValue}</code>.</li>
270      * <li><code>undefined</code> to leave the width unchanged.</li>
271      * </ul></div>
272      * @param {Mixed} height The new height to set (not required if a size object is passed as the first arg).
273      * This may be one of:<div class="mdetail-params"><ul>
274      * <li>A Number specifying the new height in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels).</li>
275      * <li>A String used to set the CSS height style. Animation may <b>not</b> be used.</li>
276      * <li><code>undefined</code> to leave the height unchanged.</li>
277      * </ul></div>
278      * @return {Ext.BoxComponent} this
279      */
280     setSize : function(w, h){
281
282         // support for standard size objects
283         if(typeof w == 'object'){
284             h = w.height, w = w.width;
285         }
286         if (Ext.isDefined(w) && Ext.isDefined(this.boxMinWidth) && (w < this.boxMinWidth)) {
287             w = this.boxMinWidth;
288         }
289         if (Ext.isDefined(h) && Ext.isDefined(this.boxMinHeight) && (h < this.boxMinHeight)) {
290             h = this.boxMinHeight;
291         }
292         if (Ext.isDefined(w) && Ext.isDefined(this.boxMaxWidth) && (w > this.boxMaxWidth)) {
293             w = this.boxMaxWidth;
294         }
295         if (Ext.isDefined(h) && Ext.isDefined(this.boxMaxHeight) && (h > this.boxMaxHeight)) {
296             h = this.boxMaxHeight;
297         }
298         // not rendered
299         if(!this.boxReady){
300             this.width = w, this.height = h;
301             return this;
302         }
303
304         // prevent recalcs when not needed
305         if(this.cacheSizes !== false && this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
306             return this;
307         }
308         this.lastSize = {width: w, height: h};
309         var adj = this.adjustSize(w, h),
310             aw = adj.width,
311             ah = adj.height,
312             rz;
313         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
314             rz = this.getResizeEl();
315             if(!this.deferHeight && aw !== undefined && ah !== undefined){
316                 rz.setSize(aw, ah);
317             }else if(!this.deferHeight && ah !== undefined){
318                 rz.setHeight(ah);
319             }else if(aw !== undefined){
320                 rz.setWidth(aw);
321             }
322             this.onResize(aw, ah, w, h);
323             this.fireEvent('resize', this, aw, ah, w, h);
324         }
325         return this;
326     },
327
328     <div id="method-Ext.BoxComponent-setWidth"></div>/**
329      * Sets the width of the component.  This method fires the {@link #resize} event.
330      * @param {Number} width The new width to setThis may be one of:<div class="mdetail-params"><ul>
331      * <li>A Number specifying the new width in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels).</li>
332      * <li>A String used to set the CSS width style.</li>
333      * </ul></div>
334      * @return {Ext.BoxComponent} this
335      */
336     setWidth : function(width){
337         return this.setSize(width);
338     },
339
340     <div id="method-Ext.BoxComponent-setHeight"></div>/**
341      * Sets the height of the component.  This method fires the {@link #resize} event.
342      * @param {Number} height The new height to set. This may be one of:<div class="mdetail-params"><ul>
343      * <li>A Number specifying the new height in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels).</li>
344      * <li>A String used to set the CSS height style.</li>
345      * <li><i>undefined</i> to leave the height unchanged.</li>
346      * </ul></div>
347      * @return {Ext.BoxComponent} this
348      */
349     setHeight : function(height){
350         return this.setSize(undefined, height);
351     },
352
353     <div id="method-Ext.BoxComponent-getSize"></div>/**
354      * Gets the current size of the component's underlying element.
355      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
356      */
357     getSize : function(){
358         return this.getResizeEl().getSize();
359     },
360
361     <div id="method-Ext.BoxComponent-getWidth"></div>/**
362      * Gets the current width of the component's underlying element.
363      * @return {Number}
364      */
365     getWidth : function(){
366         return this.getResizeEl().getWidth();
367     },
368
369     <div id="method-Ext.BoxComponent-getHeight"></div>/**
370      * Gets the current height of the component's underlying element.
371      * @return {Number}
372      */
373     getHeight : function(){
374         return this.getResizeEl().getHeight();
375     },
376
377     <div id="method-Ext.BoxComponent-getOuterSize"></div>/**
378      * Gets the current size of the component's underlying element, including space taken by its margins.
379      * @return {Object} An object containing the element's size {width: (element width + left/right margins), height: (element height + top/bottom margins)}
380      */
381     getOuterSize : function(){
382         var el = this.getResizeEl();
383         return {width: el.getWidth() + el.getMargins('lr'),
384                 height: el.getHeight() + el.getMargins('tb')};
385     },
386
387     <div id="method-Ext.BoxComponent-getPosition"></div>/**
388      * Gets the current XY position of the component's underlying element.
389      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
390      * @return {Array} The XY position of the element (e.g., [100, 200])
391      */
392     getPosition : function(local){
393         var el = this.getPositionEl();
394         if(local === true){
395             return [el.getLeft(true), el.getTop(true)];
396         }
397         return this.xy || el.getXY();
398     },
399
400     <div id="method-Ext.BoxComponent-getBox"></div>/**
401      * Gets the current box measurements of the component's underlying element.
402      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
403      * @return {Object} box An object in the format {x, y, width, height}
404      */
405     getBox : function(local){
406         var pos = this.getPosition(local);
407         var s = this.getSize();
408         s.x = pos[0];
409         s.y = pos[1];
410         return s;
411     },
412
413     <div id="method-Ext.BoxComponent-updateBox"></div>/**
414      * Sets the current box measurements of the component's underlying element.
415      * @param {Object} box An object in the format {x, y, width, height}
416      * @return {Ext.BoxComponent} this
417      */
418     updateBox : function(box){
419         this.setSize(box.width, box.height);
420         this.setPagePosition(box.x, box.y);
421         return this;
422     },
423
424     <div id="method-Ext.BoxComponent-getResizeEl"></div>/**
425      * <p>Returns the outermost Element of this Component which defines the Components overall size.</p>
426      * <p><i>Usually</i> this will return the same Element as <code>{@link #getEl}</code>,
427      * but in some cases, a Component may have some more wrapping Elements around its main
428      * active Element.</p>
429      * <p>An example is a ComboBox. It is encased in a <i>wrapping</i> Element which
430      * contains both the <code>&lt;input></code> Element (which is what would be returned
431      * by its <code>{@link #getEl}</code> method, <i>and</i> the trigger button Element.
432      * This Element is returned as the <code>resizeEl</code>.
433      * @return {Ext.Element} The Element which is to be resized by size managing layouts.
434      */
435     getResizeEl : function(){
436         return this.resizeEl || this.el;
437     },
438
439     <div id="method-Ext.BoxComponent-setAutoScroll"></div>/**
440      * Sets the overflow on the content element of the component.
441      * @param {Boolean} scroll True to allow the Component to auto scroll.
442      * @return {Ext.BoxComponent} this
443      */
444     setAutoScroll : function(scroll){
445         if(this.rendered){
446             this.getContentTarget().setOverflow(scroll ? 'auto' : '');
447         }
448         this.autoScroll = scroll;
449         return this;
450     },
451
452     <div id="method-Ext.BoxComponent-setPosition"></div>/**
453      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
454      * This method fires the {@link #move} event.
455      * @param {Number} left The new left
456      * @param {Number} top The new top
457      * @return {Ext.BoxComponent} this
458      */
459     setPosition : function(x, y){
460         if(x && typeof x[1] == 'number'){
461             y = x[1];
462             x = x[0];
463         }
464         this.x = x;
465         this.y = y;
466         if(!this.boxReady){
467             return this;
468         }
469         var adj = this.adjustPosition(x, y);
470         var ax = adj.x, ay = adj.y;
471
472         var el = this.getPositionEl();
473         if(ax !== undefined || ay !== undefined){
474             if(ax !== undefined && ay !== undefined){
475                 el.setLeftTop(ax, ay);
476             }else if(ax !== undefined){
477                 el.setLeft(ax);
478             }else if(ay !== undefined){
479                 el.setTop(ay);
480             }
481             this.onPosition(ax, ay);
482             this.fireEvent('move', this, ax, ay);
483         }
484         return this;
485     },
486
487     <div id="method-Ext.BoxComponent-setPagePosition"></div>/**
488      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
489      * This method fires the {@link #move} event.
490      * @param {Number} x The new x position
491      * @param {Number} y The new y position
492      * @return {Ext.BoxComponent} this
493      */
494     setPagePosition : function(x, y){
495         if(x && typeof x[1] == 'number'){
496             y = x[1];
497             x = x[0];
498         }
499         this.pageX = x;
500         this.pageY = y;
501         if(!this.boxReady){
502             return;
503         }
504         if(x === undefined || y === undefined){ // cannot translate undefined points
505             return;
506         }
507         var p = this.getPositionEl().translatePoints(x, y);
508         this.setPosition(p.left, p.top);
509         return this;
510     },
511
512     // private
513     afterRender : function(){
514         Ext.BoxComponent.superclass.afterRender.call(this);
515         if(this.resizeEl){
516             this.resizeEl = Ext.get(this.resizeEl);
517         }
518         if(this.positionEl){
519             this.positionEl = Ext.get(this.positionEl);
520         }
521         this.boxReady = true;
522         Ext.isDefined(this.autoScroll) && this.setAutoScroll(this.autoScroll);
523         this.setSize(this.width, this.height);
524         if(this.x || this.y){
525             this.setPosition(this.x, this.y);
526         }else if(this.pageX || this.pageY){
527             this.setPagePosition(this.pageX, this.pageY);
528         }
529     },
530
531     <div id="method-Ext.BoxComponent-syncSize"></div>/**
532      * Force the component's size to recalculate based on the underlying element's current height and width.
533      * @return {Ext.BoxComponent} this
534      */
535     syncSize : function(){
536         delete this.lastSize;
537         this.setSize(this.autoWidth ? undefined : this.getResizeEl().getWidth(), this.autoHeight ? undefined : this.getResizeEl().getHeight());
538         return this;
539     },
540
541     /* // protected
542      * Called after the component is resized, this method is empty by default but can be implemented by any
543      * subclass that needs to perform custom logic after a resize occurs.
544      * @param {Number} adjWidth The box-adjusted width that was set
545      * @param {Number} adjHeight The box-adjusted height that was set
546      * @param {Number} rawWidth The width that was originally specified
547      * @param {Number} rawHeight The height that was originally specified
548      */
549     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
550     },
551
552     /* // protected
553      * Called after the component is moved, this method is empty by default but can be implemented by any
554      * subclass that needs to perform custom logic after a move occurs.
555      * @param {Number} x The new x position
556      * @param {Number} y The new y position
557      */
558     onPosition : function(x, y){
559
560     },
561
562     // private
563     adjustSize : function(w, h){
564         if(this.autoWidth){
565             w = 'auto';
566         }
567         if(this.autoHeight){
568             h = 'auto';
569         }
570         return {width : w, height: h};
571     },
572
573     // private
574     adjustPosition : function(x, y){
575         return {x : x, y: y};
576     }
577 });
578 Ext.reg('box', Ext.BoxComponent);
579
580
581 <div id="cls-Ext.Spacer"></div>/**
582  * @class Ext.Spacer
583  * @extends Ext.BoxComponent
584  * <p>Used to provide a sizable space in a layout.</p>
585  * @constructor
586  * @param {Object} config
587  */
588 Ext.Spacer = Ext.extend(Ext.BoxComponent, {
589     autoEl:'div'
590 });
591 Ext.reg('spacer', Ext.Spacer);</pre>    \r
592 </body>\r
593 </html>