mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-09 06:12:34 -05:00
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
/*
|
|
* Paper.js
|
|
*
|
|
* This file is part of Paper.js, a JavaScript Vector Graphics Library,
|
|
* based on Scriptographer.org and designed to be largely API compatible.
|
|
* http://paperjs.org/
|
|
* http://scriptographer.org/
|
|
*
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
*
|
|
* Copyright (c) 2011, Juerg Lehni & Jonathan Puckey
|
|
* http://lehni.org/ & http://jonathanpuckey.com/
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
var KeyEvent = this.KeyEvent = Event.extend(new function() {
|
|
return {
|
|
/** @lends KeyEvent# */
|
|
|
|
/**
|
|
* @name KeyEvent
|
|
* @constructor
|
|
*
|
|
* @class KeyEvent The KeyEvent object is received by the {@link Tool}'s
|
|
* keyboard handlers {@link Tool#onKeyDown}, {@link Tool#onKeyUp},
|
|
* The KeyEvent object is the only parameter passed to these functions
|
|
* and contains information about the keyboard event.
|
|
*/
|
|
initialize: function(down, key, character, event) {
|
|
this.base(event);
|
|
this.type = down ? 'keydown' : 'keyup';
|
|
this.key = key;
|
|
this.character = character;
|
|
},
|
|
|
|
/**
|
|
* The type of key event.
|
|
*
|
|
* @name KeyEvent#type
|
|
* @type String('keydown', 'keyup')
|
|
*/
|
|
|
|
/**
|
|
* The string character of the key that caused this key event.
|
|
*
|
|
* @name KeyEvent#character
|
|
* @type String
|
|
*/
|
|
|
|
/**
|
|
* The key that caused this key event.
|
|
*
|
|
* @name KeyEvent#key
|
|
* @type String
|
|
*/
|
|
|
|
/**
|
|
* @return {String} A string representation of the key event.
|
|
*/
|
|
toString: function() {
|
|
return '{ type: ' + this.type
|
|
+ ', key: ' + this.key
|
|
+ ', character: ' + this.character
|
|
+ ', modifiers: ' + this.getModifiers()
|
|
+ ' }';
|
|
}
|
|
};
|
|
});
|