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

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.layout.ColumnLayout
  3.  * @extends Ext.layout.ContainerLayout
  4.  * <p>This is the layout style of choice for creating structural layouts in a multi-column format where the width of
  5.  * each column can be specified as a percentage or fixed width, but the height is allowed to vary based on the content.
  6.  * This class is intended to be extended or created via the layout:'column' {@link Ext.Container#layout} config,
  7.  * and should generally not need to be created directly via the new keyword.</p>
  8.  * <p>ColumnLayout does not have any direct config options (other than inherited ones), but it does support a
  9.  * specific config property of <b><tt>columnWidth</tt></b> that can be included in the config of any panel added to it.  The
  10.  * layout will use the columnWidth (if present) or width of each panel during layout to determine how to size each panel.
  11.  * If width or columnWidth is not specified for a given panel, its width will default to the panel's width (or auto).</p>
  12.  * <p>The width property is always evaluated as pixels, and must be a number greater than or equal to 1.
  13.  * The columnWidth property is always evaluated as a percentage, and must be a decimal value greater than 0 and
  14.  * less than 1 (e.g., .25).</p>
  15.  * <p>The basic rules for specifying column widths are pretty simple.  The logic makes two passes through the
  16.  * set of contained panels.  During the first layout pass, all panels that either have a fixed width or none
  17.  * specified (auto) are skipped, but their widths are subtracted from the overall container width.  During the second
  18.  * pass, all panels with columnWidths are assigned pixel widths in proportion to their percentages based on
  19.  * the total <b>remaining</b> container width.  In other words, percentage width panels are designed to fill the space
  20.  * left over by all the fixed-width and/or auto-width panels.  Because of this, while you can specify any number of columns
  21.  * with different percentages, the columnWidths must always add up to 1 (or 100%) when added together, otherwise your
  22.  * layout may not render as expected.  Example usage:</p>
  23.  * <pre><code>
  24. // All columns are percentages -- they must add up to 1
  25. var p = new Ext.Panel({
  26.     title: 'Column Layout - Percentage Only',
  27.     layout:'column',
  28.     items: [{
  29.         title: 'Column 1',
  30.         columnWidth: .25
  31.     },{
  32.         title: 'Column 2',
  33.         columnWidth: .6
  34.     },{
  35.         title: 'Column 3',
  36.         columnWidth: .15
  37.     }]
  38. });
  39. // Mix of width and columnWidth -- all columnWidth values must add up
  40. // to 1. The first column will take up exactly 120px, and the last two
  41. // columns will fill the remaining container width.
  42. var p = new Ext.Panel({
  43.     title: 'Column Layout - Mixed',
  44.     layout:'column',
  45.     items: [{
  46.         title: 'Column 1',
  47.         width: 120
  48.     },{
  49.         title: 'Column 2',
  50.         columnWidth: .8
  51.     },{
  52.         title: 'Column 3',
  53.         columnWidth: .2
  54.     }]
  55. });
  56. </code></pre>
  57.  */
  58. Ext.layout.ColumnLayout = Ext.extend(Ext.layout.ContainerLayout, {
  59.     // private
  60.     monitorResize:true,
  61.     extraCls: 'x-column',
  62.     scrollOffset : 0,
  63.     // private
  64.     targetCls: 'x-column-layout-ct',
  65.     isValidParent : function(c, target){
  66.         return c.getPositionEl().dom.parentNode == this.innerCt.dom;
  67.     },
  68.     // private
  69.     onLayout : function(ct, target){
  70.         var cs = ct.items.items, len = cs.length, c, i;
  71.         if(!this.innerCt){
  72.             // the innerCt prevents wrapping and shuffling while
  73.             // the container is resizing
  74.             this.innerCt = target.createChild({cls:'x-column-inner'});
  75.             this.innerCt.createChild({cls:'x-clear'});
  76.         }
  77.         this.renderAll(ct, this.innerCt);
  78.         var size = target.getViewSize(true);
  79.         if(size.width < 1 && size.height < 1){ // display none?
  80.             return;
  81.         }
  82.         var w = size.width - this.scrollOffset,
  83.             h = size.height,
  84.             pw = w;
  85.         this.innerCt.setWidth(w);
  86.         // some columns can be percentages while others are fixed
  87.         // so we need to make 2 passes
  88.         for(i = 0; i < len; i++){
  89.             c = cs[i];
  90.             if(!c.columnWidth){
  91.                 pw -= (c.getSize().width + c.getPositionEl().getMargins('lr'));
  92.             }
  93.         }
  94.         pw = pw < 0 ? 0 : pw;
  95.         for(i = 0; i < len; i++){
  96.             c = cs[i];
  97.             if(c.columnWidth){
  98.                 c.setSize(Math.floor(c.columnWidth * pw) - c.getPositionEl().getMargins('lr'));
  99.             }
  100.         }
  101.     }
  102.     /**
  103.      * @property activeItem
  104.      * @hide
  105.      */
  106. });
  107. Ext.Container.LAYOUTS['column'] = Ext.layout.ColumnLayout;