/* TitledBorder.java -- Copyright (C) 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath 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 General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package javax.swing.border; import java.awt.Color; import java.awt.Component; import java.awt.Dimension; import java.awt.Font; import java.awt.Graphics; import java.awt.Insets; public class TitledBorder extends AbstractBorder { public static final int ABOVE_BOTTOM = 4; public static final int ABOVE_TOP = 1; public static final int BELOW_BOTTOM = 6; public static final int BELOW_TOP = 3; public static final int BOTTOM = 5; public static final int CENTER = 2; public static final int DEFAULT_JUSTIFICATION = 0; public static final int DEFAULT_POSITION = 0; public static final int LEADING = 4; public static final int LEFT = 1; public static final int RIGHT = 3; public static final int TOP = 2; public static final int TRAILING = 5; protected static final int EDGE_SPACING = 2; protected static final int TEXT_INSET_H = 5; protected static final int TEXT_SPACING = 2; protected Border border; protected String title; protected Color titleColor; protected Font titleFont; protected int titleJustification; protected int titlePosition; private static Border defaultBorder = new BorderUIRessource (); private static Font defaultFont = new FontUIRessource ("Dialog", BOLD, 12); private static Color defaultColor = new ColorUIRessource (Color.black); public TitledBorder (String title) { this (defaultBorder, title, DEFAULT_JUSTIFICATION, DEFAULT_POSITION, defaultFont, defaultColor); } public TitledBorder (Border border) { this (border, "", DEFAULT_JUSTIFICATION, DEFAULT_POSITION, defaultFont, defaultColor); } public TitledBorder (Border border, String title) { this (border, title, DEFAULT_JUSTIFICATION, DEFAULT_POSITION, defaultFont, defaultColor); } public TitledBorder (Border border, String title, int titleJustification, int titlePosition) { this (border, title, titleJustification, titlePosition, defaultFont, defaultColor); } public TitledBorder (Border border, String title, int titleJustification, int titlePosition, Font titleFont) { this (border, title, titleJustification, titlePosition, titleFont, defaultColor); } public TitledBorder (Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor) { this.border = border; this.title = title; this.titleJustification = titleJustification; this.titlePosition = titlePosition; this.titleFont = titleFont; this.titleColor = titleColor; } public Insets getBorderInsets(Component c, Insets s) { s.left = s.right = s.top = s.bottom = 5; return s; } public boolean isBorderOpaque() { return false; } public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { } }