File: RectanglePainter.java

package info (click to toggle)
mac-widgets 0.10.0%2Bsvn416-dfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,968 kB
  • sloc: java: 9,909; makefile: 13; sh: 12
file content (27 lines) | stat: -rw-r--r-- 810 bytes parent folder | download | duplicates (4)
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);
    }

}