interface XTopWindowListener in module com::sun::star::awt::

(Global Index)

Syntax

interface XTopWindowListener : com::sun::star::lang::XEventListener ;

Description

makes it possible to receive window events.

See also

XActivateListener

Method 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.

Method Details



windowOpened

Syntax

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

Description

gets invoked when a window has been opened.


windowClosing

Syntax

oneway void windowClosing (
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

Syntax

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

Description

gets invoked when a window has been closed.


windowMinimized

Syntax

oneway void windowMinimized (
com::sun::star::lang::EventObject e );

Description

gets invoked when a window is iconified.


windowNormalized

Syntax

oneway void windowNormalized (
com::sun::star::lang::EventObject e );

Description

gets invoked when a window is de-iconified.


windowActivated

Syntax

oneway void windowActivated (
com::sun::star::lang::EventObject e );

Description

gets invoked when a window is activated.


windowDeactivated

Syntax

oneway void windowDeactivated (
com::sun::star::lang::EventObject e );

Description

gets invoked when a window is de-activated.

Top of Page