File: ui/LMultitouchInputMode.js
/** @language english
* The LMultitouchInputMode class provides values for the inputMode property in the LMultitouch class. These values set the type of touch events the canvas runtime dispatches when the user interacts with a touch-enabled device.
* @class LMultitouchInputMode
* @constructor
* @since 1.8.9
* @public
*/
var LMultitouchInputMode = function () {throw "LMultitouchInputMode cannot be instantiated";};
/** @language english
* [static] Specifies that all user contact with a touch-enabled device is interpreted as a type of mouse event.
* @property NONE
* @type String
* @static
* @since 1.8.9
* @public
*/
LMultitouchInputMode.NONE = "none";
LMultitouchInputMode.GESTURE = "gesture";
/** @language english
* [static] Specifies that events are dispatched only for basic touch events, such as a single finger tap.
* @property TOUCH_POINT
* @type String
* @static
* @since 1.8.9
* @public
*/
LMultitouchInputMode.TOUCH_POINT = "touchPoint";