Interface MouseEvent
-
- All Known Implementing Classes:
DOMMouseEvent
public interface MouseEvent extends UIEvent
TheMouseEventinterface provides specific contextual information associated with Mouse events.In the case of nested elements mouse events are always targeted at the most deeply nested element. Ancestors of the targeted element may use bubbling to obtain notification of mouse events which occur within theirs descendent elements.
To create an instance of the
MouseEventinterface, use theDocumentEvent.createEvent("MouseEvent")method call.Note: When initializing
MouseEventobjects usinginitMouseEventorinitMouseEventNS, implementations should use the client coordinatesclientXandclientYfor calculation of other coordinates (such as target coordinates exposed by DOM Level 0 implementations).See also the Document Object Model (DOM) Level 3 Events Specification .
- Since:
- DOM Level 2
-
-
Field Summary
-
Fields inherited from interface org.w3c.dom.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAltKey()trueif the alt (alternative) key modifier is activated.shortgetButton()During mouse events caused by the depression or release of a mouse button,buttonis used to indicate which mouse button changed state.intgetClientX()The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.intgetClientY()The vertical coordinate at which the event occurred relative to the DOM implementation's client area.booleangetCtrlKey()trueif the control (Ctrl) key modifier is activated.booleangetMetaKey()trueif the meta (Meta) key modifier is activated.booleangetModifierState(java.lang.String keyIdentifierArg)This methods queries the state of a modifier using a key identifier.EventTargetgetRelatedTarget()Used to identify a secondaryEventTargetrelated to a UI event, depending on the type of event.intgetScreenX()The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.intgetScreenY()The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.booleangetShiftKey()trueif the shift (Shift) key modifier is activated.voidinitMouseEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, boolean ctrlKeyArg, boolean altKeyArg, boolean shiftKeyArg, boolean metaKeyArg, short buttonArg, EventTarget relatedTargetArg)TheinitMouseEventmethod is used to initialize the value of aMouseEventobject and has the same behavior asUIEvent.initUIEvent().voidinitMouseEventNS(java.lang.String namespaceURI, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, short buttonArg, EventTarget relatedTargetArg, java.lang.String modifiersList)TheinitMouseEventNSmethod is used to initialize the value of aMouseEventobject and has the same behavior asUIEvent.initUIEventNS().-
Methods inherited from interface org.w3c.dom.events.Event
getBubbles, getCancelable, getCurrentTarget, getDefaultPrevented, getEventPhase, getNamespaceURI, getTarget, getTimeStamp, getType, initEvent, initEventNS, preventDefault, stopImmediatePropagation, stopPropagation
-
Methods inherited from interface org.w3c.dom.events.UIEvent
getDetail, getView, initUIEvent, initUIEventNS
-
-
-
-
Method Detail
-
getScreenX
int getScreenX()
The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.
-
getScreenY
int getScreenY()
The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.
-
getClientX
int getClientX()
The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.
-
getClientY
int getClientY()
The vertical coordinate at which the event occurred relative to the DOM implementation's client area.
-
getCtrlKey
boolean getCtrlKey()
trueif the control (Ctrl) key modifier is activated.
-
getShiftKey
boolean getShiftKey()
trueif the shift (Shift) key modifier is activated.
-
getAltKey
boolean getAltKey()
trueif the alt (alternative) key modifier is activated.Note: The Option key modifier on Macintosh systems must be represented using this key modifier.
-
getMetaKey
boolean getMetaKey()
trueif the meta (Meta) key modifier is activated.Note: The Command key modifier on Macintosh system must be represented using this meta key.
-
getButton
short getButton()
During mouse events caused by the depression or release of a mouse button,buttonis used to indicate which mouse button changed state.0indicates the normal button of the mouse (in general on the left or the one button on Macintosh mice, used to activate a button or select text).2indicates the contextual property (in general on the right, used to display a context menu) button of the mouse if present.1indicates the extra (in general in the middle and often combined with the mouse wheel) button. Some mice may provide or simulate more buttons, and values higher than2can be used to represent such buttons.
-
getRelatedTarget
EventTarget getRelatedTarget()
Used to identify a secondaryEventTargetrelated to a UI event, depending on the type of event.
-
initMouseEvent
void initMouseEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, boolean ctrlKeyArg, boolean altKeyArg, boolean shiftKeyArg, boolean metaKeyArg, short buttonArg, EventTarget relatedTargetArg)TheinitMouseEventmethod is used to initialize the value of aMouseEventobject and has the same behavior asUIEvent.initUIEvent().- Parameters:
typeArg- Refer to theUIEvent.initUIEvent()method for a description of this parameter.canBubbleArg- Refer to theUIEvent.initUIEvent()method for a description of this parameter.cancelableArg- Refer to theUIEvent.initUIEvent()method for a description of this parameter.viewArg- Refer to theUIEvent.initUIEvent()method for a description of this parameter.detailArg- Refer to theUIEvent.initUIEvent()method for a description of this parameter.screenXArg- SpecifiesMouseEvent.screenX.screenYArg- SpecifiesMouseEvent.screenY.clientXArg- SpecifiesMouseEvent.clientX.clientYArg- SpecifiesMouseEvent.clientY.ctrlKeyArg- SpecifiesMouseEvent.ctrlKey.altKeyArg- SpecifiesMouseEvent.altKey.shiftKeyArg- SpecifiesMouseEvent.shiftKey.metaKeyArg- SpecifiesMouseEvent.metaKey.buttonArg- SpecifiesMouseEvent.button.relatedTargetArg- SpecifiesMouseEvent.relatedTarget. This value may benull.
-
getModifierState
boolean getModifierState(java.lang.String keyIdentifierArg)
This methods queries the state of a modifier using a key identifier. See also .- Parameters:
keyIdentifierArg- A modifier key identifier, as defined by theKeyboardEvent.keyIdentifierattribute. Common modifier keys are"Alt","AltGraph","CapsLock","Control","Meta","NumLock","Scroll", or"Shift".Note: If an application wishes to distinguish between right and left modifiers, this information could be deduced using keyboard events and
KeyboardEvent.keyLocation.- Returns:
trueif it is modifier key and the modifier is activated,falseotherwise.- Since:
- DOM Level 3
-
initMouseEventNS
void initMouseEventNS(java.lang.String namespaceURI, java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, short buttonArg, EventTarget relatedTargetArg, java.lang.String modifiersList)TheinitMouseEventNSmethod is used to initialize the value of aMouseEventobject and has the same behavior asUIEvent.initUIEventNS().- Parameters:
namespaceURI- Refer to theUIEvent.initUIEventNS()method for a description of this parameter.typeArg- Refer to theUIEvent.initUIEventNS()method for a description of this parameter.canBubbleArg- Refer to theUIEvent.initUIEventNS()method for a description of this parameter.cancelableArg- Refer to theUIEvent.initUIEventNS()method for a description of this parameter.viewArg- Refer to theUIEvent.initUIEventNS()method for a description of this parameter.detailArg- Refer to theUIEvent.initUIEventNS()method for a description of this parameter.screenXArg- Refer to theMouseEvent.initMouseEvent()method for a description of this parameter.screenYArg- Refer to theMouseEvent.initMouseEvent()method for a description of this parameter.clientXArg- Refer to theMouseEvent.initMouseEvent()method for a description of this parameter.clientYArg- Refer to theMouseEvent.initMouseEvent()method for a description of this parameter.buttonArg- Refer to theMouseEvent.initMouseEvent()method for a description of this parameter.relatedTargetArg- Refer to theMouseEvent.initMouseEvent()method for a description of this parameter.modifiersList- A white space separated list of modifier key identifiers to be activated on this object. As an example,"Control Alt"will activated the control and alt modifiers.- Since:
- DOM Level 3
-
-