GridLayout.java
上传用户:haobig99
上传日期:2022-06-15
资源大小:369k
文件大小:5k
源码类别:

J2ME

开发平台:

Java

  1. /*
  2.  * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
  3.  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4.  *
  5.  * This code is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License version 2 only, as
  7.  * published by the Free Software Foundation.  Sun designates this
  8.  * particular file as subject to the "Classpath" exception as provided
  9.  * by Sun in the LICENSE file that accompanied this code.
  10.  *
  11.  * This code is distributed in the hope that it will be useful, but WITHOUT
  12.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  * version 2 for more details (a copy is included in the LICENSE file that
  15.  * accompanied this code).
  16.  *
  17.  * You should have received a copy of the GNU General Public License version
  18.  * 2 along with this work; if not, write to the Free Software Foundation,
  19.  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20.  *
  21.  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22.  * CA 95054 USA or visit www.sun.com if you need additional information or
  23.  * have any questions.
  24.  */
  25. package com.sun.lwuit.layouts;
  26. import com.sun.lwuit.Component;
  27. import com.sun.lwuit.Container;
  28. import com.sun.lwuit.geom.Dimension;
  29. import com.sun.lwuit.plaf.Style;
  30. import com.sun.lwuit.plaf.UIManager;
  31. /**
  32.  * Components are arranged in an equally sized grid based on available space
  33.  *
  34.  * @author Chen Fishbein
  35.  */
  36. public class GridLayout extends Layout{
  37.     
  38.     private int rows;
  39.     
  40.     private int columns;
  41.     
  42.     /** 
  43.      * Creates a new instance of GridLayout with the given rows and columns
  44.      * 
  45.      * @param rows - number of rows.
  46.      * @param columns - number of columns.
  47.      * @throws IllegalArgumentException if rows < 1 or columns < 1
  48.      */
  49.     public GridLayout(int rows, int columns) {
  50.         this.rows = rows;
  51.         this.columns = columns;
  52.         if(rows < 1 || columns < 1){
  53.             throw new IllegalArgumentException("rows and columns must be greater " +
  54.                     "then zero");
  55.         }
  56.     }
  57.     
  58.     /**
  59.      * @inheritDoc
  60.      */    
  61.     public void layoutContainer(Container parent) {
  62.         int width = parent.getLayoutWidth() - parent.getSideGap() - parent.getStyle().getPadding(false, Component.RIGHT) - parent.getStyle().getPadding(false, Component.LEFT);
  63.         int height = parent.getLayoutHeight() - parent.getBottomGap() - parent.getStyle().getPadding(false, Component.BOTTOM) - parent.getStyle().getPadding(false, Component.TOP);
  64.         int x = parent.getStyle().getPadding(parent.isRTL(), Component.LEFT);
  65.         int y = parent.getStyle().getPadding(false, Component.TOP);
  66.         int numOfcomponents = parent.getComponentCount();
  67.         boolean rtl = parent.isRTL();
  68.         if (rtl) {
  69.          x += parent.getSideGap();
  70.         }
  71.         int cmpWidth = (width)/columns;
  72.         int cmpHeight;
  73.         if (numOfcomponents > rows * columns) {
  74.             cmpHeight  = (height)/(numOfcomponents/columns + (numOfcomponents%columns == 0 ? 0 : 1));//actual rows number
  75.         } else {
  76.             cmpHeight  = (height)/rows;  
  77.         }
  78.         int row = 0;        
  79.         
  80.         for(int i=0; i< numOfcomponents; i++){
  81.             Component cmp = parent.getComponentAt(i);
  82.             Style cmpStyle = cmp.getStyle();
  83.             int marginLeft = cmpStyle.getMargin(parent.isRTL(), Component.LEFT);
  84.             int marginTop = cmpStyle.getMargin(false, Component.TOP);
  85.             cmp.setWidth(cmpWidth - marginLeft - cmpStyle.getMargin(parent.isRTL(), Component.RIGHT));
  86.             cmp.setHeight(cmpHeight - marginTop - cmpStyle.getMargin(false, Component.BOTTOM));
  87.             if (rtl) {
  88.              cmp.setX(x + (columns-1-(i%columns))*cmpWidth + marginLeft);
  89.             } else {
  90.              cmp.setX(x + (i%columns)*cmpWidth + marginLeft);
  91.             }
  92.             cmp.setY(y + row*cmpHeight + marginTop);
  93.             if((i + 1)%columns == 0){
  94.                 row++;
  95.             }
  96.         }
  97.     }
  98.     /**
  99.      * @inheritDoc
  100.      */    
  101.     public Dimension getPreferredSize(Container parent) {        
  102.         int width = 0;
  103.         int height = 0;
  104.         
  105.         int numOfcomponents = parent.getComponentCount();
  106.         for(int i=0; i< numOfcomponents; i++){
  107.             Component cmp = parent.getComponentAt(i);
  108.             width = Math.max(width, cmp.getPreferredW() + cmp.getStyle().getMargin(false, Component.LEFT)+ cmp.getStyle().getMargin(false, Component.RIGHT));
  109.             height = Math.max(height, cmp.getPreferredH()+ cmp.getStyle().getMargin(false, Component.TOP)+ cmp.getStyle().getMargin(false, Component.BOTTOM));
  110.         }
  111.         if(columns > 1){
  112.             width = width*columns;
  113.         }
  114.         
  115.         if(rows > 1){
  116.             if(numOfcomponents>rows*columns){ //if there are more components than planned
  117.                height =  height * (numOfcomponents/columns + (numOfcomponents%columns == 0 ? 0 : 1));
  118.             }else{
  119.                 height = height*rows;
  120.             }
  121.         }
  122.         
  123.         return new Dimension(width + parent.getStyle().getPadding(false, Component.LEFT)+ parent.getStyle().getPadding(false, Component.RIGHT),
  124.             height + parent.getStyle().getPadding(false, Component.TOP)+ parent.getStyle().getPadding(false, Component.BOTTOM));
  125.     }
  126.     
  127. }