A layout manager that displays a single component in the center of its container. : Customized Layout « Swing JFC « Java






A layout manager that displays a single component in the center of its container.

  
 
/*
 * JCommon : a free general purpose class library for the Java(tm) platform
 *
 *
 * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
 * 
 * Project Info:  http://www.jfree.org/jcommon/index.html
 *
 * This library is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU Lesser General Public License as published by 
 * the Free Software Foundation; either version 2.1 of the License, or 
 * (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
 * USA.  
 *
 * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
 * in the United States and other countries.]
 * 
 * -----------------
 * CenterLayout.java
 * -----------------
 * (C) Copyright 2000-2005, by Object Refinery Limited.
 *
 * Original Author:  David Gilbert (for Object Refinery Limited);
 * Contributor(s):   -;
 *
 * $Id: CenterLayout.java,v 1.6 2005/11/16 15:58:40 taqua Exp $
 *
 * Changes (from 5-Nov-2001)
 * -------------------------
 * 05-Nov-2001 : Changed package to com.jrefinery.layout.* (DG);
 * 10-Oct-2002 : Fixed errors reported by Checkstyle (DG);
 *
 */

import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Insets;
import java.awt.LayoutManager;
import java.io.Serializable;

/**
 * A layout manager that displays a single component in the center of its
 * container.
 * 
 * @author David Gilbert
 */
public class CenterLayout implements LayoutManager, Serializable {

  /** For serialization. */
  private static final long serialVersionUID = 469319532333015042L;

  /**
   * Creates a new layout manager.
   */
  public CenterLayout() {
  }

  /**
   * Returns the preferred size.
   * 
   * @param parent
   *          the parent.
   * 
   * @return the preferred size.
   */
  public Dimension preferredLayoutSize(final Container parent) {

    synchronized (parent.getTreeLock()) {
      final Insets insets = parent.getInsets();
      if (parent.getComponentCount() > 0) {
        final Component component = parent.getComponent(0);
        final Dimension d = component.getPreferredSize();
        return new Dimension((int) d.getWidth() + insets.left + insets.right, (int) d.getHeight()
            + insets.top + insets.bottom);
      } else {
        return new Dimension(insets.left + insets.right, insets.top + insets.bottom);
      }
    }

  }

  /**
   * Returns the minimum size.
   * 
   * @param parent
   *          the parent.
   * 
   * @return the minimum size.
   */
  public Dimension minimumLayoutSize(final Container parent) {

    synchronized (parent.getTreeLock()) {
      final Insets insets = parent.getInsets();
      if (parent.getComponentCount() > 0) {
        final Component component = parent.getComponent(0);
        final Dimension d = component.getMinimumSize();
        return new Dimension(d.width + insets.left + insets.right, d.height + insets.top
            + insets.bottom);
      } else {
        return new Dimension(insets.left + insets.right, insets.top + insets.bottom);
      }
    }

  }

  /**
   * Lays out the components.
   * 
   * @param parent
   *          the parent.
   */
  public void layoutContainer(final Container parent) {

    synchronized (parent.getTreeLock()) {
      if (parent.getComponentCount() > 0) {
        final Insets insets = parent.getInsets();
        final Dimension parentSize = parent.getSize();
        final Component component = parent.getComponent(0);
        final Dimension componentSize = component.getPreferredSize();
        final int xx = insets.left
            + (Math.max((parentSize.width - insets.left - insets.right - componentSize.width) / 2,
                0));
        final int yy = insets.top
            + (Math.max(
                (parentSize.height - insets.top - insets.bottom - componentSize.height) / 2, 0));
        component.setBounds(xx, yy, componentSize.width, componentSize.height);
      }
    }

  }

  /**
   * Not used.
   * 
   * @param comp
   *          the component.
   */
  public void addLayoutComponent(final Component comp) {
    // not used.
  }

  /**
   * Not used.
   * 
   * @param comp
   *          the component.
   */
  public void removeLayoutComponent(final Component comp) {
    // not used
  }

  /**
   * Not used.
   * 
   * @param name
   *          the component name.
   * @param comp
   *          the component.
   */
  public void addLayoutComponent(final String name, final Component comp) {
    // not used
  }

  /**
   * Not used.
   * 
   * @param name
   *          the component name.
   * @param comp
   *          the component.
   */
  public void removeLayoutComponent(final String name, final Component comp) {
    // not used
  }

}

   
    
  








Related examples in the same category

1.Custom layout: EdgeLayout
2.Customized layout managerCustomized layout manager
3.ColumnLayoutColumnLayout
4.Applet GUI demo of TreeLayout layout manager
5.Relative Layout Manager for Java J2SE
6.Basically two (or more) columns of different, but constant, widths
7.GraphPaperLayoutGraphPaperLayout
8.Table Layout
9.Table Layout implements LayoutManager2
10.Table layout manager
11.Flex Layout
12.Square Layout
13.Center Layout
14.Wrapper Layout
15.Tile Layout
16.Custom Layout DemoCustom Layout Demo
17.X Y Layout
18.DividerLayout is layout that divides two components with the column of actions
19.Stack Layout, uses an orientation to determine if the contents should be arranged horizontally or vertically.
20.A simple layoutmanager to overlay all components of a parent.
21.A layout manager that spaces components over six columns in seven different formats.
22.Compents are laid out in a circle.
23.Special simple layout used in TabbedContainer
24.Place components at exact locations (x, y, width, height) and then determine how they behave when the window containing them (their parent) is resized
25.Specialised layout manager for a grid of components.