public class FadeKind
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static FadeKind |
ARM
Arming a component.
|
static FadeKind |
ENABLE
Enabling a component.
|
static FadeKind |
FOCUS
Focusing a component.
|
static FadeKind |
FOCUS_LOOP_ANIMATION
Fade kind for focus loop animation.
|
static FadeKind |
GHOSTING_BUTTON_PRESS
Fade kind that specifies the "ghosting image" effects on buttons when the
button is pressed.
|
static FadeKind |
GHOSTING_ICON_ROLLOVER
Fade kind that specifies the "ghosting image" effects on button icons
when the button is rolled-over.
|
static FadeKind |
ICON_GLOW
Fade kind that specifies the "glow" effects on icons when the relevant
control is rolled over.
|
protected java.lang.String |
id
Fade kind ID.
|
protected boolean |
isCore |
static FadeKind |
PRESS
Pressing a component.
|
static FadeKind |
ROLLOVER
Rollover a component.
|
static FadeKind |
SELECTION
Selecting a component.
|
Constructor and Description |
---|
FadeKind(java.lang.String id)
Creates a new fade kind which is allowed by default.
|
FadeKind(java.lang.String id,
boolean isDefaultAllowed)
Creates a new fade kind.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
int |
hashCode() |
java.lang.String |
toString() |
protected java.lang.String id
protected boolean isCore
public static final FadeKind ARM
public static final FadeKind PRESS
public static final FadeKind FOCUS
public static final FadeKind FOCUS_LOOP_ANIMATION
Fade kind for focus loop animation. Disabled by default, use
FadeConfigurationManager.allowFades(FadeKind)
to enable.
public static final FadeKind ENABLE
public static final FadeKind ROLLOVER
public static final FadeKind SELECTION
public static final FadeKind GHOSTING_ICON_ROLLOVER
FadeConfigurationManager.allowFades(FadeKind)
to enable.public static final FadeKind GHOSTING_BUTTON_PRESS
FadeConfigurationManager.allowFades(FadeKind)
to enable.public static final FadeKind ICON_GLOW
FadeConfigurationManager.allowFades(FadeKind)
to enable.public FadeKind(java.lang.String id)
id
- Fade kind ID.public FadeKind(java.lang.String id, boolean isDefaultAllowed)
id
- Fade kind ID.isDefaultAllowed
- Indicates whether the newly create fade kind is allowed by
default.