RowLayout.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:5k
源码类别:

中间件编程

开发平台:

JavaScript

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