org.kde.koala
public class UIEvent extends Event
UNKNOWN: Introduced in DOM Level 2
Constructor Summary | |
---|---|
protected | UIEvent(Class dummy) |
UIEvent() | |
UIEvent(UIEvent other) | |
UIEvent(Event other) |
Method Summary | |
---|---|
int | charCode()
Non-standard extension to support IE-style charCode event property. |
long | detail()
Specifies some detail information about the Event, depending on the type
of event. |
void | initUIEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, long detailArg)
The initUIEvent method is used to initialize the value of a UIEvent
created through the DocumentEvent interface. |
int | keyCode()
Non-standard extension to support IE-style keyCode event property. |
int | layerX()
Non-standard extensions to support Netscape-style layerX and layerY event properties. |
int | layerY() |
int | pageX()
Non-standard extensions to support Netscape-style pageX and pageY event properties. |
int | pageY() |
AbstractView | view()
The view attribute identifies the AbstractView from which the event was
generated. |
int | which()
Non-standard extension to support Netscape-style "which" event property. |
UNKNOWN: Non-standard extension to support IE-style charCode event property.
UNKNOWN: Specifies some detail information about the Event, depending on the type of 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 detail.
UNKNOWN: The initUIEvent method is used to initialize the value of a UIEvent created through the DocumentEvent interface.
UNKNOWN: Non-standard extension to support IE-style keyCode event property.
UNKNOWN: Non-standard extensions to support Netscape-style layerX and layerY event properties.
UNKNOWN: Non-standard extensions to support Netscape-style pageX and pageY event properties.
UNKNOWN: The view attribute identifies the AbstractView from which the event was generated.
UNKNOWN: Non-standard extension to support Netscape-style "which" event property.