public abstract class StreamGraphics2DDelegate extends BaseGraphics2D
Implementations should give a value to proxy.
| Modifier and Type | Field and Description |
|---|---|
protected java.awt.Graphics2D |
proxy
The actual Graphics2D we are drawing to.
|
| Constructor and Description |
|---|
StreamGraphics2DDelegate() |
| Modifier and Type | Method and Description |
|---|---|
void |
addRenderingHints(java.util.Map hints) |
void |
clearRect(int x,
int y,
int width,
int height) |
void |
clip(java.awt.Shape s) |
void |
clipRect(int x,
int y,
int width,
int height) |
void |
copyArea(int x,
int y,
int width,
int height,
int dx,
int dy) |
java.awt.Graphics |
create()
Create a clone of this graphics2d, rendering into the same picture.
|
java.awt.Graphics |
create(int x,
int y,
int width,
int height) |
void |
dispose() |
void |
draw(java.awt.Shape s)
Draws a shape.
|
void |
draw3DRect(int x,
int y,
int width,
int height,
boolean raised) |
void |
drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle) |
void |
drawBytes(byte[] data,
int offset,
int length,
int x,
int y) |
void |
drawChars(char[] data,
int offset,
int length,
int x,
int y) |
void |
drawGlyphVector(java.awt.font.GlyphVector g,
float x,
float y) |
void |
drawImage(java.awt.image.BufferedImage img,
java.awt.image.BufferedImageOp op,
int x,
int y) |
boolean |
drawImage(java.awt.Image img,
java.awt.geom.AffineTransform xform,
java.awt.image.ImageObserver obs) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer) |
boolean |
drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.image.ImageObserver observer) |
void |
drawLine(int x1,
int y1,
int x2,
int y2) |
void |
drawOval(int x,
int y,
int width,
int height) |
void |
drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints) |
void |
drawPolygon(java.awt.Polygon p) |
void |
drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints)
Draws a polygon.
|
void |
drawRect(int x,
int y,
int width,
int height) |
void |
drawRenderableImage(java.awt.image.renderable.RenderableImage img,
java.awt.geom.AffineTransform xform)
A simple and probably false interpretation.
|
void |
drawRenderedImage(java.awt.image.RenderedImage img,
java.awt.geom.AffineTransform xform) |
void |
drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight) |
void |
drawString(java.text.AttributedCharacterIterator iterator,
float x,
float y) |
void |
drawString(java.text.AttributedCharacterIterator iterator,
int x,
int y) |
void |
drawString(java.lang.String s,
float x,
float y) |
void |
drawString(java.lang.String str,
int x,
int y) |
boolean |
equals(java.lang.Object obj) |
void |
fill(java.awt.Shape s) |
void |
fill3DRect(int x,
int y,
int width,
int height,
boolean raised) |
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(int[] xPoints,
int[] yPoints,
int nPoints) |
void |
fillPolygon(java.awt.Polygon p) |
void |
fillRect(int x,
int y,
int width,
int height) |
void |
fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight) |
java.awt.Color |
getBackground() |
java.awt.Shape |
getClip() |
java.awt.Rectangle |
getClipBounds() |
java.awt.Rectangle |
getClipBounds(java.awt.Rectangle r) |
java.awt.Rectangle |
getClipRect()
Deprecated.
|
java.awt.Color |
getColor() |
java.awt.Composite |
getComposite() |
java.awt.GraphicsConfiguration |
getDeviceConfiguration() |
java.awt.Font |
getFont() |
java.awt.FontMetrics |
getFontMetrics() |
java.awt.FontMetrics |
getFontMetrics(java.awt.Font f) |
java.awt.font.FontRenderContext |
getFontRenderContext() |
java.awt.Paint |
getPaint() |
java.lang.Object |
getRenderingHint(java.awt.RenderingHints.Key hintKey) |
java.awt.RenderingHints |
getRenderingHints() |
java.awt.Stroke |
getStroke() |
java.awt.geom.AffineTransform |
getTransform() |
int |
hashCode() |
boolean |
hit(java.awt.Rectangle rect,
java.awt.Shape s,
boolean onStroke) |
boolean |
hitClip(int x,
int y,
int width,
int height) |
void |
rotate(double theta) |
void |
rotate(double theta,
double x,
double y) |
void |
scale(double sx,
double sy) |
void |
setBackground(java.awt.Color color) |
void |
setClip(int x,
int y,
int width,
int height) |
void |
setClip(java.awt.Shape clip) |
void |
setColor(java.awt.Color c) |
void |
setComposite(java.awt.Composite comp) |
void |
setFont(java.awt.Font font) |
void |
setPaint(java.awt.Paint paint) |
void |
setPaintMode() |
void |
setRenderingHint(java.awt.RenderingHints.Key hintKey,
java.lang.Object hintValue) |
void |
setRenderingHints(java.util.Map hints) |
void |
setStroke(java.awt.Stroke s) |
void |
setTransform(java.awt.geom.AffineTransform Tx) |
void |
setXORMode(java.awt.Color c1)
Switches to Xor mode.
|
void |
shear(double shx,
double shy) |
java.lang.String |
toString() |
void |
transform(java.awt.geom.AffineTransform Tx)
Transform the current system reference according to Tx.
|
void |
translate(double tx,
double ty) |
void |
translate(int x,
int y) |
getPathFor, setPropertiesprotected java.awt.Graphics2D proxy
public void addRenderingHints(java.util.Map hints)
addRenderingHints in class BaseGraphics2Dpublic void clearRect(int x,
int y,
int width,
int height)
clearRect in class BaseGraphics2Dpublic void clip(java.awt.Shape s)
clip in class BaseGraphics2Dpublic void clipRect(int x,
int y,
int width,
int height)
clipRect in class BaseGraphics2Dpublic void copyArea(int x,
int y,
int width,
int height,
int dx,
int dy)
copyArea in class BaseGraphics2Dpublic java.awt.Graphics create()
BaseGraphics2Dreturn new MyGraphicsType(this);as implementation.
create in class BaseGraphics2DGraphics.create()public java.awt.Graphics create(int x,
int y,
int width,
int height)
create in class java.awt.Graphicspublic void dispose()
dispose in class BaseGraphics2Dpublic void draw(java.awt.Shape s)
BaseGraphics2DA basic, probably very suboptimal implementation of draw, which calls fill(shape). For the sake of efficiency, you should probably rewrite it.
draw in class BaseGraphics2DGraphics2D.draw(Shape)public void draw3DRect(int x,
int y,
int width,
int height,
boolean raised)
draw3DRect in class java.awt.Graphics2Dpublic void drawArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
drawArc in class BaseGraphics2Dpublic void drawBytes(byte[] data,
int offset,
int length,
int x,
int y)
drawBytes in class java.awt.Graphicspublic void drawChars(char[] data,
int offset,
int length,
int x,
int y)
drawChars in class java.awt.Graphicspublic void drawGlyphVector(java.awt.font.GlyphVector g,
float x,
float y)
drawGlyphVector in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer)
drawImage in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
int dx1,
int dy1,
int dx2,
int dy2,
int sx1,
int sy1,
int sx2,
int sy2,
java.awt.image.ImageObserver observer)
drawImage in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer)
drawImage in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
int x,
int y,
int width,
int height,
java.awt.image.ImageObserver observer)
drawImage in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
int x,
int y,
java.awt.Color bgcolor,
java.awt.image.ImageObserver observer)
drawImage in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
int x,
int y,
java.awt.image.ImageObserver observer)
drawImage in class BaseGraphics2Dpublic boolean drawImage(java.awt.Image img,
java.awt.geom.AffineTransform xform,
java.awt.image.ImageObserver obs)
drawImage in class BaseGraphics2Dpublic void drawImage(java.awt.image.BufferedImage img,
java.awt.image.BufferedImageOp op,
int x,
int y)
drawImage in class BaseGraphics2Dpublic void drawLine(int x1,
int y1,
int x2,
int y2)
drawLine in class BaseGraphics2Dpublic void drawOval(int x,
int y,
int width,
int height)
drawOval in class BaseGraphics2Dpublic void drawPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
drawPolygon in class BaseGraphics2Dpublic void drawPolygon(java.awt.Polygon p)
drawPolygon in class java.awt.Graphicspublic void drawPolyline(int[] xPoints,
int[] yPoints,
int nPoints)
BaseGraphics2DThe default implementation uses shapes. You can probably get something more efficient.
drawPolyline in class BaseGraphics2DGraphics.drawPolyline(int[], int[], int)public void drawRect(int x,
int y,
int width,
int height)
drawRect in class java.awt.Graphicspublic void drawRenderableImage(java.awt.image.renderable.RenderableImage img,
java.awt.geom.AffineTransform xform)
BaseGraphics2DdrawRenderableImage in class BaseGraphics2DGraphics2D.drawRenderableImage(java.awt.image.renderable.RenderableImage,
java.awt.geom.AffineTransform)public void drawRenderedImage(java.awt.image.RenderedImage img,
java.awt.geom.AffineTransform xform)
drawRenderedImage in class BaseGraphics2Dpublic void drawRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
drawRoundRect in class BaseGraphics2Dpublic void drawString(java.lang.String s,
float x,
float y)
drawString in class BaseGraphics2Dpublic void drawString(java.lang.String str,
int x,
int y)
drawString in class BaseGraphics2Dpublic void drawString(java.text.AttributedCharacterIterator iterator,
float x,
float y)
drawString in class BaseGraphics2Dpublic void drawString(java.text.AttributedCharacterIterator iterator,
int x,
int y)
drawString in class BaseGraphics2Dpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic void fill(java.awt.Shape s)
fill in class BaseGraphics2Dpublic void fill3DRect(int x,
int y,
int width,
int height,
boolean raised)
fill3DRect in class java.awt.Graphics2Dpublic void fillArc(int x,
int y,
int width,
int height,
int startAngle,
int arcAngle)
fillArc in class BaseGraphics2Dpublic void fillOval(int x,
int y,
int width,
int height)
fillOval in class BaseGraphics2Dpublic void fillPolygon(int[] xPoints,
int[] yPoints,
int nPoints)
fillPolygon in class BaseGraphics2Dpublic void fillPolygon(java.awt.Polygon p)
fillPolygon in class java.awt.Graphicspublic void fillRect(int x,
int y,
int width,
int height)
fillRect in class BaseGraphics2Dpublic void fillRoundRect(int x,
int y,
int width,
int height,
int arcWidth,
int arcHeight)
fillRoundRect in class BaseGraphics2Dpublic java.awt.Color getBackground()
getBackground in class BaseGraphics2Dpublic java.awt.Shape getClip()
getClip in class BaseGraphics2Dpublic java.awt.Rectangle getClipBounds()
getClipBounds in class BaseGraphics2Dpublic java.awt.Rectangle getClipBounds(java.awt.Rectangle r)
getClipBounds in class java.awt.Graphicspublic java.awt.Rectangle getClipRect()
getClipRect in class java.awt.Graphicspublic java.awt.Color getColor()
getColor in class BaseGraphics2Dpublic java.awt.Composite getComposite()
getComposite in class BaseGraphics2Dpublic java.awt.GraphicsConfiguration getDeviceConfiguration()
getDeviceConfiguration in class BaseGraphics2Dpublic java.awt.Font getFont()
getFont in class BaseGraphics2Dpublic java.awt.FontMetrics getFontMetrics()
getFontMetrics in class java.awt.Graphicspublic java.awt.FontMetrics getFontMetrics(java.awt.Font f)
getFontMetrics in class BaseGraphics2Dpublic java.awt.font.FontRenderContext getFontRenderContext()
getFontRenderContext in class BaseGraphics2Dpublic java.awt.Paint getPaint()
getPaint in class BaseGraphics2Dpublic java.lang.Object getRenderingHint(java.awt.RenderingHints.Key hintKey)
getRenderingHint in class BaseGraphics2Dpublic java.awt.RenderingHints getRenderingHints()
getRenderingHints in class BaseGraphics2Dpublic java.awt.Stroke getStroke()
getStroke in class BaseGraphics2Dpublic java.awt.geom.AffineTransform getTransform()
getTransform in class BaseGraphics2Dpublic int hashCode()
hashCode in class java.lang.Objectpublic boolean hit(java.awt.Rectangle rect,
java.awt.Shape s,
boolean onStroke)
hit in class BaseGraphics2Dpublic boolean hitClip(int x,
int y,
int width,
int height)
hitClip in class java.awt.Graphicspublic void rotate(double theta)
rotate in class BaseGraphics2Dpublic void rotate(double theta,
double x,
double y)
rotate in class BaseGraphics2Dpublic void scale(double sx,
double sy)
scale in class BaseGraphics2Dpublic void setBackground(java.awt.Color color)
setBackground in class BaseGraphics2Dpublic void setClip(int x,
int y,
int width,
int height)
setClip in class BaseGraphics2Dpublic void setClip(java.awt.Shape clip)
setClip in class BaseGraphics2Dpublic void setColor(java.awt.Color c)
setColor in class BaseGraphics2Dpublic void setComposite(java.awt.Composite comp)
setComposite in class BaseGraphics2Dpublic void setFont(java.awt.Font font)
setFont in class BaseGraphics2Dpublic void setPaint(java.awt.Paint paint)
setPaint in class BaseGraphics2Dpublic void setPaintMode()
setPaintMode in class BaseGraphics2Dpublic void setRenderingHint(java.awt.RenderingHints.Key hintKey,
java.lang.Object hintValue)
setRenderingHint in class BaseGraphics2Dpublic void setRenderingHints(java.util.Map hints)
setRenderingHints in class BaseGraphics2Dpublic void setStroke(java.awt.Stroke s)
setStroke in class BaseGraphics2Dpublic void setTransform(java.awt.geom.AffineTransform Tx)
setTransform in class BaseGraphics2Dpublic void setXORMode(java.awt.Color c1)
BaseGraphics2DsetXORMode in class BaseGraphics2DGraphics.setXORMode(java.awt.Color)public void shear(double shx,
double shy)
shear in class BaseGraphics2Dpublic java.lang.String toString()
toString in class java.awt.Graphicspublic void transform(java.awt.geom.AffineTransform Tx)
BaseGraphics2DAll scaling and assorted transformations in BaseGraphics2D use this method. Hence, if you want to modify the transformation system, simply redefine it.
transform in class BaseGraphics2DGraphics2D.transform(java.awt.geom.AffineTransform)public void translate(double tx,
double ty)
translate in class BaseGraphics2Dpublic void translate(int x,
int y)
translate in class BaseGraphics2D