BoxComponent.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:22k
源码类别:

JavaScript

开发平台:

JavaScript

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