class org.aswing.event.AWEvent extends Event
| Sub classes | ||||||||||||||||||||||||||||||||
![]() | AttachEvent, ClickCountEvent, ColorChooserEvent, ContainerEvent, DragAndDropEvent, InteractiveEvent, MovedEvent, PopupEvent, PropertyChangeEvent, ResizedEvent, TabCloseEvent, TableCellEditEvent, ToolTipEvent, TreeCellEditEvent, TreeEvent |
| ||||||||||||||||||||||||||||||
The Event class is used as the base class for the AsWing Component events. @author paling
Class Fields
The AWEvent.ACT constant defines the value of the
type property of the event object for a act event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType act
static var FOCUS_GAINED:String
The AWEvent.FOCUS_GAINED constant defines the value of the
type property of the event object for a focusGained event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType focusGained
static var FOCUS_LOST:String
The AWEvent.FOCUS_LOST constant defines the value of the
type property of the event object for a focusLost event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType focusLost
The AWEvent.HIDDEN constant defines the value of the
type property of the event object for a hidden event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType hidden
The AWEvent.PAINT constant defines the value of the
type property of the event object for a paint event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType paint
The AWEvent.SHOWN constant defines the value of the
type property of the event object for a shown event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
@eventType shown
Instance Fields
![]() | Show inherited public instance fields | Hide inherited public instance fields
|

