javax.rad.ui.event
Interface IWindowListener


public interface IWindowListener

Platform and technology independent window listener definition. It is designed for use with AWT, Swing, SWT, JSP, JSF, ... .

See Also:
WindowListener

Method Summary
 void windowActivated(UIWindowEvent pWindowEvent)
          Invoked when the Window is set to be the active Window.
 void windowClosed(UIWindowEvent pWindowEvent)
          Invoked when a window has been closed as the result of calling dispose on the window.
 void windowClosing(UIWindowEvent pWindowEvent)
          Invoked when the user attempts to close the window from the window's system menu.
 void windowDeactivated(UIWindowEvent pWindowEvent)
          Invoked when a Window is no longer the active Window.
 void windowDeiconified(UIWindowEvent pWindowEvent)
          Invoked when a window is changed from a minimized to a normal state.
 void windowIconified(UIWindowEvent pWindowEvent)
          Invoked when a window is changed from a normal to a minimized state.
 void windowOpened(UIWindowEvent pWindowEvent)
          Invoked the first time a window is made visible.
 

Method Detail

windowOpened

void windowOpened(UIWindowEvent pWindowEvent)
Invoked the first time a window is made visible.

Parameters:
pWindowEvent - the window event.

windowClosing

void windowClosing(UIWindowEvent pWindowEvent)
Invoked when the user attempts to close the window from the window's system menu.

Parameters:
pWindowEvent - the window event.

windowClosed

void windowClosed(UIWindowEvent pWindowEvent)
Invoked when a window has been closed as the result of calling dispose on the window.

Parameters:
pWindowEvent - the window event.

windowIconified

void windowIconified(UIWindowEvent pWindowEvent)
Invoked when a window is changed from a normal to a minimized state. For many platforms, a minimized window is displayed as the icon specified in the window's iconImage property.

Parameters:
pWindowEvent - the window event.

windowDeiconified

void windowDeiconified(UIWindowEvent pWindowEvent)
Invoked when a window is changed from a minimized to a normal state.

Parameters:
pWindowEvent - the window event.

windowActivated

void windowActivated(UIWindowEvent pWindowEvent)
Invoked when the Window is set to be the active Window. Only a Frame or a Dialog can be the active Window. The native windowing system may denote the active Window or its children with special decorations, such as a highlighted title bar. The active Window is always either the focused Window, or the first Frame or Dialog that is an owner of the focused Window.

Parameters:
pWindowEvent - the window event.

windowDeactivated

void windowDeactivated(UIWindowEvent pWindowEvent)
Invoked when a Window is no longer the active Window. Only a Frame or a Dialog can be the active Window. The native windowing system may denote the active Window or its children with special decorations, such as a highlighted title bar. The active Window is always either the focused Window, or the first Frame or Dialog that is an owner of the focused Window.

Parameters:
pWindowEvent - the window event.


Copyright © 2009 SIB Visions GmbH. All Rights Reserved.