#include <dom2_events.h>
Inheritance diagram for DOM::UIEvent:
Public Methods | |
UIEvent () | |
UIEvent (const UIEvent &other) | |
UIEvent (const Event &other) | |
UIEvent & | operator= (const UIEvent &other) |
UIEvent & | operator= (const Event &other) |
virtual | ~UIEvent () |
AbstractView | view () const |
long | detail () const |
int | keyCode () const |
int | layerX () const |
int | layerY () const |
int | which () const |
void | initUIEvent (const DOMString &typeArg, bool canBubbleArg, bool cancelableArg, const AbstractView &viewArg, long detailArg) |
Protected Methods | |
UIEvent (UIEventImpl *impl) |
The UIEvent interface provides specific contextual information associated with User Interface events.
|
|
|
|
|
|
|
|
|
|
|
|
|
Reimplemented from DOM::Event. Reimplemented in DOM::MouseEvent, and DOM::TextEvent. |
|
The view attribute identifies the AbstractView from which the event was generated.
|
|
Specifies some detail information about the Event, depending on the type of event.
|
|
IE extension.
|
|
Netscape extension. only returns something useful when the mouse was involved. Otherwise its 0 |
|
|
|
Non-standard Netscape style "which" extension.
|
|
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.
|