org.kde.koala

Class UIEvent

public class UIEvent extends Event

Introduced in DOM Level 2 The UIEvent interface provides specific contextual information associated with User Interface events.

UNKNOWN: Introduced in DOM Level 2

Constructor Summary
protected UIEvent(Class dummy)
UIEvent()
UIEvent(UIEvent other)
UIEvent(Event other)
Method Summary
intcharCode()
Non-standard extension to support IE-style charCode event property.
longdetail()
Specifies some detail information about the Event, depending on the type of event.
voidinitUIEvent(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.
intkeyCode()
Non-standard extension to support IE-style keyCode event property.
intlayerX()
Non-standard extensions to support Netscape-style layerX and layerY event properties.
intlayerY()
intpageX()
Non-standard extensions to support Netscape-style pageX and pageY event properties.
intpageY()
AbstractViewview()
The view attribute identifies the AbstractView from which the event was generated.
intwhich()
Non-standard extension to support Netscape-style "which" event property.

Constructor Detail

UIEvent

protected UIEvent(Class dummy)

UIEvent

public UIEvent()

UIEvent

public UIEvent(UIEvent other)

UIEvent

public UIEvent(Event other)

Method Detail

charCode

public int charCode()
Non-standard extension to support IE-style charCode event property.

UNKNOWN: Non-standard extension to support IE-style charCode event property.

detail

public long detail()
Specifies some detail information about the Event, depending on the type of event.

UNKNOWN: Specifies some detail information about the Event, depending on the type of event.

initUIEvent

public 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. This method may only be called before the UIEvent has been dispatched via the dispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.

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.

keyCode

public int keyCode()
Non-standard extension to support IE-style keyCode event property.

UNKNOWN: Non-standard extension to support IE-style keyCode event property.

layerX

public int layerX()
Non-standard extensions to support Netscape-style layerX and layerY event properties.

UNKNOWN: Non-standard extensions to support Netscape-style layerX and layerY event properties.

layerY

public int layerY()

pageX

public int pageX()
Non-standard extensions to support Netscape-style pageX and pageY event properties.

UNKNOWN: Non-standard extensions to support Netscape-style pageX and pageY event properties.

pageY

public int pageY()

view

public AbstractView view()
The view attribute identifies the AbstractView from which the event was generated.

UNKNOWN: The view attribute identifies the AbstractView from which the event was generated.

which

public int which()
Non-standard extension to support Netscape-style "which" event property.

UNKNOWN: Non-standard extension to support Netscape-style "which" event property.