Package com.jogamp.newt.event
Interface WindowListener
- All Superinterfaces:
EventListener,NEWTEventListener
- All Known Implementing Classes:
NEWTDemoListener,TraceWindowAdapter,WindowAdapter
NEWT
WindowEvent listener.-
Method Summary
Modifier and TypeMethodDescriptionvoidWindow has been destroyed.voidWindow destruction has been requested.voidWindow gained focus.voidWindow lost focus.voidWindow has been moved.voidWindow area shall be repainted.voidWindow is resized, your application shall respect the new window dimension.
-
Method Details
-
windowResized
Window is resized, your application shall respect the new window dimension. A repaint is recommended. -
windowMoved
Window has been moved. -
windowDestroyNotify
Window destruction has been requested.Depending on the
In case the window will be destroyed (see above), release of resources is recommended.default close operation, the window maybe destroyed or not. -
windowDestroyed
Window has been destroyed. -
windowGainedFocus
Window gained focus. -
windowLostFocus
Window lost focus. -
windowRepaint
Window area shall be repainted.
-