| java.lang.Object org.apache.harmony.awt.gl.TextRenderer org.apache.harmony.awt.gl.windows.GDIPTextRenderer
GDIPTextRenderer | public class GDIPTextRenderer extends TextRenderer (Code) | | author: Ilya S. Okomin version: $Revision$ version: TextRenderer that works by means of GDI+ calls. |
Method Summary | |
public void | drawGlyphVector(Graphics2D g, GlyphVector gv, float x, float y) | public void | drawString(Graphics2D g, String str, float x, float y) | public void | gdipDrawCompositeGlyphVector(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 | gdipDrawCompositeString(Graphics2D g, String str, float x, float y) Method to draw string with graphics that has composite font
at desired coordinates. | public void | gdipDrawNormalChars(Graphics2D g, Font fnt, char str, int len, float x, float y) Method for fast drawing strings at the desired coordinates with Graphics
or Font object has transforms. | public void | gdipDrawNormalGlyphVector(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 | gdipDrawNormalString(Graphics2D g, String str, float x, float y) Method to draw string with graphics that has physical font
at desired coordinates. |
curPenColor | int curPenColor(Code) | | |
debugOutput | final protected static boolean debugOutput(Code) | | |
gdipDrawCompositeGlyphVector | public void gdipDrawCompositeGlyphVector(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 |
gdipDrawCompositeString | public void gdipDrawCompositeString(Graphics2D g, String str, float x, float 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 |
gdipDrawNormalChars | public void gdipDrawNormalChars(Graphics2D g, Font fnt, char str, int len, float x, float y)(Code) | | Method for fast drawing strings at the desired coordinates with Graphics
or Font object has transforms.
Parameters: g - Graphics to draw onto Parameters: fnt - Font class that is used to draw string Parameters: str - String to draw Parameters: len - length of the String parameter Parameters: x - starting X coordinate to draw at Parameters: y - starting Y coordinate to draw at |
gdipDrawNormalGlyphVector | public void gdipDrawNormalGlyphVector(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 |
gdipDrawNormalString | public void gdipDrawNormalString(Graphics2D g, String str, float x, float 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 |
|
|