yu.ac.bg.etf.javaqx.qswing.events
Interface WindowListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
WindowAdapter

public interface WindowListener
extends java.util.EventListener

Window Listener.

NOTE: This class is not full compatible with java.awt.event.WindowListener class!

Version:
0.2.0
Author:
Slobodan Vrkacevic (slobodan.vrkacevic@gmail.com)

Method Summary
 void windowActivated(WindowEvent e)
          Notifies listener that the window is activated.
 void windowClosed(WindowEvent e)
          Notifies listener that the window is closed.
 void windowClosing(WindowEvent e)
          Notifies listener that the window is closing.
 void windowDeactivated(WindowEvent e)
          Notifies listener that the window is deactivated.
 void windowGainedFocus(WindowEvent e)
          Notifies listener that the window has gained focus.
 void windowLostFocus(WindowEvent e)
          Notifies listener that the window has lost focus.
 void windowOpened(WindowEvent e)
          Notifies listener that the window is made visible.
 void windowStateChanged(WindowEvent e)
          Notifies listener that the window state is changed.
 

Method Detail

windowOpened

public void windowOpened(WindowEvent e)
Notifies listener that the window is made visible.

Parameters:
e - the window event

windowClosing

public void windowClosing(WindowEvent e)
Notifies listener that the window is closing.

Parameters:
e - the window event

windowClosed

public void windowClosed(WindowEvent e)
Notifies listener that the window is closed.

Parameters:
e - the window event

windowActivated

public void windowActivated(WindowEvent e)
Notifies listener that the window is activated.

Parameters:
e - the window event

windowDeactivated

public void windowDeactivated(WindowEvent e)
Notifies listener that the window is deactivated.

Parameters:
e - the window event

windowGainedFocus

public void windowGainedFocus(WindowEvent e)
Notifies listener that the window has gained focus.

Parameters:
e - the window event

windowLostFocus

public void windowLostFocus(WindowEvent e)
Notifies listener that the window has lost focus.

Parameters:
e - the window event

windowStateChanged

public void windowStateChanged(WindowEvent e)
Notifies listener that the window state is changed.

Parameters:
e - the window event


Copyright © 2007 ETF and contributors. All Rights Reserved.