Field Summary |
|
final public static int | BUTTON_LEFT The left mouse button (used in
DOM.eventGetButton(Event) ). |
final public static int | BUTTON_MIDDLE The middle mouse button (used in
DOM.eventGetButton(Event) ). |
final public static int | BUTTON_RIGHT The right mouse button (used in
DOM.eventGetButton(Event) ). |
final public static int | FOCUSEVENTS A bit-mask covering both focus events (focus and blur). |
final public static int | KEYEVENTS A bit-mask covering all keyboard events (down, up, and press). |
final public static int | MOUSEEVENTS A bit-mask covering all mouse events (down, up, move, over, and out), but
not click, dblclick, or wheel events. |
final public static int | ONBLUR Fired when an element loses keyboard focus. |
final public static int | ONCHANGE Fired when the value of an input element changes. |
final public static int | ONCLICK Fired when the user clicks on an element. |
final public static int | ONDBLCLICK Fired when the user double-clicks on an element. |
final public static int | ONERROR Fired when an image encounters an error. |
final public static int | ONFOCUS Fired when an element receives keyboard focus. |
final public static int | ONKEYDOWN Fired when the user depresses a key. |
final public static int | ONKEYPRESS Fired when the a character is generated from a keypress (either directly or
through auto-repeat). |
final public static int | ONKEYUP Fired when the user releases a key. |
final public static int | ONLOAD Fired when an element (normally an IMG) finishes loading. |
final public static int | ONLOSECAPTURE Fired when an element that has mouse capture loses it. |
final public static int | ONMOUSEDOWN Fired when the user depresses a mouse button over an element. |
final public static int | ONMOUSEMOVE Fired when the mouse is moved within an element's area. |
final public static int | ONMOUSEOUT Fired when the mouse is moved out of an element's area. |
final public static int | ONMOUSEOVER Fired when the mouse is moved into an element's area. |
final public static int | ONMOUSEUP Fired when the user releases a mouse button over an element. |
final public static int | ONMOUSEWHEEL Fired when the user scrolls the mouse wheel over an element. |
final public static int | ONSCROLL Fired when a scrollable element's scroll offset changes. |
final public static int | UNDEFINED Error code returned by DOM.getEventXXX methods when the actual integer
value is undefined. |