com.jogamp.newt.event
Class WindowAdapter

java.lang.Object
  extended by com.jogamp.newt.event.WindowAdapter
All Implemented Interfaces:
NEWTEventListener, WindowListener, EventListener

public abstract class WindowAdapter
extends Object
implements WindowListener


Constructor Summary
WindowAdapter()
           
 
Method Summary
 void windowDestroyed(WindowEvent e)
          Window has been destroyed.
 void windowDestroyNotify(WindowEvent e)
          Window will be destroyed.
 void windowGainedFocus(WindowEvent e)
          Window gained focus.
 void windowLostFocus(WindowEvent e)
          Window lost focus.
 void windowMoved(WindowEvent e)
          Window has been moved.
 void windowRepaint(WindowUpdateEvent e)
          Window area shall be repainted.
 void windowResized(WindowEvent e)
          Window is resized, your application shall respect the new window dimension.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WindowAdapter

public WindowAdapter()
Method Detail

windowResized

public void windowResized(WindowEvent e)
Description copied from interface: WindowListener
Window is resized, your application shall respect the new window dimension. A repaint is recommended.

Specified by:
windowResized in interface WindowListener

windowMoved

public void windowMoved(WindowEvent e)
Description copied from interface: WindowListener
Window has been moved.

Specified by:
windowMoved in interface WindowListener

windowDestroyNotify

public void windowDestroyNotify(WindowEvent e)
Description copied from interface: WindowListener
Window will be destroyed. Release of resources is recommended.

Specified by:
windowDestroyNotify in interface WindowListener

windowDestroyed

public void windowDestroyed(WindowEvent e)
Description copied from interface: WindowListener
Window has been destroyed.

Specified by:
windowDestroyed in interface WindowListener

windowGainedFocus

public void windowGainedFocus(WindowEvent e)
Description copied from interface: WindowListener
Window gained focus.

Specified by:
windowGainedFocus in interface WindowListener

windowLostFocus

public void windowLostFocus(WindowEvent e)
Description copied from interface: WindowListener
Window lost focus.

Specified by:
windowLostFocus in interface WindowListener

windowRepaint

public void windowRepaint(WindowUpdateEvent e)
Description copied from interface: WindowListener
Window area shall be repainted.

Specified by:
windowRepaint in interface WindowListener


Copyright 2010 JogAmp Community.