org.zkoss.zk.ui.event |
Events
The org.zkoss.zk.ui and org.zkoss.zk.ui.event packages are the only
packages that component and application developers need to know.
For application developers they usually need only
the org.zkoss.zk.ui package.
|
Java Source File Name | Type | Comment |
BookmarkEvent.java | Class | The onBookmarkChanged event used
to notify that user pressed BACK, FORWARD or others
that causes the bookmark changed (but still in the same desktop). |
CheckEvent.java | Class | Represents an event cause by user's check a state at the client. |
ClientInfoEvent.java | Class | The onClientInfo event is used to notify the client's information, such
as time zone and screen resolutions. |
CreateEvent.java | Class | Used to notify a window that all its children are created and initialized. |
Deferrable.java | Interface | Used to decorate
EventListener to denote whether the event
for the listener can be deferred. |
DropEvent.java | Class | Represents an event cause by user's dragging and dropping a component. |
ErrorEvent.java | Class | Represents an event cause by user's entering a wrong data
or clearing the last wrong data. |
Event.java | Class | An event sent to the event handler of a component. |
EventListener.java | Interface | An listener that will be notified when an event occurs, if it is
registered to
org.zkoss.zk.ui.Component.addEventListener .
If an event listener also implements
Deferrable and
Deferrable.isDeferrable returns true, the event
for the listener will NOT be sent to the server immediately (when it
is fired at the client). |
Events.java | Class | Utilities to handle events. |
EventThreadCleanup.java | Interface | Used to clean the event processing thread. |
EventThreadInit.java | Interface | Used to initialize the event processing thread. |
EventThreadResume.java | Interface | Used to listen after the event processing thread is resumed. |
EventThreadSuspend.java | Interface | Used to listen when the event processing thread is going to suspend. |
Express.java | Interface | Decorates an event listener (
EventListener ) shall be invoked
before other event listeners, including the onXxx member declared in the
ZUML pages. |
ForwardEvent.java | Class | Represents the event forwarded by the forward condition. |
GenericEventListener.java | Class | An abstract event listener that you can extend and write intuitive onXxx event
handler methods; this class dispatch event to the implemented onXxx event handler methods
automatically. |
InputEvent.java | Class | Represents an event cause by user's input something at the client. |
KeyEvent.java | Class | Represents a key pressed by the user. |
MouseEvent.java | Class | Represents an event cause by mouse activitly. |
MoveEvent.java | Class | Represents an event caused by a component being moved. |
OpenEvent.java | Class | Represents an event cause by user's openning or closing
something at the client.
Note: it is a bit confusing but
Events.ON_CLOSE is sent when
user clicks a close button. |
ScrollEvent.java | Class | Represents an event caused by that user is scrolling or
has scrolled at the client. |
SelectEvent.java | Class | Represents an event cause by user's the list selection is changed
at the client. |
SelectionEvent.java | Class | Represents an event cause by user's the active selection which is a
highlighted block of text. |
SizeEvent.java | Class | Represents an event caused by a component being re-sized. |
UploadEvent.java | Class | Represents that user has uploaded one or several files from
the client to the server. |
ZIndexEvent.java | Class | Represents an event caused by a component whose z-index is modified
by the client. |