Top Fields Constructors Methods
javax.swing.plaf.nimbus

pack-priv final Class ToolBarButtonPainter

extends AbstractRegionPainter
Class Inheritance
Imports
java.awt.*, java.awt.geom.*, java.awt.image.*, javax.swing.*, .Painter

Field Summary

Modifier and TypeField and Description
pack-priv static final int
pack-priv static final int
pack-priv static final int
pack-priv static final int
pack-priv static final int
pack-priv static final int
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Color
private Object[]
private AbstractRegionPainter.PaintContext
private Ellipse2D
private Path2D
private Rectangle2D
private RoundRectangle2D
private int

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
private Paint
private Paint
private Paint
private Path2D
private RoundRectangle2D
private RoundRectangle2D
private RoundRectangle2D
private RoundRectangle2D
protected void
doPaint(Graphics2D
The Graphics2D surface to paint to
g
,
JComponent
The JComponent related to the drawing event. For example, if the region being rendered is Button, then c will be a JButton. If the region being drawn is ScrollBarSlider, then the component will be JScrollBar. This value may be null.
c
,
int
The width of the region to paint. Note that in the case of painting the foreground, this value may differ from c.getWidth().
width
,
int
The height of the region to paint. Note that in the case of painting the foreground, this value may differ from c.getHeight().
height
,
Object[]
The result of the call to getExtendedCacheKeys()
extendedCacheKeys
)

Implements abstract javax.swing.plaf.nimbus.AbstractRegionPainter.doPaint.

Actually performs the painting operation.
protected final AbstractRegionPainter.PaintContext
getPaintContext()

Implements abstract javax.swing.plaf.nimbus.AbstractRegionPainter.getPaintContext.

Gets the PaintContext for this painting operation.

private void
private void
private void
private void
private void
Inherited from javax.swing.plaf.nimbus.AbstractRegionPainter:
configureGraphicsdecodeAnchorXdecodeAnchorYdecodeColordecodeColordecodeGradientdecodeRadialGradientdecodeXdecodeYgetComponentColorgetExtendedCacheKeyspaint

Field Detail

BACKGROUND_ENABLEDback to summary
pack-priv static final int BACKGROUND_ENABLED
BACKGROUND_FOCUSEDback to summary
pack-priv static final int BACKGROUND_FOCUSED
BACKGROUND_MOUSEOVERback to summary
pack-priv static final int BACKGROUND_MOUSEOVER
BACKGROUND_MOUSEOVER_FOCUSEDback to summary
pack-priv static final int BACKGROUND_MOUSEOVER_FOCUSED
BACKGROUND_PRESSEDback to summary
pack-priv static final int BACKGROUND_PRESSED
BACKGROUND_PRESSED_FOCUSEDback to summary
pack-priv static final int BACKGROUND_PRESSED_FOCUSED
color1back to summary
private Color color1
color10back to summary
private Color color10
color11back to summary
private Color color11
color12back to summary
private Color color12
color13back to summary
private Color color13
color2back to summary
private Color color2
color3back to summary
private Color color3
color4back to summary
private Color color4
color5back to summary
private Color color5
color6back to summary
private Color color6
color7back to summary
private Color color7
color8back to summary
private Color color8
color9back to summary
private Color color9
componentColorsback to summary
private Object[] componentColors
ctxback to summary
private AbstractRegionPainter.PaintContext ctx

Hides javax.swing.plaf.nimbus.AbstractRegionPainter.ctx.

ellipseback to summary
private Ellipse2D ellipse
pathback to summary
private Path2D path
rectback to summary
private Rectangle2D rect
roundRectback to summary
private RoundRectangle2D roundRect
stateback to summary
private int state

Constructor Detail

ToolBarButtonPainterback to summary
public ToolBarButtonPainter(AbstractRegionPainter.PaintContext ctx, int state)

Method Detail

decodeGradient1back to summary
private Paint decodeGradient1(Shape s)
decodeGradient2back to summary
private Paint decodeGradient2(Shape s)
decodeGradient3back to summary
private Paint decodeGradient3(Shape s)
decodePath1back to summary
private Path2D decodePath1()
decodeRoundRect1back to summary
private RoundRectangle2D decodeRoundRect1()
decodeRoundRect2back to summary
private RoundRectangle2D decodeRoundRect2()
decodeRoundRect3back to summary
private RoundRectangle2D decodeRoundRect3()
decodeRoundRect4back to summary
private RoundRectangle2D decodeRoundRect4()
doPaintback to summary
protected void doPaint(Graphics2D g, JComponent c, int width, int height, Object[] extendedCacheKeys)

Implements abstract javax.swing.plaf.nimbus.AbstractRegionPainter.doPaint.

Doc from javax.swing.plaf.nimbus.AbstractRegionPainter.doPaint.

Actually performs the painting operation. Subclasses must implement this method. The graphics object passed may represent the actual surface being rendered to, or it may be an intermediate buffer. It has also been pre-translated. Simply render the component as if it were located at 0, 0 and had a width of width and a height of height. For performance reasons, you may want to read the clip from the Graphics2D object and only render within that space.

Parameters
g:Graphics2D

The Graphics2D surface to paint to

c:JComponent

The JComponent related to the drawing event. For example, if the region being rendered is Button, then c will be a JButton. If the region being drawn is ScrollBarSlider, then the component will be JScrollBar. This value may be null.

width:int

The width of the region to paint. Note that in the case of painting the foreground, this value may differ from c.getWidth().

height:int

The height of the region to paint. Note that in the case of painting the foreground, this value may differ from c.getHeight().

extendedCacheKeys:Object[]

The result of the call to getExtendedCacheKeys()

Annotations
@Override
getPaintContextback to summary
protected final AbstractRegionPainter.PaintContext getPaintContext()

Implements abstract javax.swing.plaf.nimbus.AbstractRegionPainter.getPaintContext.

Doc from javax.swing.plaf.nimbus.AbstractRegionPainter.getPaintContext.

Gets the PaintContext for this painting operation. This method is called on every paint, and so should be fast and produce no garbage. The PaintContext contains information such as cache hints. It also contains data necessary for decoding points at runtime, such as the stretching insets, the canvas size at which the encoded points were defined, and whether the stretching insets are inverted.

This method allows for subclasses to package the painting of different states with possibly different canvas sizes, etc, into one AbstractRegionPainter implementation.

Returns:AbstractRegionPainter.PaintContext

a PaintContext associated with this paint operation.

Annotations
@Override
paintBackgroundFocusedback to summary
private void paintBackgroundFocused(Graphics2D g)
paintBackgroundMouseOverback to summary
private void paintBackgroundMouseOver(Graphics2D g)
paintBackgroundMouseOverAndFocusedback to summary
private void paintBackgroundMouseOverAndFocused(Graphics2D g)
paintBackgroundPressedback to summary
private void paintBackgroundPressed(Graphics2D g)
paintBackgroundPressedAndFocusedback to summary
private void paintBackgroundPressedAndFocused(Graphics2D g)