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

interface XFocusListener
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::lang::XEventListener
    |
    +-XFocusListener
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] FocusEvent
 
e );

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

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