org.kde.koala
public class MouseEvent extends UIEvent
UNKNOWN: Introduced in DOM Level 2
Constructor Summary | |
---|---|
protected | MouseEvent(Class dummy) |
Method Summary | |
---|---|
boolean | altKey()
Used to indicate whether the 'alt' key was depressed during the firing
of the event. |
short | button()
During mouse events caused by the depression or release of a mouse
button, button is used to indicate which mouse button changed state. |
long | clientX()
The horizontal coordinate at which the event occurred relative to the
DOM implementation's client area. |
long | clientY()
The vertical coordinate at which the event occurred relative to the DOM
implementation's client area. |
boolean | ctrlKey()
Used to indicate whether the 'ctrl' key was depressed during the firing
of the event. |
void | initMouseEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, long detailArg, long screenXArg, long screenYArg, long clientXArg, long clientYArg, boolean ctrlKeyArg, boolean altKeyArg, boolean shiftKeyArg, boolean metaKeyArg, short buttonArg, Node relatedTargetArg)
The initMouseEvent method is used to initialize the value of a
MouseEvent created through the DocumentEvent interface. |
boolean | metaKey()
Used to indicate whether the 'meta' key was depressed during the firing
of the event. |
Node | relatedTarget()
Used to identify a secondary EventTarget related to a UI event.
|
long | screenX()
The horizontal coordinate at which the event occurred relative to the
origin of the screen coordinate system. |
long | screenY()
The vertical coordinate at which the event occurred relative to the
origin of the screen coordinate system. |
boolean | shiftKey()
Used to indicate whether the 'shift' key was depressed during the firing
of the event. |
UNKNOWN: Used to indicate whether the 'alt' key was depressed during the firing of the event.
UNKNOWN: During mouse events caused by the depression or release of a mouse button, button is used to indicate which mouse button changed state.
UNKNOWN: The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.
UNKNOWN: The vertical coordinate at which the event occurred relative to the DOM implementation's client area.
UNKNOWN: Used to indicate whether the 'ctrl' key was depressed during the firing of the event.
Parameters: typeArg Specifies the event type. canBubbleArg Specifies whether or not the event can bubble. cancelableArg Specifies whether or not the event's default action can be prevented. viewArg Specifies the Event's AbstractView. detailArg Specifies the Event's mouse click count. screenXArg Specifies the Event's screen x coordinate screenYArg Specifies the Event's screen y coordinate clientXArg Specifies the Event's client x coordinate clientYArg Specifies the Event's client y coordinate ctrlKeyArg Specifies whether or not control key was depressed during the Event. altKeyArg Specifies whether or not alt key was depressed during the Event. shiftKeyArg Specifies whether or not shift key was depressed during the Event. metaKeyArg Specifies whether or not meta key was depressed during the Event. buttonArg Specifies the Event's mouse button. relatedTargetArg Specifies the Event's related EventTarget.
UNKNOWN: The initMouseEvent method is used to initialize the value of a MouseEvent created through the DocumentEvent interface.
UNKNOWN: Used to indicate whether the 'meta' key was depressed during the firing of the event.
UNKNOWN: Used to identify a secondary EventTarget related to a UI event.
UNKNOWN: The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.
UNKNOWN: The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.
UNKNOWN: Used to indicate whether the 'shift' key was depressed during the firing of the event.