1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
package com.explodingpixels.painter;
import java.awt.Color;
import java.awt.Component;
import java.awt.Graphics2D;
/**
* An implemenation of {@link MacWidgetsPainter} that fills the given width and height of a {@link Component} with a solid color.
*/
public class RectanglePainter implements MacWidgetsPainter<Component> {
private final Color fFillColor;
/**
* Creates a {@link MacWidgetsPainter} that fills a {@link Component} with the given {@link Color}.
* @param fillColor the {@code Color} to fill the {@code Component} with.
*/
public RectanglePainter(Color fillColor) {
fFillColor = fillColor;
}
public void paint(Graphics2D g, Component object, int width, int height) {
g.setColor(fFillColor);
g.fillRect(0, 0, width, height);
}
}
|