/* * @(#)ShapeGraphicAttribute.java 1.15 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ /* * (C) Copyright Taligent, Inc. 1996 - 1997, All Rights Reserved * (C) Copyright IBM Corp. 1996 - 1998, All Rights Reserved * * The original version of this source code and documentation is * copyrighted and owned by Taligent, Inc., a wholly-owned subsidiary * of IBM. These materials are provided under terms of a License * Agreement between Taligent and Sun. This technology is protected * by multiple US and International patents. * * This notice and attribution to Taligent may not be removed. * Taligent is a registered trademark of Taligent, Inc. * */ package java.awt.font; import java.awt.Shape; import java.awt.Graphics; import java.awt.Rectangle; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; /** * The ShapeGraphicAttribute class is an implementation of * {@link GraphicAttribute} that draws shapes in a {@link TextLayout}. * @see GraphicAttribute */ public final class ShapeGraphicAttribute extends GraphicAttribute { private Shape fShape; private boolean fStroke; /** * A key indicating the shape should be stroked with a 1-pixel wide stroke. */ public static final boolean STROKE = true; /** * A key indicating the shape should be filled. */ public static final boolean FILL = false; // cache shape bounds, since GeneralPath doesn't private Rectangle2D fShapeBounds; /** * Constructs a ShapeGraphicAttribute for the specified * {@link Shape}. * @param shape the Shape to render. The * Shape is rendered with its origin at the origin of * this ShapeGraphicAttribute in the * host TextLayout. This object maintains a reference to * shape. * @param alignment one of the alignments from this * ShapeGraphicAttribute. * @param stroke true if the Shape should be * stroked; false if the Shape should be * filled. */ public ShapeGraphicAttribute(Shape shape, int alignment, boolean stroke) { super(alignment); fShape = shape; fStroke = stroke; fShapeBounds = fShape.getBounds2D(); } /** * Returns the ascent of this ShapeGraphicAttribute. The * ascent of a ShapeGraphicAttribute is the positive * distance from the origin of its Shape to the top of * bounds of its Shape. * @return the ascent of this ShapeGraphicAttribute. */ public float getAscent() { return (float) Math.max(0, -fShapeBounds.getMinY()); } /** * Returns the descent of this ShapeGraphicAttribute. * The descent of a ShapeGraphicAttribute is the distance * from the origin of its Shape to the bottom of the * bounds of its Shape. * @return the descent of this ShapeGraphicAttribute. */ public float getDescent() { return (float) Math.max(0, fShapeBounds.getMaxY()); } /** * Returns the advance of this ShapeGraphicAttribute. * The advance of a ShapeGraphicAttribute is the distance * from the origin of its Shape to the right side of the * bounds of its Shape. * @return the advance of this ShapeGraphicAttribute. */ public float getAdvance() { return (float) Math.max(0, fShapeBounds.getMaxX()); } /** * Draws the graphic at the given location. The Shape * is drawn with its origin at (x, y). * @param graphics the {@link Graphics2D} into which to draw the * graphic * @param x, y the user space coordinates where the graphic is * drawn */ public void draw(Graphics2D graphics, float x, float y) { // translating graphics to draw Shape !!! graphics.translate((int)x, (int)y); try { if (fStroke == STROKE) { // REMIND: set stroke to correct size graphics.draw(fShape); } else { graphics.fill(fShape); } } finally { graphics.translate(-(int)x, -(int)y); } } /** * Returns a {@link Rectangle2D} that encloses all of the * bits drawn by this ShapeGraphicAttribute relative to * the rendering position. A graphic can be rendered beyond its * origin, ascent, descent, or advance; but if it does, this method's * implementation should indicate where the graphic is rendered. * @return a Rectangle2D that encloses all of the bits * rendered by this ShapeGraphicAttribute. */ public Rectangle2D getBounds() { Rectangle2D.Float bounds = new Rectangle2D.Float(); bounds.setRect(fShapeBounds); if (fStroke == STROKE) { ++bounds.width; ++bounds.height; } return bounds; } /** * Returns a hashcode for this ShapeGraphicAttribute. * @return a hash code value for this * ShapeGraphicAttribute. */ public int hashCode() { return fShape.hashCode(); } /** * Compares this ShapeGraphicAttribute to the specified * Object. * @param rhs the Object to compare for equality * @return true if this * ShapeGraphicAttribute equals rhs; * false otherwise. */ public boolean equals(Object rhs) { try { return equals((ShapeGraphicAttribute) rhs); } catch(ClassCastException e) { return false; } } /** * Compares this ShapeGraphicAttribute to the specified * ShapeGraphicAttribute. * @param rhs the ShapeGraphicAttribute to compare for * equality * @return true if this * ShapeGraphicAttribute equals rhs; * false otherwise. */ public boolean equals(ShapeGraphicAttribute rhs) { if (rhs == null) { return false; } if (this == rhs) { return true; } if (fStroke != rhs.fStroke) { return false; } if (getAlignment() != rhs.getAlignment()) { return false; } if (!fShape.equals(rhs.fShape)) { return false; } return true; } }