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

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

interface XFocusListener

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

Description
makes it possible to receive keyboard focus events.

The window which has the keyboard focus is the window which gets the keyboard events.



Methods' Summary

focusGained gets invoked when a window gains the keyboard focus.
focusLost gets invoked when a window loses the keyboard focus.

Methods' Details

focusGained
 
[ oneway ] void
focusGained(
[ in ] com::sun::star::awt::FocusEvent e );

Description
gets invoked when a window gains the keyboard focus.
See also
XFocusListener::windowActivated
focusLost
 
[ oneway ] void
focusLost(
[ in ] com::sun::star::awt::FocusEvent e );

Description
gets invoked when a window loses the keyboard focus.
See also
XFocusListener::windowDeactivated

Top of Page