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

(Global Index)

Syntax

interface XFocusListener : 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.

Method Summary

focusGained gets invoked when a window gains the keyboard focus.

focusLost gets invoked when a window loses the keyboard focus.

Method Details



focusGained

Syntax

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

Description

gets invoked when a window gains the keyboard focus.

See also

XFocusListener::windowActivated

focusLost

Syntax

oneway void focusLost (
com::sun::star::awt::FocusEvent e );

Description

gets invoked when a window loses the keyboard focus.

See also

XFocusListener::windowDeactivated
Top of Page