Package com.jogamp.newt.event
Class TraceWindowAdapter
java.lang.Object
com.jogamp.newt.event.TraceWindowAdapter
- All Implemented Interfaces:
NEWTEventListener
,WindowListener
,EventListener
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Window has been destroyed.void
Window destruction has been requested.void
Window gained focus.void
Window lost focus.void
Window has been moved.void
Window area shall be repainted.void
Window is resized, your application shall respect the new window dimension.
-
Constructor Details
-
TraceWindowAdapter
public TraceWindowAdapter() -
TraceWindowAdapter
-
-
Method Details
-
windowResized
Description copied from interface:WindowListener
Window is resized, your application shall respect the new window dimension. A repaint is recommended.- Specified by:
windowResized
in interfaceWindowListener
-
windowMoved
Description copied from interface:WindowListener
Window has been moved.- Specified by:
windowMoved
in interfaceWindowListener
-
windowDestroyNotify
Description copied from interface:WindowListener
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.- Specified by:
windowDestroyNotify
in interfaceWindowListener
-
windowDestroyed
Description copied from interface:WindowListener
Window has been destroyed.- Specified by:
windowDestroyed
in interfaceWindowListener
-
windowGainedFocus
Description copied from interface:WindowListener
Window gained focus.- Specified by:
windowGainedFocus
in interfaceWindowListener
-
windowLostFocus
Description copied from interface:WindowListener
Window lost focus.- Specified by:
windowLostFocus
in interfaceWindowListener
-
windowRepaint
Description copied from interface:WindowListener
Window area shall be repainted.- Specified by:
windowRepaint
in interfaceWindowListener
-