com.extjs.gxt.ui.client.event
Class WindowListener

java.lang.Object
  extended by com.extjs.gxt.ui.client.event.WindowListener
All Implemented Interfaces:
Listener<WindowEvent>, java.util.EventListener

public class WindowListener
extends java.lang.Object
implements Listener<WindowEvent>

Event interface for windows.


Constructor Summary
WindowListener()
           
 
Method Summary
 void handleEvent(WindowEvent e)
          Sent when an event that the listener has registered for occurs.
 void windowActivate(WindowEvent we)
          Fires after the window is activated.
 void windowDeactivate(WindowEvent we)
          Fires after the window is deactivated.
 void windowHide(WindowEvent we)
          Fires after the window is hidden.
 void windowMaximize(WindowEvent we)
          Fires after the window is maximized.
 void windowMinimize(WindowEvent we)
          Fires after the window is minmized.
 void windowRestore(WindowEvent we)
          Fires after the window is restored.
 void windowShow(WindowEvent we)
          Fires after a window is opened.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WindowListener

public WindowListener()
Method Detail

handleEvent

public void handleEvent(WindowEvent e)
Description copied from interface: Listener
Sent when an event that the listener has registered for occurs.

Specified by:
handleEvent in interface Listener<WindowEvent>
Parameters:
e - the event which occurred

windowActivate

public void windowActivate(WindowEvent we)
Fires after the window is activated.

Parameters:
we - the window event

windowDeactivate

public void windowDeactivate(WindowEvent we)
Fires after the window is deactivated.

Parameters:
we - the window event

windowHide

public void windowHide(WindowEvent we)
Fires after the window is hidden.

Parameters:
we - the window event

windowShow

public void windowShow(WindowEvent we)
Fires after a window is opened.

Parameters:
we - the window event

windowMaximize

public void windowMaximize(WindowEvent we)
Fires after the window is maximized.

Parameters:
we - the window event

windowMinimize

public void windowMinimize(WindowEvent we)
Fires after the window is minmized.

Parameters:
we - the window event

windowRestore

public void windowRestore(WindowEvent we)
Fires after the window is restored.

Parameters:
we - the window event