Class FixedTransformComponentPainter
- java.lang.Object
-
- net.infonode.gui.componentpainter.AbstractComponentPainter
-
- net.infonode.gui.componentpainter.AbstractComponentPainterWrapper
-
- net.infonode.gui.componentpainter.FixedTransformComponentPainter
-
- All Implemented Interfaces:
java.io.Serializable
,ComponentPainter
public class FixedTransformComponentPainter extends AbstractComponentPainterWrapper
A painter that paints its wrapped painter using the same fixed values for direction, horizontal flip and vertical flip.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FixedTransformComponentPainter(ComponentPainter painter)
FixedTransformComponentPainter(ComponentPainter painter, Direction direction)
FixedTransformComponentPainter(ComponentPainter painter, Direction direction, boolean horizontalFlip, boolean verticalFlip)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
paint(java.awt.Component component, java.awt.Graphics g, int x, int y, int width, int height)
Paints an area of a component.void
paint(java.awt.Component component, java.awt.Graphics g, int x, int y, int width, int height, Direction direction, boolean horizontalFlip, boolean verticalFlip)
Paints an area in a specific direction and optinally flipped horizontally and/or vertically.-
Methods inherited from class net.infonode.gui.componentpainter.AbstractComponentPainterWrapper
getColor, getPainter, isOpaque
-
-
-
-
Constructor Detail
-
FixedTransformComponentPainter
public FixedTransformComponentPainter(ComponentPainter painter)
-
FixedTransformComponentPainter
public FixedTransformComponentPainter(ComponentPainter painter, Direction direction)
-
FixedTransformComponentPainter
public FixedTransformComponentPainter(ComponentPainter painter, Direction direction, boolean horizontalFlip, boolean verticalFlip)
-
-
Method Detail
-
paint
public void paint(java.awt.Component component, java.awt.Graphics g, int x, int y, int width, int height)
Description copied from interface:ComponentPainter
Paints an area of a component. The area should be painted the same way as for direction Direction.RIGHT without any flipping.- Specified by:
paint
in interfaceComponentPainter
- Overrides:
paint
in classAbstractComponentPainter
- Parameters:
component
- the component to paint ong
- the graphics to paint onx
- the x-coordinatey
- the y-coordinatewidth
- the widthheight
- the height
-
paint
public void paint(java.awt.Component component, java.awt.Graphics g, int x, int y, int width, int height, Direction direction, boolean horizontalFlip, boolean verticalFlip)
Description copied from interface:ComponentPainter
Paints an area in a specific direction and optinally flipped horizontally and/or vertically. The flips are performed before the rotation is applied.- Specified by:
paint
in interfaceComponentPainter
- Overrides:
paint
in classAbstractComponentPainterWrapper
- Parameters:
component
- the component to paint ong
- the graphics to paint onx
- the x-coordinatey
- the y-coordinatewidth
- the widthheight
- the heightdirection
- the direction, Direction.RIGHT is the normal directionhorizontalFlip
- flip the painted graphics horizontallyverticalFlip
- flip the painted graphics vertically
-
-