Package com.formdev.flatlaf.util
Class Graphics2DProxy
- java.lang.Object
-
- java.awt.Graphics
-
- java.awt.Graphics2D
-
- com.formdev.flatlaf.util.Graphics2DProxy
-
public class Graphics2DProxy extends Graphics2D
A proxy forGraphics2D
.
-
-
Constructor Summary
Constructors Constructor Description Graphics2DProxy(Graphics2D delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addRenderingHints(Map<?,?> hints)
void
clearRect(int x, int y, int width, int height)
void
clip(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)
Graphics
create()
Graphics
create(int x, int y, int width, int height)
void
dispose()
void
draw(Shape s)
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(GlyphVector g, float x, float y)
void
drawImage(BufferedImage img, BufferedImageOp op, int x, int y)
boolean
drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
boolean
drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
boolean
drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
boolean
drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
boolean
drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
boolean
drawImage(Image img, int x, int y, ImageObserver observer)
boolean
drawImage(Image img, AffineTransform xform, ImageObserver obs)
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(Polygon p)
void
drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
void
drawRect(int x, int y, int width, int height)
void
drawRenderableImage(RenderableImage img, AffineTransform xform)
void
drawRenderedImage(RenderedImage img, AffineTransform xform)
void
drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
void
drawString(String str, float x, float y)
void
drawString(String str, int x, int y)
void
drawString(AttributedCharacterIterator iterator, float x, float y)
void
drawString(AttributedCharacterIterator iterator, int x, int y)
void
fill(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(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)
Color
getBackground()
Shape
getClip()
Rectangle
getClipBounds()
Rectangle
getClipBounds(Rectangle r)
Rectangle
getClipRect()
Color
getColor()
Composite
getComposite()
GraphicsConfiguration
getDeviceConfiguration()
Font
getFont()
FontMetrics
getFontMetrics()
FontMetrics
getFontMetrics(Font f)
FontRenderContext
getFontRenderContext()
Paint
getPaint()
Object
getRenderingHint(RenderingHints.Key hintKey)
RenderingHints
getRenderingHints()
Stroke
getStroke()
AffineTransform
getTransform()
boolean
hit(Rectangle rect, 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(Color color)
void
setClip(int x, int y, int width, int height)
void
setClip(Shape clip)
void
setColor(Color c)
void
setComposite(Composite comp)
void
setFont(Font font)
void
setPaint(Paint paint)
void
setPaintMode()
void
setRenderingHint(RenderingHints.Key hintKey, Object hintValue)
void
setRenderingHints(Map<?,?> hints)
void
setStroke(Stroke s)
void
setTransform(AffineTransform Tx)
void
setXORMode(Color c1)
void
shear(double shx, double shy)
String
toString()
void
transform(AffineTransform Tx)
void
translate(double tx, double ty)
void
translate(int x, int y)
-
-
-
Constructor Detail
-
Graphics2DProxy
public Graphics2DProxy(Graphics2D delegate)
-
-
Method Detail
-
create
public Graphics create(int x, int y, int width, int height)
-
setPaintMode
public void setPaintMode()
- Specified by:
setPaintMode
in classGraphics
-
setXORMode
public void setXORMode(Color c1)
- Specified by:
setXORMode
in classGraphics
-
getFontMetrics
public FontMetrics getFontMetrics()
- Overrides:
getFontMetrics
in classGraphics
-
getFontMetrics
public FontMetrics getFontMetrics(Font f)
- Specified by:
getFontMetrics
in classGraphics
-
getClipBounds
public Rectangle getClipBounds()
- Specified by:
getClipBounds
in classGraphics
-
clipRect
public void clipRect(int x, int y, int width, int height)
-
setClip
public void setClip(int x, int y, int width, int height)
-
copyArea
public void copyArea(int x, int y, int width, int height, int dx, int dy)
-
drawLine
public void drawLine(int x1, int y1, int x2, int y2)
-
fillRect
public void fillRect(int x, int y, int width, int height)
-
drawRect
public void drawRect(int x, int y, int width, int height)
-
clearRect
public void clearRect(int x, int y, int width, int height)
-
drawRoundRect
public void drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
- Specified by:
drawRoundRect
in classGraphics
-
fillRoundRect
public void fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight)
- Specified by:
fillRoundRect
in classGraphics
-
drawOval
public void drawOval(int x, int y, int width, int height)
-
fillOval
public void fillOval(int x, int y, int width, int height)
-
drawArc
public void drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
-
fillArc
public void fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
-
drawPolyline
public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
- Specified by:
drawPolyline
in classGraphics
-
drawPolygon
public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
- Specified by:
drawPolygon
in classGraphics
-
drawPolygon
public void drawPolygon(Polygon p)
- Overrides:
drawPolygon
in classGraphics
-
fillPolygon
public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
- Specified by:
fillPolygon
in classGraphics
-
fillPolygon
public void fillPolygon(Polygon p)
- Overrides:
fillPolygon
in classGraphics
-
drawChars
public void drawChars(char[] data, int offset, int length, int x, int y)
-
drawBytes
public void drawBytes(byte[] data, int offset, int length, int x, int y)
-
drawImage
public boolean drawImage(Image img, int x, int y, ImageObserver observer)
-
drawImage
public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
-
drawImage
public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
-
drawImage
public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
-
drawImage
public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
-
drawImage
public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
-
getClipRect
public Rectangle getClipRect()
- Overrides:
getClipRect
in classGraphics
-
hitClip
public boolean hitClip(int x, int y, int width, int height)
-
getClipBounds
public Rectangle getClipBounds(Rectangle r)
- Overrides:
getClipBounds
in classGraphics
-
draw3DRect
public void draw3DRect(int x, int y, int width, int height, boolean raised)
- Overrides:
draw3DRect
in classGraphics2D
-
fill3DRect
public void fill3DRect(int x, int y, int width, int height, boolean raised)
- Overrides:
fill3DRect
in classGraphics2D
-
draw
public void draw(Shape s)
- Specified by:
draw
in classGraphics2D
-
drawImage
public boolean drawImage(Image img, AffineTransform xform, ImageObserver obs)
- Specified by:
drawImage
in classGraphics2D
-
drawImage
public void drawImage(BufferedImage img, BufferedImageOp op, int x, int y)
- Specified by:
drawImage
in classGraphics2D
-
drawRenderedImage
public void drawRenderedImage(RenderedImage img, AffineTransform xform)
- Specified by:
drawRenderedImage
in classGraphics2D
-
drawRenderableImage
public void drawRenderableImage(RenderableImage img, AffineTransform xform)
- Specified by:
drawRenderableImage
in classGraphics2D
-
drawString
public void drawString(String str, int x, int y)
- Specified by:
drawString
in classGraphics2D
-
drawString
public void drawString(String str, float x, float y)
- Specified by:
drawString
in classGraphics2D
-
drawString
public void drawString(AttributedCharacterIterator iterator, int x, int y)
- Specified by:
drawString
in classGraphics2D
-
drawString
public void drawString(AttributedCharacterIterator iterator, float x, float y)
- Specified by:
drawString
in classGraphics2D
-
drawGlyphVector
public void drawGlyphVector(GlyphVector g, float x, float y)
- Specified by:
drawGlyphVector
in classGraphics2D
-
fill
public void fill(Shape s)
- Specified by:
fill
in classGraphics2D
-
hit
public boolean hit(Rectangle rect, Shape s, boolean onStroke)
- Specified by:
hit
in classGraphics2D
-
getDeviceConfiguration
public GraphicsConfiguration getDeviceConfiguration()
- Specified by:
getDeviceConfiguration
in classGraphics2D
-
setComposite
public void setComposite(Composite comp)
- Specified by:
setComposite
in classGraphics2D
-
setPaint
public void setPaint(Paint paint)
- Specified by:
setPaint
in classGraphics2D
-
setStroke
public void setStroke(Stroke s)
- Specified by:
setStroke
in classGraphics2D
-
setRenderingHint
public void setRenderingHint(RenderingHints.Key hintKey, Object hintValue)
- Specified by:
setRenderingHint
in classGraphics2D
-
getRenderingHint
public Object getRenderingHint(RenderingHints.Key hintKey)
- Specified by:
getRenderingHint
in classGraphics2D
-
setRenderingHints
public void setRenderingHints(Map<?,?> hints)
- Specified by:
setRenderingHints
in classGraphics2D
-
addRenderingHints
public void addRenderingHints(Map<?,?> hints)
- Specified by:
addRenderingHints
in classGraphics2D
-
getRenderingHints
public RenderingHints getRenderingHints()
- Specified by:
getRenderingHints
in classGraphics2D
-
translate
public void translate(int x, int y)
- Specified by:
translate
in classGraphics2D
-
translate
public void translate(double tx, double ty)
- Specified by:
translate
in classGraphics2D
-
rotate
public void rotate(double theta)
- Specified by:
rotate
in classGraphics2D
-
rotate
public void rotate(double theta, double x, double y)
- Specified by:
rotate
in classGraphics2D
-
scale
public void scale(double sx, double sy)
- Specified by:
scale
in classGraphics2D
-
shear
public void shear(double shx, double shy)
- Specified by:
shear
in classGraphics2D
-
transform
public void transform(AffineTransform Tx)
- Specified by:
transform
in classGraphics2D
-
setTransform
public void setTransform(AffineTransform Tx)
- Specified by:
setTransform
in classGraphics2D
-
getTransform
public AffineTransform getTransform()
- Specified by:
getTransform
in classGraphics2D
-
getPaint
public Paint getPaint()
- Specified by:
getPaint
in classGraphics2D
-
getComposite
public Composite getComposite()
- Specified by:
getComposite
in classGraphics2D
-
setBackground
public void setBackground(Color color)
- Specified by:
setBackground
in classGraphics2D
-
getBackground
public Color getBackground()
- Specified by:
getBackground
in classGraphics2D
-
getStroke
public Stroke getStroke()
- Specified by:
getStroke
in classGraphics2D
-
clip
public void clip(Shape s)
- Specified by:
clip
in classGraphics2D
-
getFontRenderContext
public FontRenderContext getFontRenderContext()
- Specified by:
getFontRenderContext
in classGraphics2D
-
-