- java.lang.Object
-
- javax.swing.plaf.synth.ColorType
-
public class ColorType extends Object
A typesafe enumeration of colors that can be fetched from a style.Each
SynthStyle
has a set ofColorType
s that are accessed by way of theSynthStyle.getColor(SynthContext, ColorType)
method.SynthStyle
'sinstallDefaults
will install theFOREGROUND
color as the foreground of the Component, and theBACKGROUND
color to the background of the component (assuming that you have not explicitly specified a foreground and background color). Some components support more color based properties, for exampleJList
has the propertyselectionForeground
which will be mapped toFOREGROUND
with a component state ofSynthConstants.SELECTED
.The following example shows a custom
SynthStyle
that returns a red Color for theDISABLED
state, otherwise a black color.class MyStyle extends SynthStyle { private Color disabledColor = new ColorUIResource(Color.RED); private Color color = new ColorUIResource(Color.BLACK); protected Color getColorForState(SynthContext context, ColorType type){ if (context.getComponentState() == SynthConstants.DISABLED) { return disabledColor; } return color; } }
- Since:
- 1.5
-
-
Field Summary
Fields Modifier and Type Field Description static ColorType
BACKGROUND
ColorType for the background of a region.static ColorType
FOCUS
ColorType for the focus.static ColorType
FOREGROUND
ColorType for the foreground of a region.static int
MAX_COUNT
Maximum number ofColorType
s.static ColorType
TEXT_BACKGROUND
ColorType for the background of a region.static ColorType
TEXT_FOREGROUND
ColorType for the foreground of a region.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getID()
Returns a unique id, as an integer, for this ColorType.String
toString()
Returns the textual description of thisColorType
.
-
-
-
Field Detail
-
FOREGROUND
public static final ColorType FOREGROUND
ColorType for the foreground of a region.
-
BACKGROUND
public static final ColorType BACKGROUND
ColorType for the background of a region.
-
TEXT_FOREGROUND
public static final ColorType TEXT_FOREGROUND
ColorType for the foreground of a region.
-
TEXT_BACKGROUND
public static final ColorType TEXT_BACKGROUND
ColorType for the background of a region.
-
FOCUS
public static final ColorType FOCUS
ColorType for the focus.
-
MAX_COUNT
public static final int MAX_COUNT
Maximum number ofColorType
s.
-
-
Constructor Detail
-
ColorType
protected ColorType(String description)
Creates a new ColorType with the specified description.- Parameters:
description
- String description of the ColorType.
-
-