ShapeGraphicAttribute.java 5.22 KB
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/* ShapeGraphicAttribute.java
   Copyright (C) 2003 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., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 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 java.awt.font;

import java.awt.Graphics2D;
import java.awt.Shape;
import java.awt.geom.Rectangle2D;

45 46
/**
 * This is an implementation of GraphicAttribute that draws shapes in a TextLayout.
47
 *
48 49
 * @author Lillian Angel (langel at redhat dot com)
 */
Tom Tromey committed
50 51
public final class ShapeGraphicAttribute extends GraphicAttribute
{
52
  /** True if the shape should be filled. */
Tom Tromey committed
53
  public static final boolean FILL = false;
54

55
  /** True if the shape should be stroked with a 1-pixel wide stroke. */
Tom Tromey committed
56 57 58 59
  public static final boolean STROKE = true;

  private Shape shape;
  private boolean stroke;
60
  private Rectangle2D bounds;
61

62 63
  /**
   * Constructor.
64
   *
65 66 67 68 69 70
   * @param shape - the Shape to render. The Shape is rendered with its origin.
   * @param alignment - the alignment
   * @param stroke - true if the Shape should be stroked; false if the Shape
   *          should be filled.
   */
  public ShapeGraphicAttribute(Shape shape, int alignment, boolean stroke)
Tom Tromey committed
71
  {
72
    super(alignment);
Tom Tromey committed
73 74
    this.shape = shape;
    this.stroke = stroke;
75
    this.bounds = shape.getBounds2D();
Tom Tromey committed
76 77
  }

78 79
  /**
   * Draws the graphic at the given location.
80
   *
81 82 83 84 85
   * @param graphics - the graphics to use.
   * @param x - the x location to draw at.
   * @param y - the y location to draw at.
   */
  public void draw(Graphics2D graphics, float x, float y)
Tom Tromey committed
86
  {
87 88 89 90 91 92
    graphics.translate(x, y);
    if (stroke == STROKE)
      graphics.draw(shape);
    else
      graphics.fill(shape);
    graphics.translate(- x, - y);
Tom Tromey committed
93 94
  }

95 96
  /**
   * Compares this ShapeGraphicAttribute to obj.
97
   *
98 99 100
   * @param obj - the object to compare.
   */
  public boolean equals(Object obj)
Tom Tromey committed
101 102 103 104
  {
    if (! (obj instanceof ShapeGraphicAttribute))
      return false;

105
    return equals((ShapeGraphicAttribute) obj);
Tom Tromey committed
106 107
  }

108 109
  /**
   * Compares this ShapeGraphicAttribute to rhs.
110
   *
111 112 113
   * @param rhs - the ShapeGraphicAttribute to compare.
   */
  public boolean equals(ShapeGraphicAttribute rhs)
Tom Tromey committed
114
  {
115 116 117 118 119 120
    return (this == rhs || (this.shape.equals(rhs.shape)
                            && getAlignment() == rhs.getAlignment()
                            && stroke == rhs.stroke
                            && getAdvance() == rhs.getAdvance()
                            && getAscent() == rhs.getAscent()
                            && getBounds().equals(rhs.getBounds())
121
                            && getDescent() == rhs.getDescent()
122
                            && hashCode() == rhs.hashCode()));
Tom Tromey committed
123 124
  }

125 126 127
  /**
   * Gets the distance from the origin of its Shape to the right side of the
   * bounds of its Shape.
128
   *
129 130 131
   * @return the advance
   */
  public float getAdvance()
Tom Tromey committed
132
  {
133
    return Math.max(0, (float) bounds.getMaxX());
Tom Tromey committed
134 135
  }

136 137 138
  /**
   * Gets the positive distance from the origin of its Shape to the top of
   * bounds.
139
   *
140 141 142
   * @return the ascent
   */
  public float getAscent()
Tom Tromey committed
143
  {
144
    return Math.max(0, -(float) bounds.getMinY());
Tom Tromey committed
145 146
  }

147 148
  /**
   * Gets the distance from the origin of its Shape to the bottom of the bounds.
149
   *
150 151 152
   * @return the descent
   */
  public float getDescent()
Tom Tromey committed
153
  {
154
    return Math.max(0, (float) bounds.getMaxY());
Tom Tromey committed
155 156
  }

157 158
  /**
   * Returns a Rectangle2D that encloses all of the bits drawn by this shape.
159
   *
160 161 162
   * @return the bounds of the shape.
   */
  public Rectangle2D getBounds()
Tom Tromey committed
163
  {
164 165 166 167 168 169 170 171
    Rectangle2D.Float bounds = new Rectangle2D.Float();
    bounds.setRect(this.bounds);

    if (stroke == STROKE)
      {
        bounds.width++;
        bounds.height++;
      }
172

173
    return bounds;
Tom Tromey committed
174 175
  }

176 177
  /**
   * Gets the hash code.
178
   *
179 180 181
   * @return the hash code.
   */
  public int hashCode()
Tom Tromey committed
182
  {
183
    return shape.hashCode();
Tom Tromey committed
184 185
  }
}