Synergy Home Page

au.edu.swin.synergy.plugin.mod13.bwt
Interface BWindowListener

All Known Implementing Classes:
BWindowAdapter, BModelEditor

public abstract interface BWindowListener

Any panels that are added to the Window Manager as windows must implement this interface so that they can be informed of window events.

Author:
Tristan Austin Please complete these missing tags
Copyright Belongs To:
 

Method Summary
 void windowActivated(BWindowEvent windowEvent)
          Invoked when the window is set to be the user's active window, which means the window (or one of its subcomponents) will receive keyboard events.
 void windowClosed(BWindowEvent windowEvent)
          Invoked when a window has been closed as the result of calling dispose on the window.
 void windowClosing(BWindowEvent windowEvent)
          Invoked when the user attempts to close the window from the window's system menu.
 void windowDeactivated(BWindowEvent windowEvent)
          Invoked when a window is no longer the user's active window, which means that keyboard events will no longer be delivered to the window or its subcomponents.
 void windowDeiconified(BWindowEvent windowEvent)
          Invoked when a window is changed from a minimized to a normal state.
 void windowIconified(BWindowEvent windowEvent)
          Invoked when a window is changed from a normal to a minimized state.
 void windowOpened(BWindowEvent windowEvent)
          Invoked the first time a window is made visible.
 

Method Detail

windowOpened

public void windowOpened(BWindowEvent windowEvent)
Invoked the first time a window is made visible.

windowClosing

public void windowClosing(BWindowEvent windowEvent)
Invoked when the user attempts to close the window from the window's system menu. If the program does not explicitly hide or dispose the window while processing this event, the window close operation will be cancelled.

windowClosed

public void windowClosed(BWindowEvent windowEvent)
Invoked when a window has been closed as the result of calling dispose on the window.

windowIconified

public void windowIconified(BWindowEvent windowEvent)
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.

windowDeiconified

public void windowDeiconified(BWindowEvent windowEvent)
Invoked when a window is changed from a minimized to a normal state.

windowActivated

public void windowActivated(BWindowEvent windowEvent)
Invoked when the window is set to be the user's active window, which means the window (or one of its subcomponents) will receive keyboard events.

windowDeactivated

public void windowDeactivated(BWindowEvent windowEvent)
Invoked when a window is no longer the user's active window, which means that keyboard events will no longer be delivered to the window or its subcomponents.

Synergy Home Page