struct MouseEvent in module com::sun::star::awt::

(Global Index)

Syntax

struct MouseEvent : com::sun::star::awt::InputEvent ;

Description

specifies an event from the mouse.

See also

InputEvent

Field Summary

Buttons contains the pressed mouse buttons.

X contains the x coordinate location of the mouse.

Y contains the y coordinate location of the mouse.

ClickCount contains the number of mouse clicks associated with event.

PopupTrigger specifies if this event is a popup-menu trigger event.

Field Details



Buttons

Syntax

short Buttons;

Description

contains the pressed mouse buttons.

Zero ore more constants from the MouseButton group.


X

Syntax

long X;

Description

contains the x coordinate location of the mouse.


Y

Syntax

long Y;

Description

contains the y coordinate location of the mouse.


ClickCount

Syntax

long ClickCount;

Description

contains the number of mouse clicks associated with event.


PopupTrigger

Syntax

boolean PopupTrigger;

Description

specifies if this event is a popup-menu trigger event.

Top of Page