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

(Global Index)

Syntax

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

Description

makes it possible to receive events from the mouse in a certain window.

Method Summary

mousePressed gets invoked when a mouse button has been pressed on a window.

mouseReleased gets invoked when a mouse button has been released on a window.

mouseEntered gets invoked when the mouse enters a window.

mouseExited gets invoked when the mouse exits a window.

Method Details



mousePressed

Syntax

oneway void mousePressed (
com::sun::star::awt::MouseEvent e );

Description

gets invoked when a mouse button has been pressed on a window.


mouseReleased

Syntax

oneway void mouseReleased (
com::sun::star::awt::MouseEvent e );

Description

gets invoked when a mouse button has been released on a window.


mouseEntered

Syntax

oneway void mouseEntered (
com::sun::star::awt::MouseEvent e );

Description

gets invoked when the mouse enters a window.


mouseExited

Syntax

oneway void mouseExited (
com::sun::star::awt::MouseEvent e );

Description

gets invoked when the mouse exits a window.

Top of Page