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

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

interface XWindowListener

Base Interface
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.



Methods' 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.

Methods' Details

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

Description
gets invoked when the window has been resized.
windowMoved
 
[ oneway ] void
windowMoved(
[ in ] com::sun::star::awt::WindowEvent e );

Description
gets invoked when the window has been moved.
windowShown
 
[ oneway ] void
windowShown(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when the window has been shown.
windowHidden
 
[ oneway ] void
windowHidden(
[ in ] com::sun::star::lang::EventObject e );

Description
gets invoked when the window has been hidden.

Top of Page