class org.aswing.event.FrameEvent extends InteractiveEvent

Event for JFrame. @see org.aswing.JFrame @author paling

Class Fields

static var FRAME_ABILITY_CHANGED:String

The FrameEvent.FRAMEABILITYCHANGED constant defines the value of the type property of the event object for a frameAbilityChanged event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
isProgrammatic()true
currentTargetThe 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.
targetThe 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 frameAbilityChanged

static var FRAME_CLOSING:String

The FrameEvent.FRAME_CLOSING constant defines the value of the type property of the event object for a frameClosing event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
isProgrammatic()false
currentTargetThe 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.
targetThe 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 frameClosing

static var FRAME_ICONIFIED:String

The FrameEvent.FRAME_ICONIFIED constant defines the value of the type property of the event object for a frameIconified event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
isProgrammatic()True means this event is fired by

the programmatic reason, false means user mouse/keyboard interaction reason.</td></tr>

currentTargetThe 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.
targetThe 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 frameIconified

static var FRAME_MAXIMIZED:String

The FrameEvent.WINDOW_DEACTIVATED constant defines the value of the type property of the event object for a frameMaximized event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
isProgrammatic()True means this event is fired by

the programmatic reason, false means user mouse/keyboard interaction reason.</td></tr>

currentTargetThe 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.
targetThe 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 frameMaximized

static var FRAME_RESTORED:String

The FrameEvent.FRAME_RESTORED constant defines the value of the type property of the event object for a frameRestored event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
isProgrammatic()True means this event is fired by

the programmatic reason, false means user mouse/keyboard interaction reason.</td></tr>

currentTargetThe 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.
targetThe 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 frameRestored

Instance Fields

Show inherited public instance fieldsHide inherited public instance fields

Inherited from InteractiveEvent

function clone():Event
function isProgrammatic():Bool

Inherited from AWEvent

function clone():Event

Inherited from Event

var bubbles:Bool
var cancelable:Bool
var currentTarget:Dynamic
var eventPhase:EventPhase
var target:Dynamic
var type:String
function clone():Event
function formatToString(className:String, ?p1:Dynamic, ?p2:Dynamic, ?p3:Dynamic, ?p4:Dynamic, ?p5:Dynamic):String
function isDefaultPrevented():Bool
function preventDefault():Void
function stopImmediatePropagation():Void
function stopPropagation():Void
function toString():String

function new(type:String, ?programmatic:Bool = false): Void

function clone(): Event