/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_KeyMap({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Handles mapping keys to actions for an element. One key map can be used for multiple actions.\nThe constructor accepts the same config object as defined by addBinding.\nIf you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key\ncombination it will call the function with this signature (if the match is a multi-key\ncombination the callback will still be called only once): (String key, Ext.EventObject e)\nA KeyMap can also handle a string representation of keys.
\nUsage:
// map one key by key code\nvar map = new Ext.KeyMap(\"my-element\", {\n key: 13, // or Ext.EventObject.ENTER\n fn: myHandler,\n scope: myObject\n});\n\n// map multiple keys to one action by string\nvar map = new Ext.KeyMap(\"my-element\", {\n key: \"a\\r\\n\\t\",\n fn: myHandler,\n scope: myObject\n});\n\n// map multiple keys to multiple actions by strings and array of codes\nvar map = new Ext.KeyMap(\"my-element\", [\n {\n key: [10,13],\n fn: function(){ alert(\"Return was pressed\"); }\n }, {\n key: \"abc\",\n fn: function(){ alert('a, b or c was pressed'); }\n }, {\n key: \"\\t\",\n ctrl:true,\n shift:true,\n fn: function(){ alert('Control + shift + tab was pressed.'); }\n }\n]);\n
\n\n\nNote: A KeyMap starts enabled
\nTrue to stop the event from bubbling and prevent the default browser action if the\nkey was handled by the KeyMap (defaults to false)
\nDefaults to: false
The element to bind to
\nThe config (see addBinding)
\nThe event to bind to (defaults to \"keydown\")
\nAdd a new binding to this KeyMap. The following config object properties are supported:
\n\nProperty Type Description\n---------- --------------- ----------------------------------------------------------------------\nkey String/Array A single keycode or an array of keycodes to handle\nshift Boolean True to handle key only when shift is pressed, False to handle the key only when shift is not pressed (defaults to undefined)\nctrl Boolean True to handle key only when ctrl is pressed, False to handle the key only when ctrl is not pressed (defaults to undefined)\nalt Boolean True to handle key only when alt is pressed, False to handle the key only when alt is not pressed (defaults to undefined)\nhandler Function The function to call when KeyMap finds the expected key combination\nfn Function Alias of handler (for backwards-compatibility)\nscope Object The scope of the callback function\nstopEvent Boolean True to stop the event from bubbling and prevent the default browser action if the key was handled by the KeyMap (defaults to false)\n\n\n\n
Usage:
\n\n// Create a KeyMap\nvar map = new Ext.KeyMap(document, {\n key: Ext.EventObject.ENTER,\n fn: handleKey,\n scope: this\n});\n\n//Add a new binding to the existing KeyMap later\nmap.addBinding({\n key: 'abc',\n shift: true,\n fn: handleKey,\n scope: this\n});\n
\n\nA single KeyMap config or an array of configs
\nReturns true if this KeyMap is enabled
\nShorthand for adding a single key listener
\nEither the numeric key code, array of key codes or an object with the\nfollowing options:\n{key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
\nThe function to call
\nThe scope (this
reference) in which the function is executed. Defaults to the browser window.
Convenience function for setting disabled/enabled by boolean.
\n