Package jexer.effect
Class WindowTransitionEffect
- java.lang.Object
-
- jexer.effect.WindowTransitionEffect
-
- All Implemented Interfaces:
Effect
- Direct Known Subclasses:
WindowBurnInEffect,WindowFadeOutEffect,WindowWipeInEffect,WindowWipeOutEffect
public abstract class WindowTransitionEffect extends java.lang.Object implements Effect
Make the window fade out using translucence.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classWindowTransitionEffect.DummyWindowThe DummyWindow shows the new screen area contents, while also ignoring events during the Effect execution.
-
Field Summary
Fields Modifier and Type Field Description protected WindowTransitionEffect.DummyWindowdummyWindowThe dummy window that shows the new screen area contents while also ignoring events while the effect is running.
-
Constructor Summary
Constructors Constructor Description WindowTransitionEffect(TWindow window)Public contructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddrawEffect()The draw function called by the DummyScreen.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jexer.effect.Effect
isCompleted, update
-
-
-
-
Field Detail
-
dummyWindow
protected WindowTransitionEffect.DummyWindow dummyWindow
The dummy window that shows the new screen area contents while also ignoring events while the effect is running.
-
-
Constructor Detail
-
WindowTransitionEffect
public WindowTransitionEffect(TWindow window)
Public contructor.- Parameters:
window- the window to fade out
-
-