com.jniwrapper.win32.ie.dom
Interface HTMLMouseEvent

All Superinterfaces:
org.w3c.dom.events.Event, org.w3c.dom.events.MouseEvent, org.w3c.dom.events.UIEvent

public interface HTMLMouseEvent
extends org.w3c.dom.events.MouseEvent

The HTMLMouseEvent interface provides specific contextual information associated with Mouse events.


Field Summary
 
Fields inherited from interface org.w3c.dom.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE
 
Method Summary
 boolean getAltLeft()
          Retrieves a value that indicates the state of the left ALT key.
 boolean getCtrlLeft()
          Retrieves a value that indicates the state of the left CTRL key.
 int getOffsetX()
          Retrieves the x-coordinate of the mouse pointer's position relative to the object firing the event.
 int getOffsetY()
          Retrieves the y-coordinate of the mouse pointer's position relative to the object firing the event.
 boolean getShiftLeft()
          Retrieves the state of the left SHIFT key.
 
Methods inherited from interface org.w3c.dom.events.MouseEvent
getAltKey, getButton, getClientX, getClientY, getCtrlKey, getMetaKey, getRelatedTarget, getScreenX, getScreenY, getShiftKey, initMouseEvent
 
Methods inherited from interface org.w3c.dom.events.UIEvent
getDetail, getView, initUIEvent
 
Methods inherited from interface org.w3c.dom.events.Event
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
 

Method Detail

getAltLeft

boolean getAltLeft()
Retrieves a value that indicates the state of the left ALT key.


getCtrlLeft

boolean getCtrlLeft()
Retrieves a value that indicates the state of the left CTRL key.


getShiftLeft

boolean getShiftLeft()
Retrieves the state of the left SHIFT key.


getOffsetX

int getOffsetX()
Retrieves the x-coordinate of the mouse pointer's position relative to the object firing the event.


getOffsetY

int getOffsetY()
Retrieves the y-coordinate of the mouse pointer's position relative to the object firing the event.