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

(Global Index)

Syntax

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

Description

makes it possible to receive mouse motion events on a window.

Method Summary

mouseDragged gets invoked when a mouse button is pressed on a window and then dragged.

mouseMoved gets invoked when the mouse button has been moved on a window (with no buttons down).

Method Details



mouseDragged

Syntax

void mouseDragged (
com::sun::star::awt::MouseEvent e );

Description

gets invoked when a mouse button is pressed on a window and then dragged.

Mouse drag events will continue to be delivered to the window where the first event originated until the mouse button is released (regardless of whether the mouse position is within the bounds of the window).


mouseMoved

Syntax

void mouseMoved (
com::sun::star::awt::MouseEvent e );

Description

gets invoked when the mouse button has been moved on a window (with no buttons down).

Top of Page