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

interface XMenuListener
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::lang::XEventListener
    |
    +-XMenuListener
Description
the listener interface for receiving menu events on a window.

Methods' Summary
highlight gets invoked when a menu item is highlighted.
select gets invoked when a menu item is seleted.
activate gets invoked when a menu is activated.
deactivate gets invoked when a menu is deactivated.
Methods' Details
highlight
[oneway] void
highlight(
 
[in] MenuEvent
 
rEvent );

Description
gets invoked when a menu item is highlighted.
select
[oneway] void
select(
 
[in] MenuEvent
 
rEvent );

Description
gets invoked when a menu item is seleted.
activate
[oneway] void
activate(
 
[in] MenuEvent
 
rEvent );

Description
gets invoked when a menu is activated.
deactivate
[oneway] void
deactivate(
 
[in] MenuEvent
 
rEvent );

Description
gets invoked when a menu is deactivated.
Top of Page