Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.gui4j
Interface Gui4jControllerAdvanced  view Gui4jControllerAdvanced download Gui4jControllerAdvanced.java

All Superinterfaces:
Gui4jCallBase, Gui4jController

public interface Gui4jControllerAdvanced
extends Gui4jController


Method Summary
 void windowActivated()
          Invoked when the Window is set to be the active Window.
 void windowDeactivated()
          Invoked when a Window is no longer the active Window.
 void windowDeiconified()
          Invoked when a window is changed from a minimized to a normal state.
 void windowIconified()
          Invoked when a window is changed from a normal to a minimized state.
 void windowOpened()
          Invoked the first time a window is made visible.
 
Methods inherited from interface org.gui4j.Gui4jController
onWindowClosing, windowClosed
 
Methods inherited from interface org.gui4j.Gui4jCallBase
getExceptionHandler, getGui4j
 

Method Detail

windowOpened

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


windowIconified

public void windowIconified()
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()
Invoked when a window is changed from a minimized to a normal state.


windowActivated

public void windowActivated()
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.


windowDeactivated

public void windowDeactivated()
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.