public interface IGraphicContextCommon
Modifier and Type | Method and Description |
---|---|
void |
clearRectangle(int x,
int y,
int width,
int height) |
void |
copyArea(int sourceX,
int sourceY,
int sourceWidth,
int sourceHeight,
int destinationX,
int destinationY) |
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle) |
void |
drawImage(IImageConstant image,
int x,
int y) |
void |
drawImage(IImageConstant image,
int sourceX,
int sourceY,
int sourceWidth,
int sourceHeight,
int destinationX,
int destinationY,
int destinationWidth,
int destinationHeight) |
void |
drawLine(int x1,
int y1,
int x2,
int y2) |
void |
drawOval(int x,
int y,
int width,
int height) |
void |
drawPoint(int x,
int y) |
void |
drawPolygon(Point[] points) |
void |
drawPolyline(Point[] points) |
void |
drawRectangle(int x,
int y,
int width,
int height) |
void |
drawText(java.lang.String text,
int x,
int y) |
void |
fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle) |
void |
fillOval(int x,
int y,
int width,
int height) |
void |
fillPolygon(Point[] points) |
void |
fillRectangle(int x,
int y,
int width,
int height) |
IColorConstant |
getBackgroundColor() |
Rectangle |
getBounds() |
IFontMetrics |
getFontMetrics() |
IColorConstant |
getForegroundColor() |
int |
getTextWidth(java.lang.String text) |
void |
setAntiAliasing(AntiAliasing antiAliasing) |
void |
setBackgroundColor(IColorConstant color) |
void |
setDashedLine(float[] pattern,
float offset) |
void |
setFontName(java.lang.String fontName) |
void |
setFontSize(int size) |
void |
setForegroundColor(IColorConstant color) |
void |
setLineCap(LineCap lineCap) |
void |
setLineJoin(LineJoin lineJoin) |
void |
setLineWidth(int width) |
void |
setTextAntiAliasing(AntiAliasing antiAliasing) |
void |
setTextMarkup(Markup markup) |
void setAntiAliasing(AntiAliasing antiAliasing)
void setTextAntiAliasing(AntiAliasing antiAliasing)
void setLineWidth(int width)
void setDashedLine(float[] pattern, float offset)
void setLineCap(LineCap lineCap)
void setLineJoin(LineJoin lineJoin)
void setFontSize(int size)
void setFontName(java.lang.String fontName)
void setTextMarkup(Markup markup)
void setForegroundColor(IColorConstant color)
void setBackgroundColor(IColorConstant color)
void clearRectangle(int x, int y, int width, int height)
void drawPoint(int x, int y)
void drawLine(int x1, int y1, int x2, int y2)
void drawRectangle(int x, int y, int width, int height)
void drawPolygon(Point[] points)
void drawPolyline(Point[] points)
void drawOval(int x, int y, int width, int height)
void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
void fillRectangle(int x, int y, int width, int height)
void fillPolygon(Point[] points)
void fillOval(int x, int y, int width, int height)
void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
void drawText(java.lang.String text, int x, int y)
void copyArea(int sourceX, int sourceY, int sourceWidth, int sourceHeight, int destinationX, int destinationY)
void drawImage(IImageConstant image, int sourceX, int sourceY, int sourceWidth, int sourceHeight, int destinationX, int destinationY, int destinationWidth, int destinationHeight)
void drawImage(IImageConstant image, int x, int y)
Rectangle getBounds()
IColorConstant getForegroundColor()
IColorConstant getBackgroundColor()
IFontMetrics getFontMetrics()
int getTextWidth(java.lang.String text)
Siehe auch Jowidgets Nutzerhandbuch