All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.awt.GridBagLayout Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*

NOTICE


(c) 2005-2007 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below. For example, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative, as opposed to normative, use. The file and any files generated from it may be used to generate other informative documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. The file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 217: Personal Basis Profile 1.1. In the event of a discrepency between this work and the JSR 217 specification, which is available at http://www.jcp.org/en/jsr/detail?id=217, the latter takes precedence. */ package java.awt; import java.util.Hashtable; import java.util.Vector; /** * The GridBagLayout class is a flexible layout * manager that aligns components vertically and horizontally, * without requiring that the components be of the same size. * Each GridBagLayout object maintains a dynamic, * rectangular grid of cells, with each component occupying * one or more cells, called its display area. *

* Each component managed by a GridBagLayout is associated with * an instance of {@link GridBagConstraints}. The constraints object * specifies where a component's display area should be located on the grid * and how the component should be positioned within its display area. In * addition to its constraints object, the GridBagLayout also * considers each component's minimum and preferred sizes in order to * determine a component's size. *

* * * Grid coordinate (0,0) is in the upper left corner of the * container with x increasing to the right and y increasing downward. *

* To use a grid bag layout effectively, you must customize one or more * of the GridBagConstraints objects that are associated * with its components. You customize a GridBagConstraints * object by setting one or more of its instance variables: *

* * *

*
{@link GridBagConstraints#gridx}, * {@link GridBagConstraints#gridy} *
Specifies the cell at the upper left of the component's * display area, where the cell at the origin of the grid has address * gridx = 0, * gridy = 0. * Use GridBagConstraints.RELATIVE (the default value) * to specify that the component be placed immediately following * (along the x axis for gridx or the y axis for * gridy) the component that was added to the container * just before this component was added. *
{@link GridBagConstraints#gridwidth}, * {@link GridBagConstraints#gridheight} *
Specifies the number of cells in a row (for gridwidth) * or column (for gridheight) * in the component's display area. * The default value is 1. * Use GridBagConstraints.REMAINDER to specify * that the component be the last one in its row (for gridwidth) * or column (for gridheight). * Use GridBagConstraints.RELATIVE to specify * that the component be the next to last one * in its row (for gridwidth) * or column (for gridheight). *
{@link GridBagConstraints#fill} *
Used when the component's display area * is larger than the component's requested size * to determine whether (and how) to resize the component. * Possible values are * GridBagConstraints.NONE (the default), * GridBagConstraints.HORIZONTAL * (make the component wide enough to fill its display area * horizontally, but don't change its height), * GridBagConstraints.VERTICAL * (make the component tall enough to fill its display area * vertically, but don't change its width), and * GridBagConstraints.BOTH * (make the component fill its display area entirely). *
{@link GridBagConstraints#ipadx}, * {@link GridBagConstraints#ipady} *
Specifies the component's internal padding within the layout, * how much to add to the minimum size of the component. * The width of the component will be at least its minimum width * plus (ipadx * 2) pixels (since the padding * applies to both sides of the component). Similarly, the height of * the component will be at least the minimum height plus * (ipady * 2) pixels. *
{@link GridBagConstraints#insets} *
Specifies the component's external padding, the minimum * amount of space between the component and the edges of its display area. * * *
{@link GridBagConstraints#anchor} *
Used when the component is smaller than its display area * to determine where (within the display area) to place the component. * *

* Valid values are:

*

*

* * * * * * * * * * * * * * * * *
*
  • GridBagConstraints.NORTH
  • *
  • GridBagConstraints.SOUTH
  • *
  • GridBagConstraints.WEST
  • *
  • GridBagConstraints.EAST
  • *
  • GridBagConstraints.NORTHWEST
  • *
  • GridBagConstraints.NORTHEAST
  • *
  • GridBagConstraints.SOUTHWEST
  • *
  • GridBagConstraints.SOUTHEAST
  • *
  • GridBagConstraints.CENTER (the default)
  • *

    *

    {@link GridBagConstraints#weightx}, * {@link GridBagConstraints#weighty} *
    Used to determine how to distribute space, which is * important for specifying resizing behavior. * Unless you specify a weight for at least one component * in a row (weightx) and column (weighty), * all the components clump together in the center of their container. * This is because when the weight is zero (the default), * the GridBagLayout object puts any extra space * between its grid of cells and the edges of the container. *
    *

    * * * * The following figure shows ten components (all buttons) managed by a grid bag layout: *

    *

    * * * * *
    * The preceeding text describes this graphic (Figure 1). *
    *

    * Each of the ten components has the fill field * of its associated GridBagConstraints object * set to GridBagConstraints.BOTH. * In addition, the components have the following non-default constraints: *

    *

      *
    • Button1, Button2, Button3: weightx = 1.0 *
    • Button4: weightx = 1.0, * gridwidth = GridBagConstraints.REMAINDER *
    • Button5: gridwidth = GridBagConstraints.REMAINDER *
    • Button6: gridwidth = GridBagConstraints.RELATIVE *
    • Button7: gridwidth = GridBagConstraints.REMAINDER *
    • Button8: gridheight = 2, * weighty = 1.0 *
    • Button9, Button 10: * gridwidth = GridBagConstraints.REMAINDER *
    *

    * *

    Note: The following code example includes classes that do * not appear in this specification. Their inclusion is purely to * serve as a demonstration.

    * * * Here is the code that implements the example shown above: *

    *


     * import java.awt.*;
     * import java.util.*;
     * import java.applet.Applet;
     *
     * public class GridBagEx1 extends Applet {
     *
     *     protected void makebutton(String name,
     *                               GridBagLayout gridbag,
     *                               GridBagConstraints c) {
     *         Button button = new Button(name);
     *         gridbag.setConstraints(button, c);
     *         add(button);
     *     }
     *
     *     public void init() {
     *         GridBagLayout gridbag = new GridBagLayout();
     *         GridBagConstraints c = new GridBagConstraints();
     *
     *         setFont(new Font("Helvetica", Font.PLAIN, 14));
     *         setLayout(gridbag);
     *
     *         c.fill = GridBagConstraints.BOTH;
     *         c.weightx = 1.0;
     *         makebutton("Button1", gridbag, c);
     *         makebutton("Button2", gridbag, c);
     *         makebutton("Button3", gridbag, c);
     *
     *     	   c.gridwidth = GridBagConstraints.REMAINDER; //end row
     *         makebutton("Button4", gridbag, c);
     *
     *         c.weightx = 0.0;		   //reset to the default
     *         makebutton("Button5", gridbag, c); //another row
     *
     * 	   c.gridwidth = GridBagConstraints.RELATIVE; //next-to-last in row
     *         makebutton("Button6", gridbag, c);
     *
     * 	   c.gridwidth = GridBagConstraints.REMAINDER; //end row
     *         makebutton("Button7", gridbag, c);
     *
     * 	   c.gridwidth = 1;	   	   //reset to the default
     * 	   c.gridheight = 2;
     *         c.weighty = 1.0;
     *         makebutton("Button8", gridbag, c);
     *
     *         c.weighty = 0.0;		   //reset to the default
     * 	   c.gridwidth = GridBagConstraints.REMAINDER; //end row
     * 	   c.gridheight = 1;		   //reset to the default
     *         makebutton("Button9", gridbag, c);
     *         makebutton("Button10", gridbag, c);
     *
     *         setSize(300, 100);
     *     }
     *
     *     public static void main(String args[]) {
     * 	   Frame f = new Frame("GridBag Layout Example");
     * 	   GridBagEx1 ex1 = new GridBagEx1();
     *
     * 	   ex1.init();
     *
     * 	   f.add("Center", ex1);
     * 	   f.pack();
     * 	   f.setSize(f.getPreferredSize());
     * 	   f.show();
     *     }
     * }
     * 

    *

    * @version 1.5, 16 Nov 1995 * @author Doug Stein * @see java.awt.GridBagConstraints * @since JDK1.0 */ // PBP/PP: 6187232 // * @see java.awt.ComponentOrientation public class GridBagLayout implements LayoutManager2, java.io.Serializable { /** * The maximum number of grid positions (both horizontally and * vertically) that can be laid out by the grid bag layout. */ protected static final int MAXGRIDSIZE = 512; /** * The smallest grid that can be laid out by the grid bag layout. */ protected static final int MINSIZE = 1; /** * The preferred grid size that can be laid out by the grid bag layout. */ protected static final int PREFERREDSIZE = 2; /** * This hashtable maintains the association between * a component and its gridbag constraints. * The Keys in comptable are the components and the * values are the instances of GridBagConstraints. * * @serial * @see java.awt.GridBagConstraints */ protected Hashtable comptable; /** * This field holds a gridbag constraints instance * containing the default values, so if a component * does not have gridbag constraints associated with * it, then the component will be assigned a * copy of the defaultConstraints. * * @serial * @see #getConstraints(Component) * @see #setConstraints(Component, GridBagConstraints) * @see #lookupConstraints(Component) */ protected GridBagConstraints defaultConstraints; // /** // * This field holds the layout information // * for the gridbag. The information in this field // * is based on the most recent validation of the // * gridbag. // * If layoutInfo is null // * this indicates that there are no components in // * the gridbag or if there are components, they have // * not yet been validated. // * // * @serial // * @see #getLayoutInfo(Container, int) // */ // protected GridBagLayoutInfo layoutInfo; /** * This field holds the overrides to the column minimum * width. If this field is non-null the values are * applied to the gridbag after all of the minimum columns * widths have been calculated. * If columnWidths has more elements than the number of * columns, columns are added to the gridbag to match * the number of elements in columnWidth. * * @serial * @see #getLayoutDimensions() */ public int[] columnWidths; /** * This field holds the overrides to the row minimum * heights. If this field is non-null the values are * applied to the gridbag after all of the minimum row * heights have been calculated. * If rowHeights has more elements than the number of * rows, rowa are added to the gridbag to match * the number of elements in rowHeights. * * @serial * @see #getLayoutDimensions() */ public int[] rowHeights; /** * This field holds the overrides to the column weights. * If this field is non-null the values are * applied to the gridbag after all of the columns * weights have been calculated. * If columnWeights[i] > weight for column i, then * column i is assigned the weight in columnWeights[i]. * If columnWeights has more elements than the number * of columns, the excess elements are ignored - they do * not cause more columns to be created. * * @serial */ public double[] columnWeights; /** * This field holds the overrides to the row weights. * If this field is non-null the values are * applied to the gridbag after all of the rows * weights have been calculated. * If rowWeights[i] > weight for row i, then * row i is assigned the weight in rowWeights[i]. * If rowWeights has more elements than the number * of rows, the excess elements are ignored - they do * not cause more rows to be created. * * @serial */ public double[] rowWeights; /** * Creates a grid bag layout manager. */ public GridBagLayout() { } /** * Sets the constraints for the specified component in this layout. * @param comp the component to be modified * @param constraints the constraints to be applied */ public void setConstraints(Component comp, GridBagConstraints constraints) { } /** * Gets the constraints for the specified component. A copy of * the actual GridBagConstraints object is returned. * @param comp the component to be queried * @return the constraint for the specified component in this * grid bag layout; a copy of the actual constraint * object is returned */ public GridBagConstraints getConstraints(Component comp) { return null; } /** * Retrieves the constraints for the specified component. * The return value is not a copy, but is the actual * GridBagConstraints object used by the layout mechanism. * @param comp the component to be queried * @return the contraints for the specified component */ protected GridBagConstraints lookupConstraints(Component comp) { return null; } // PBP/PP /** * Determines the origin of the layout area, in the graphics coordinate * space of the target container. This * is distinct from the grid origin given by the cell coordinates (0,0). * Most applications do not call this method directly. * @return the graphics origin of the cell in the top-left * corner of the layout grid * @since JDK1.1 */ // * @see java.awt.ComponentOrientation public Point getLayoutOrigin() { return null; } /** * Determines column widths and row heights for the layout grid. *

    * Most applications do not call this method directly. * @return an array of two arrays, containing the widths * of the layout columns and * the heights of the layout rows * @since JDK1.1 */ public int[][] getLayoutDimensions() { return null; } /** * Determines the weights of the layout grid's columns and rows. * Weights are used to calculate how much a given column or row * stretches beyond its preferred size, if the layout has extra * room to fill. *

    * Most applications do not call this method directly. * @return an array of two arrays, representing the * horizontal weights of the layout columns * and the vertical weights of the layout rows * @since JDK1.1 */ public double[][] getLayoutWeights() { return null; } // PBP/PP 6187232 /** * Determines which cell in the layout grid contains the point * specified by (x, y). Each cell is identified * by its column index (ranging from 0 to the number of columns * minus 1) and its row index (ranging from 0 to the number of * rows minus 1). *

    * If the (x, y) point lies * outside the grid, the following rules are used. * The column index is returned as zero if x lies to the * left of the layout, and as the number of columns if x lies * to the right of the layout. The row index is returned as zero * if y lies above the layout, * and as the number of rows if y lies * below the layout. * @param x the x coordinate of a point * @param y the y coordinate of a point * @return an ordered pair of indexes that indicate which cell * in the layout grid contains the point * (xy). * @since JDK1.1 */ // * @see java.awt.ComponentOrientation public Point location(int x, int y) {return null; } /** * Adds the specified component with the specified name to the layout. * @param name the name of the component * @param comp the component to be added */ public void addLayoutComponent(String name, Component comp) { } /** * Adds the specified component to the layout, using the specified * constraints object. Note that constraints * are mutable and are, therefore, cloned when cached. * * @param comp the component to be added * @param constraints an object that determines how * the component is added to the layout * @exception IllegalArgumentException if constraints * is not a GridBagConstraint */ public void addLayoutComponent(Component comp, Object constraints) { } /** * Removes the specified component from this layout. *

    * Most applications do not call this method directly. * @param comp the component to be removed. * @see java.awt.Container#remove(java.awt.Component) * @see java.awt.Container#removeAll() */ public void removeLayoutComponent(Component comp) { } /** * Determines the preferred size of the parent * container using this grid bag layout. *

    * Most applications do not call this method directly. * * @param parent the container in which to do the layout * @see java.awt.Container#getPreferredSize * @return the preferred size of the parent * container */ public Dimension preferredLayoutSize(Container parent) { return null; } /** * Determines the minimum size of the parent container * using this grid bag layout. *

    * Most applications do not call this method directly. * @param parent the container in which to do the layout * @see java.awt.Container#doLayout * @return the minimum size of the parent container */ public Dimension minimumLayoutSize(Container parent) { return null; } /** * Returns the maximum dimensions for this layout given the components * in the specified target container. * @param target the container which needs to be laid out * @see Container * @see #minimumLayoutSize(Container) * @see #preferredLayoutSize(Container) * @return the maximum dimensions for this layout */ public Dimension maximumLayoutSize(Container target) { return null; } /** * Returns the alignment along the x axis. This specifies how * the component would like to be aligned relative to other * components. The value should be a number between 0 and 1 * where 0 represents alignment along the origin, 1 is aligned * the furthest away from the origin, 0.5 is centered, etc. *

    * @return the value 0.5f to indicate centered */ public float getLayoutAlignmentX(Container parent) { return 0; } /** * Returns the alignment along the y axis. This specifies how * the component would like to be aligned relative to other * components. The value should be a number between 0 and 1 * where 0 represents alignment along the origin, 1 is aligned * the furthest away from the origin, 0.5 is centered, etc. *

    * @return the value 0.5f to indicate centered */ public float getLayoutAlignmentY(Container parent) { return 0; } /** * Invalidates the layout, indicating that if the layout manager * has cached information it should be discarded. */ public void invalidateLayout(Container target) { } /** * Lays out the specified container using this grid bag layout. * This method reshapes components in the specified container in * order to satisfy the contraints of this GridBagLayout * object. *

    * Most applications do not call this method directly. * @param parent the container in which to do the layout * @see java.awt.Container * @see java.awt.Container#doLayout */ public void layoutContainer(Container parent) { } /** * Returns a string representation of this grid bag layout's values. * @return a string representation of this grid bag layout. */ public String toString() { return null; } // /** // * Fills in an instance of GridBagLayoutInfo for the // * current set of managed children. This requires three passes through the // * set of children: // * // *

      // *
    1. Figure out the dimensions of the layout grid. // *
    2. Determine which cells the components occupy. // *
    3. Distribute the weights and min sizes amoung the rows/columns. // *
    // * // * This also caches the minsizes for all the children when they are // * first encountered (so subsequent loops don't need to ask again). // * @param parent the layout container // * @param sizeflag either PREFERREDSIZE or // * MINSIZE // * @return the GridBagLayoutInfo for the set of children // * @since 1.4 // */ // protected GridBagLayoutInfo getLayoutInfo(Container parent, int sizeflag) // { } // // /** // * This method is obsolete and supplied for backwards // * compatability only; new code should call {@link // * #getLayoutInfo(Container, int) getLayoutInfo} instead. // */ // protected GridBagLayoutInfo GetLayoutInfo(Container parent, int sizeflag) // { } /** * Adjusts the x, y, width, and height fields to the correct * values depending on the constraint geometry and pads. * @param constraints the constraints to be applied * @param r the Rectangle to be adjusted * @since 1.4 */ protected void adjustForGravity(GridBagConstraints constraints, Rectangle r) { } /** * This method is obsolete and supplied for backwards * compatability only; new code should call {@link * #adjustForGravity(GridBagConstraints, Rectangle) * adjustForGravity} instead. */ protected void AdjustForGravity(GridBagConstraints constraints, Rectangle r) { } // /** // * Figures out the minimum size of the // * master based on the information from getLayoutInfo(). // * @param parent the layout container // * @param info the layout info for this parent // * @return a Dimension object containing the // * minimum size // * @since 1.4 // */ // protected Dimension getMinSize(Container parent, GridBagLayoutInfo info) { } // // /** // * This method is obsolete and supplied for backwards // * compatability only; new code should call {@link // * #getMinSize(Container, GridBagLayoutInfo) getMinSize} instead. // */ // protected Dimension GetMinSize(Container parent, GridBagLayoutInfo info) { } // /** * Lays out the grid. * @param parent the layout container * @since 1.4 */ protected void arrangeGrid(Container parent) { } /** * This method is obsolete and supplied for backwards * compatability only; new code should call {@link * #arrangeGrid(Container) arrangeGrid} instead. */ protected void ArrangeGrid(Container parent) { } // Added for serial backwards compatability (4348425) static final long serialVersionUID = 8838754796412211005L; }




    © 2015 - 2024 Weber Informatics LLC | Privacy Policy