Class SolidColorComponentPainter

java.lang.Object
net.infonode.gui.componentpainter.AbstractComponentPainter
net.infonode.gui.componentpainter.SolidColorComponentPainter
All Implemented Interfaces:
Serializable, ComponentPainter

public class SolidColorComponentPainter extends AbstractComponentPainter
Paints an area with a solid color.
See Also:
  • Field Details

    • BACKGROUND_COLOR_PAINTER

      public static final SolidColorComponentPainter BACKGROUND_COLOR_PAINTER
      Paints a component using the background color set in the component.
  • Constructor Details

    • SolidColorComponentPainter

      public SolidColorComponentPainter(ColorProvider colorProvider)
      Constructor.
      Parameters:
      colorProvider - the color provider
  • Method Details

    • paint

      public void paint(Component component, 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 interface ComponentPainter
      Overrides:
      paint in class AbstractComponentPainter
      Parameters:
      component - the component to paint on
      g - the graphics to paint on
      x - the x-coordinate
      y - the y-coordinate
      width - the width
      height - the height
      direction - the direction, Direction.RIGHT is the normal direction
      horizontalFlip - flip the painted graphics horizontally
      verticalFlip - flip the painted graphics vertically
    • isOpaque

      public boolean isOpaque(Component component)
      Description copied from interface: ComponentPainter
      Returns true if this painter paints the entire area with an opaque color.
      Specified by:
      isOpaque in interface ComponentPainter
      Overrides:
      isOpaque in class AbstractComponentPainter
      Parameters:
      component - the component to paint on
      Returns:
      true if this painter paints the entire area with an opaque color
    • getColor

      public Color getColor(Component component)
      Description copied from interface: ComponentPainter
      Returns an approximate average color of the pixels painted by this painter.
      Parameters:
      component - the component to paint on
      Returns:
      an approximate average color of the pixels painted by this painter