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

(Global Index)

Syntax

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

Description

makes it possible to receive window events.

Component events are provided only for notification purposes. Moves and resizes will be handled interally by the window component, so that GUI layout works properly regardless of whether a program registers such a listener or not.

Method Summary

windowResized gets invoked when the window has been resized.

windowMoved gets invoked when the window has been moved.

windowShown gets invoked when the window has been shown.

windowHidden gets invoked when the window has been hidden.

Method Details



windowResized

Syntax

oneway void windowResized (
com::sun::star::awt::WindowEvent e );

Description

gets invoked when the window has been resized.


windowMoved

Syntax

oneway void windowMoved (
com::sun::star::awt::WindowEvent e );

Description

gets invoked when the window has been moved.


windowShown

Syntax

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

Description

gets invoked when the window has been shown.


windowHidden

Syntax

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

Description

gets invoked when the window has been hidden.

Top of Page