org.apache.batik.gvt.font
Class MultiGlyphVector

java.lang.Object
  extended byorg.apache.batik.gvt.font.MultiGlyphVector
All Implemented Interfaces:
GVTGlyphVector

public class MultiGlyphVector
extends Object
implements GVTGlyphVector


Constructor Summary
MultiGlyphVector(List gvs)
           
 
Method Summary
 void draw(Graphics2D g2d, AttributedCharacterIterator aci)
          Draws the glyph vector.
 Rectangle2D getBounds2D(AttributedCharacterIterator aci)
          Returns the bounds of this GlyphVector.
 int getCharacterCount(int startGlyphIndex, int endGlyphIndex)
          Returns the number of chars represented by the glyphs within the specified range.
 GVTFont getFont()
          Returns the Font associated with this GlyphVector.
 FontRenderContext getFontRenderContext()
          Returns the FontRenderContext associated with this GlyphVector.
 Rectangle2D getGeometricBounds()
          Returns the geometric bounds of this GlyphVector.
 Rectangle2D getGlyphCellBounds(int glyphIndex)
          Returns the bounding box of the specified glyph, considering only the glyph's metrics (ascent, descent, advance) rather than the actual glyph shape.
 int getGlyphCode(int glyphIndex)
          Returns the glyphcode of the specified glyph.
 int[] getGlyphCodes(int beginGlyphIndex, int numEntries, int[] codeReturn)
          Returns an array of glyphcodes for the specified glyphs.
 GlyphJustificationInfo getGlyphJustificationInfo(int glyphIndex)
          Returns the justification information for the glyph at the specified index into this GlyphVector.
 Shape getGlyphLogicalBounds(int glyphIndex)
          Returns the logical bounds of the specified glyph within this GlyphVector.
 GVTGlyphMetrics getGlyphMetrics(int glyphIndex)
          Returns the metrics of the glyph at the specified index into this GlyphVector.
 Shape getGlyphOutline(int glyphIndex)
          Returns a Shape whose interior corresponds to the visual representation of the specified glyph within this GlyphVector.
 Point2D getGlyphPosition(int glyphIndex)
          Returns the position of the specified glyph within this GlyphVector.
 float[] getGlyphPositions(int beginGlyphIndex, int numEntries, float[] positionReturn)
          Returns an array of glyph positions for the specified glyphs
 AffineTransform getGlyphTransform(int glyphIndex)
          Gets the transform of the specified glyph within this GlyphVector.
 Shape getGlyphVisualBounds(int glyphIndex)
          Returns the visual bounds of the specified glyph within the GlyphVector.
 Rectangle2D getLogicalBounds()
          Returns the logical bounds of this GlyphVector.
 int getNumGlyphs()
          Returns the number of glyphs in this GlyphVector.
 Shape getOutline()
          Returns a Shape whose interior corresponds to the visual representation of this GlyphVector.
 Shape getOutline(float x, float y)
          Returns a Shape whose interior corresponds to the visual representation of this GlyphVector, offset to x, y.
 boolean isGlyphVisible(int glyphIndex)
          Returns true if specified glyph will be drawn.
 void performDefaultLayout()
          Assigns default positions to each glyph in this GlyphVector.
 void setGlyphPosition(int glyphIndex, Point2D newPos)
          Sets the position of the specified glyph within this GlyphVector.
 void setGlyphTransform(int glyphIndex, AffineTransform newTX)
          Sets the transform of the specified glyph within this GlyphVector.
 void setGlyphVisible(int glyphIndex, boolean visible)
          Tells the glyph vector whether or not to draw the specified glyph.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MultiGlyphVector

public MultiGlyphVector(List gvs)
Method Detail

getNumGlyphs

public int getNumGlyphs()
Returns the number of glyphs in this GlyphVector.

Specified by:
getNumGlyphs in interface GVTGlyphVector

getFont

public GVTFont getFont()
Returns the Font associated with this GlyphVector.

Specified by:
getFont in interface GVTGlyphVector

getFontRenderContext

public FontRenderContext getFontRenderContext()
Returns the FontRenderContext associated with this GlyphVector.

Specified by:
getFontRenderContext in interface GVTGlyphVector

getGlyphCode

public int getGlyphCode(int glyphIndex)
Returns the glyphcode of the specified glyph.

Specified by:
getGlyphCode in interface GVTGlyphVector

getGlyphJustificationInfo

public GlyphJustificationInfo getGlyphJustificationInfo(int glyphIndex)
Returns the justification information for the glyph at the specified index into this GlyphVector.

Specified by:
getGlyphJustificationInfo in interface GVTGlyphVector

getGlyphLogicalBounds

public Shape getGlyphLogicalBounds(int glyphIndex)
Returns the logical bounds of the specified glyph within this GlyphVector.

Specified by:
getGlyphLogicalBounds in interface GVTGlyphVector

getGlyphMetrics

public GVTGlyphMetrics getGlyphMetrics(int glyphIndex)
Returns the metrics of the glyph at the specified index into this GlyphVector.

Specified by:
getGlyphMetrics in interface GVTGlyphVector

getGlyphOutline

public Shape getGlyphOutline(int glyphIndex)
Returns a Shape whose interior corresponds to the visual representation of the specified glyph within this GlyphVector.

Specified by:
getGlyphOutline in interface GVTGlyphVector

getGlyphCellBounds

public Rectangle2D getGlyphCellBounds(int glyphIndex)
Returns the bounding box of the specified glyph, considering only the glyph's metrics (ascent, descent, advance) rather than the actual glyph shape.

Specified by:
getGlyphCellBounds in interface GVTGlyphVector

getGlyphPosition

public Point2D getGlyphPosition(int glyphIndex)
Returns the position of the specified glyph within this GlyphVector.

Specified by:
getGlyphPosition in interface GVTGlyphVector

getGlyphTransform

public AffineTransform getGlyphTransform(int glyphIndex)
Gets the transform of the specified glyph within this GlyphVector.

Specified by:
getGlyphTransform in interface GVTGlyphVector

getGlyphVisualBounds

public Shape getGlyphVisualBounds(int glyphIndex)
Returns the visual bounds of the specified glyph within the GlyphVector.

Specified by:
getGlyphVisualBounds in interface GVTGlyphVector

setGlyphPosition

public void setGlyphPosition(int glyphIndex,
                             Point2D newPos)
Sets the position of the specified glyph within this GlyphVector.

Specified by:
setGlyphPosition in interface GVTGlyphVector

setGlyphTransform

public void setGlyphTransform(int glyphIndex,
                              AffineTransform newTX)
Sets the transform of the specified glyph within this GlyphVector.

Specified by:
setGlyphTransform in interface GVTGlyphVector

setGlyphVisible

public void setGlyphVisible(int glyphIndex,
                            boolean visible)
Tells the glyph vector whether or not to draw the specified glyph.

Specified by:
setGlyphVisible in interface GVTGlyphVector

isGlyphVisible

public boolean isGlyphVisible(int glyphIndex)
Returns true if specified glyph will be drawn.

Specified by:
isGlyphVisible in interface GVTGlyphVector

getGlyphCodes

public int[] getGlyphCodes(int beginGlyphIndex,
                           int numEntries,
                           int[] codeReturn)
Returns an array of glyphcodes for the specified glyphs.

Specified by:
getGlyphCodes in interface GVTGlyphVector

getGlyphPositions

public float[] getGlyphPositions(int beginGlyphIndex,
                                 int numEntries,
                                 float[] positionReturn)
Returns an array of glyph positions for the specified glyphs

Specified by:
getGlyphPositions in interface GVTGlyphVector

getLogicalBounds

public Rectangle2D getLogicalBounds()
Returns the logical bounds of this GlyphVector.

Specified by:
getLogicalBounds in interface GVTGlyphVector

getOutline

public Shape getOutline()
Returns a Shape whose interior corresponds to the visual representation of this GlyphVector.

Specified by:
getOutline in interface GVTGlyphVector

getOutline

public Shape getOutline(float x,
                        float y)
Returns a Shape whose interior corresponds to the visual representation of this GlyphVector, offset to x, y.

Specified by:
getOutline in interface GVTGlyphVector

getBounds2D

public Rectangle2D getBounds2D(AttributedCharacterIterator aci)
Returns the bounds of this GlyphVector. This includes stroking effects.

Specified by:
getBounds2D in interface GVTGlyphVector
Parameters:
aci - Required to get painting attributes of glyphVector.

getGeometricBounds

public Rectangle2D getGeometricBounds()
Returns the geometric bounds of this GlyphVector. The geometric bounds is the bounds of the geometry of the glyph vector, disregarding stroking.

Specified by:
getGeometricBounds in interface GVTGlyphVector

performDefaultLayout

public void performDefaultLayout()
Description copied from interface: GVTGlyphVector
Assigns default positions to each glyph in this GlyphVector.

Specified by:
performDefaultLayout in interface GVTGlyphVector

getCharacterCount

public int getCharacterCount(int startGlyphIndex,
                             int endGlyphIndex)
Returns the number of chars represented by the glyphs within the specified range.

Specified by:
getCharacterCount in interface GVTGlyphVector
Parameters:
startGlyphIndex - The index of the first glyph in the range.
endGlyphIndex - The index of the last glyph in the range.
Returns:
The number of chars.

draw

public void draw(Graphics2D g2d,
                 AttributedCharacterIterator aci)
Draws the glyph vector.

Specified by:
draw in interface GVTGlyphVector


Copyright © 2009 Apache Software Foundation. All Rights Reserved.