| java.lang.Object org.apache.harmony.awt.gl.TextRenderer org.apache.harmony.awt.gl.windows.GDITextRenderer
GDITextRenderer | public class GDITextRenderer extends TextRenderer (Code) | | TextRenderer that works by means of GDI calls.
|
Method Summary | |
public void | drawCompositeGlyphVector(Graphics2D g, GlyphVector gv, float x, float y) Method to draw GlyphVector created from composite font onto a
specified graphics at desired coordinates. | public void | drawCompositeString(Graphics2D g, String str, int x, int y) Method to draw string with graphics that has composite font
at desired coordinates. | public void | drawGlyphVector(Graphics2D g, GlyphVector gv, float x, float y) | public void | drawNormalGlyphVector(Graphics2D g, GlyphVector gv, float x, float y) Method to draw GlyphVector created from physical font onto a
specified graphics at desired coordinates. | public void | drawNormalString(Graphics2D g, String str, int x, int y) Method to draw string with graphics that has physical font
at desired coordinates. | public void | drawString(Graphics2D g, String str, float x, float y) |
curPenColor | int curPenColor(Code) | | |
hOldGDIRgn | long hOldGDIRgn(Code) | | |
drawCompositeGlyphVector | public void drawCompositeGlyphVector(Graphics2D g, GlyphVector gv, float x, float y)(Code) | | Method to draw GlyphVector created from composite font onto a
specified graphics at desired coordinates.
Parameters: g - Graphics to draw onto Parameters: gv - GlyphVector to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
drawCompositeString | public void drawCompositeString(Graphics2D g, String str, int x, int y)(Code) | | Method to draw string with graphics that has composite font
at desired coordinates.
Parameters: g - Graphics 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(Graphics2D g, GlyphVector gv, float x, float y)(Code) | | Method to draw GlyphVector created from physical font onto a
specified graphics at desired coordinates.
Parameters: g - Graphics to draw onto Parameters: gv - GlyphVector to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
drawNormalString | public void drawNormalString(Graphics2D g, String str, int x, int y)(Code) | | Method to draw string with graphics that has physical font
at desired coordinates.
Parameters: g - Graphics to draw onto Parameters: str - String to draw Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
|
|