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

(Global Index)

Syntax

interface XMenuListener : com::sun::star::lang::XEventListener ;

Description

the listener interface for receiving menu events on a window.

Method 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.

Method Details



highlight

Syntax

oneway void highlight (
com::sun::star::awt::MenuEvent rEvent );

Description

gets invoked when a menu item is highlighted.


select

Syntax

oneway void select (
com::sun::star::awt::MenuEvent rEvent );

Description

gets invoked when a menu item is seleted.


activate

Syntax

oneway void activate (
com::sun::star::awt::MenuEvent rEvent );

Description

gets invoked when a menu is activated.


deactivate

Syntax

oneway void deactivate (
com::sun::star::awt::MenuEvent rEvent );

Description

gets invoked when a menu is deactivated.

Top of Page