|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.batik.gvt.font.AWTGVTFont
This is a wrapper class for a java.awt.Font instance.
Field Summary | |
protected java.awt.Font |
awtFont
|
static float |
FONT_SIZE
|
protected float |
scale
|
protected float |
size
|
Constructor Summary | |
AWTGVTFont(java.awt.Font font)
Creates a new AWTGVTFont that wraps the given Font. |
|
AWTGVTFont(java.awt.Font font,
float scale)
Creates a new AWTGVTFont that wraps the given Font. |
|
AWTGVTFont(java.util.Map attributes)
Creates a new AWTGVTFont with the specified attributes. |
|
AWTGVTFont(java.lang.String name,
int style,
int size)
Creates a new AWTGVTFont from the specified name, style and point size. |
Method Summary | |
boolean |
canDisplay(char c)
Checks if this font can display the specified character. |
int |
canDisplayUpTo(char[] text,
int start,
int limit)
Indicates whether or not this font can display the characters in the specified text starting at start and ending at limit. |
int |
canDisplayUpTo(java.text.CharacterIterator iter,
int start,
int limit)
Indicates whether or not this font can display the the characters in the specified CharacterIterator starting at start and ending at limit. |
int |
canDisplayUpTo(java.lang.String str)
Indicates whether or not this font can display a specified String. |
GVTGlyphVector |
createGlyphVector(java.awt.font.FontRenderContext frc,
char[] chars)
Returns a new GlyphVector object created with the specified array of characters and the specified FontRenderContext. |
GVTGlyphVector |
createGlyphVector(java.awt.font.FontRenderContext frc,
java.text.CharacterIterator ci)
Returns a new GlyphVector object created with the specified CharacterIterator and the specified FontRenderContext. |
GVTGlyphVector |
createGlyphVector(java.awt.font.FontRenderContext frc,
int[] glyphCodes,
java.text.CharacterIterator ci)
Returns a new GlyphVector object created with the specified integer array and the specified FontRenderContext. |
GVTGlyphVector |
createGlyphVector(java.awt.font.FontRenderContext frc,
java.lang.String str)
Returns a new GlyphVector object created with the specified String and the specified FontRenderContext. |
GVTFont |
deriveFont(float size)
Creates a new Font object by replicating the current Font object and applying a new size to it. |
static AWTGlyphGeometryCache.Value |
getGlyphGeometry(AWTGVTFont font,
char c,
java.awt.font.GlyphVector gv,
int glyphIndex,
java.awt.geom.Point2D glyphPos)
Returns the geometry of the specified character. |
float |
getHKern(int glyphCode1,
int glyphCode2)
Returns the horizontal kerning value for this glyph pair. |
GVTLineMetrics |
getLineMetrics(char[] chars,
int beginIndex,
int limit,
java.awt.font.FontRenderContext frc)
Returns a LineMetrics object created with the specified arguments. |
GVTLineMetrics |
getLineMetrics(java.text.CharacterIterator ci,
int beginIndex,
int limit,
java.awt.font.FontRenderContext frc)
Returns a GVTLineMetrics object created with the specified arguments. |
GVTLineMetrics |
getLineMetrics(java.lang.String str,
java.awt.font.FontRenderContext frc)
Returns a GVTLineMetrics object created with the specified String and FontRenderContext. |
GVTLineMetrics |
getLineMetrics(java.lang.String str,
int beginIndex,
int limit,
java.awt.font.FontRenderContext frc)
Returns a GVTLineMetrics object created with the specified arguments. |
float |
getSize()
Returns the size of this font. |
float |
getVKern(int glyphCode1,
int glyphCode2)
Returns the vertical kerning value for this glyph pair. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.batik.gvt.font.GVTFont |
toString |
Field Detail |
protected java.awt.Font awtFont
protected float size
protected float scale
public static final float FONT_SIZE
Constructor Detail |
public AWTGVTFont(java.awt.Font font)
font
- The font object to wrap.public AWTGVTFont(java.awt.Font font, float scale)
font
- The font object to wrap.scale
- The scale factor to apply to font...public AWTGVTFont(java.util.Map attributes)
attributes
- Contains attributes of the font to create.public AWTGVTFont(java.lang.String name, int style, int size)
name
- The name of the new font.style
- The required font style.size
- The required font size.Method Detail |
public boolean canDisplay(char c)
canDisplay
in interface GVTFont
c
- The character to check.public int canDisplayUpTo(char[] text, int start, int limit)
canDisplayUpTo
in interface GVTFont
text
- An array containing the characters to check.start
- The index of the first character to check.limit
- The index of the last character to check.public int canDisplayUpTo(java.text.CharacterIterator iter, int start, int limit)
canDisplayUpTo
in interface GVTFont
public int canDisplayUpTo(java.lang.String str)
canDisplayUpTo
in interface GVTFont
public GVTGlyphVector createGlyphVector(java.awt.font.FontRenderContext frc, char[] chars)
createGlyphVector
in interface GVTFont
public GVTGlyphVector createGlyphVector(java.awt.font.FontRenderContext frc, java.text.CharacterIterator ci)
createGlyphVector
in interface GVTFont
public GVTGlyphVector createGlyphVector(java.awt.font.FontRenderContext frc, int[] glyphCodes, java.text.CharacterIterator ci)
createGlyphVector
in interface GVTFont
public GVTGlyphVector createGlyphVector(java.awt.font.FontRenderContext frc, java.lang.String str)
createGlyphVector
in interface GVTFont
public GVTFont deriveFont(float size)
deriveFont
in interface GVTFont
public GVTLineMetrics getLineMetrics(char[] chars, int beginIndex, int limit, java.awt.font.FontRenderContext frc)
getLineMetrics
in interface GVTFont
public GVTLineMetrics getLineMetrics(java.text.CharacterIterator ci, int beginIndex, int limit, java.awt.font.FontRenderContext frc)
getLineMetrics
in interface GVTFont
public GVTLineMetrics getLineMetrics(java.lang.String str, java.awt.font.FontRenderContext frc)
getLineMetrics
in interface GVTFont
public GVTLineMetrics getLineMetrics(java.lang.String str, int beginIndex, int limit, java.awt.font.FontRenderContext frc)
getLineMetrics
in interface GVTFont
public float getSize()
getSize
in interface GVTFont
public float getHKern(int glyphCode1, int glyphCode2)
getHKern
in interface GVTFont
public float getVKern(int glyphCode1, int glyphCode2)
getVKern
in interface GVTFont
public static AWTGlyphGeometryCache.Value getGlyphGeometry(AWTGVTFont font, char c, java.awt.font.GlyphVector gv, int glyphIndex, java.awt.geom.Point2D glyphPos)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |