The X Toolkit API

X.ZoomEvent

This class has no public members.

/**
* The zoom event to initiate zoom in or zoom out.
*
* @constructor
* @extends X.event
*/
var Z = new X.ZoomEvent();
/**
* The className of this class.
*
* @type {string}
* @protected
*/
Z._classname = $_CLASSNAME;
/**
* The flag for the zooming speed. If TRUE, the zoom operation will happen
* fast. If FALSE, there will be a fine zoom operation.
*
* @type {!boolean}
* @protected
*/
Z._fast = $_FAST;
/**
* The flag for the zooming direction. If TRUE, the zoom operation will move
* the objects closer to the event. If FALSE, further away from the event.
*
* @type {!boolean}
* @protected
*/
Z._in = $_IN;
/**
* The events of this class.
*
* @enum {string}
*/
X.ZoomEvent.events();
/**
* Creates a unique event id.
*
* @param {string} id The id.
* @return {string} A unique id.
*/
var uniqueId = X.ZoomEvent.uniqueId($ID);


CONSTRUCTORS
X.ZoomEvent

PROPERTIES
_classname
_fast
_in

GETTERS/SETTERS

FUNCTIONS

STATIC
events
uniqueId



SOURCECODE