Package | Description |
---|---|
org.jvnet.lafwidget.animation |
Modifier and Type | Class and Description |
---|---|
class |
FadeTrackerAdapter
Default implementation of
FadeTrackerCallback that does nothing. |
class |
UIThreadFadeTrackerAdapter
Empty implementation of
FadeTrackerCallback that does nothing but is
marked to run on the EDT. |
Modifier and Type | Field and Description |
---|---|
protected FadeTrackerCallback |
FadeStateListener.callback
Optional application callback.
|
Modifier and Type | Method and Description |
---|---|
FadeTrackerCallback |
FadeState.getCallback()
Returns the application callback.
|
Modifier and Type | Method and Description |
---|---|
void |
FadeState.setCallback(FadeTrackerCallback callback)
Sets the callback.
|
long |
FadeTracker.trackFade(java.awt.Component comp,
FadeKind fadeKind,
boolean isFadeIn,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade tracking on the specified component.
|
long |
FadeTracker.trackFadeIn(FadeKind fadeKind,
java.awt.Component comp,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade-in tracking on the specified component.
|
long |
FadeTracker.trackFadeIn(FadeKind fadeKind,
java.awt.Component comp,
java.lang.Comparable<?> componentId,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade-in tracking on the specified component.
|
long |
FadeTracker.trackFadeIn(FadeKind fadeKind,
java.awt.Component comp,
java.lang.Comparable<?> componentId,
boolean toRepaintParent,
FadeTrackerCallback callback,
LafConstants.AnimationKind aKind)
Requests start of fade-in tracking on the specified component.
|
long |
FadeTracker.trackFadeIn(FadeKind fadeKind,
java.awt.Component comp,
int componentId,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade-in tracking on the specified component.
|
long |
FadeTracker.trackFadeLooping(FadeKind fadeKind,
LafConstants.AnimationKind animationKind,
java.awt.Component comp,
java.lang.Comparable<?> componentId,
boolean toRepaintParent,
FadeTrackerCallback callback,
int loopCount,
boolean isLoopingReverse)
Requests start of looping fade tracking on the specified component.
|
long |
FadeTracker.trackFadeOut(FadeKind fadeKind,
java.awt.Component comp,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade-out tracking on the specified component.
|
long |
FadeTracker.trackFadeOut(FadeKind fadeKind,
java.awt.Component comp,
java.lang.Comparable<?> componentId,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade-out tracking on the specified component.
|
long |
FadeTracker.trackFadeOut(FadeKind fadeKind,
java.awt.Component comp,
java.lang.Comparable<?> componentId,
boolean toRepaintParent,
FadeTrackerCallback callback,
LafConstants.AnimationKind aKind)
Requests start of fade-out tracking on the specified component.
|
long |
FadeTracker.trackFadeOut(FadeKind fadeKind,
java.awt.Component comp,
int componentId,
boolean toRepaintParent,
FadeTrackerCallback callback)
Requests start of fade-out tracking on the specified component.
|
Constructor and Description |
---|
FadeStateListener(java.awt.Component comp,
javax.swing.ButtonModel buttonModel,
FadeTrackerCallback callback)
Creates a new listener on model changes that can cause fade animation
transitions.
|
FadeStateListener(java.awt.Component comp,
java.lang.Comparable<?> extraKey,
javax.swing.ButtonModel buttonModel,
FadeTrackerCallback callback,
java.util.Set<FadeKind> toIgnore)
Creates a new listener on model changes that can cause fade animation
transitions.
|