| java.lang.Object org.apache.harmony.awt.gl.TextRenderer org.apache.harmony.awt.gl.linux.DrawableTextRenderer
DrawableTextRenderer | public class DrawableTextRenderer extends TextRenderer (Code) | | Linux text renderer, works using XFT text rendering
|
Method Summary | |
public void | drawCompositeGlyphVector(CommonGraphics2D g, GlyphVector glyphVector, float x, float y) Method to draw GlyphVector created from composite font onto a
specified graphics at desired coordinates. | public void | drawCompositeString(CommonGraphics2D g, String str, double x, double y) Method to draw string with graphics that has composite font
at desired coordinates. | public void | drawGlyphVector(Graphics2D ga, GlyphVector gv, float x, float y) | public void | drawNormalGlyphVector(CommonGraphics2D g, GlyphVector glyphVector, float x, float y) Method to draw GlyphVector created from physical font onto a
specified graphics at desired coordinates. | public void | drawNormalString(CommonGraphics2D g, String str, double x, double y) Method to draw string with graphics that has physical font
at desired coordinates. | public void | drawString(Graphics2D ga, String str, float x, float y) | static X11.XColor | getXColor(Color color) Returns XColor structure corresponding to the desired Color. | boolean | isAntialiasingHintSet(Graphics2D g) |
drawCompositeGlyphVector | public void drawCompositeGlyphVector(CommonGraphics2D g, GlyphVector glyphVector, float x, float y)(Code) | | Method to draw GlyphVector created from composite font onto a
specified graphics at desired coordinates.
Parameters: g - CommonGraphics2D to draw onto Parameters: glyphVector - GlyphVector to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
drawCompositeString | public void drawCompositeString(CommonGraphics2D g, String str, double x, double y)(Code) | | Method to draw string with graphics that has composite font
at desired coordinates.
Parameters: g - CommonGraphics2D to draw onto Parameters: str - String to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
drawNormalGlyphVector | public void drawNormalGlyphVector(CommonGraphics2D g, GlyphVector glyphVector, float x, float y)(Code) | | Method to draw GlyphVector created from physical font onto a
specified graphics at desired coordinates.
Parameters: g - CommonGraphics2D to draw onto Parameters: glyphVector - GlyphVector to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
drawNormalString | public void drawNormalString(CommonGraphics2D g, String str, double x, double y)(Code) | | Method to draw string with graphics that has physical font
at desired coordinates.
Parameters: g - CommonGraphics2D to draw onto Parameters: str - String to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
getXColor | static X11.XColor getXColor(Color color)(Code) | | Returns XColor structure corresponding to the desired Color.
Parameters: color - specified Color |
|
|