Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: awt ::

interface XTopWindowListener

Base Interface
com::sun::star::lang::XEventListener

Description
makes it possible to receive window events.
See also
XActivateListener


Methods' Summary

windowOpened gets invoked when a window has been opened.
windowClosing gets invoked when a window is in the process of being closed.
windowClosed gets invoked when a window has been closed.
windowMinimized gets invoked when a window is iconified.
windowNormalized gets invoked when a window is de-iconified.
windowActivated gets invoked when a window is activated.
windowDeactivated gets invoked when a window is de-activated.

Methods' Details

windowOpened
 
[ oneway ] void
windowOpened(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window has been opened.
windowClosing
 
[ oneway ] void
windowClosing(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window is in the process of being closed.

The close operation can be overridden at this point.

windowClosed
 
[ oneway ] void
windowClosed(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window has been closed.
windowMinimized
 
[ oneway ] void
windowMinimized(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window is iconified.
windowNormalized
 
[ oneway ] void
windowNormalized(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window is de-iconified.
windowActivated
 
[ oneway ] void
windowActivated(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window is activated.
windowDeactivated
 
[ oneway ] void
windowDeactivated(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when a window is de-activated.

Top of Page