mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 20:56:09 +03:00
Added properties to MouseTracker keydown/keyup/keypress events
This commit is contained in:
parent
ead728dc35
commit
622e39eabf
@ -885,7 +885,13 @@
|
|||||||
* @param {OpenSeadragon.MouseTracker} event.eventSource
|
* @param {OpenSeadragon.MouseTracker} event.eventSource
|
||||||
* A reference to the tracker instance.
|
* A reference to the tracker instance.
|
||||||
* @param {Number} event.keyCode
|
* @param {Number} event.keyCode
|
||||||
* The key code that was pressed.
|
* The key code that was pressed (legacy DOM event model).
|
||||||
|
* @param {String} event.key
|
||||||
|
* The key value of the key pressed.
|
||||||
|
* @param {String} event.code
|
||||||
|
* The code value associated with the key’s physical placement on the keyboard.
|
||||||
|
* @param {Number} event.location
|
||||||
|
* The location of the key on the device.
|
||||||
* @param {Boolean} event.ctrl
|
* @param {Boolean} event.ctrl
|
||||||
* True if the ctrl key was pressed during this event.
|
* True if the ctrl key was pressed during this event.
|
||||||
* @param {Boolean} event.shift
|
* @param {Boolean} event.shift
|
||||||
@ -911,7 +917,13 @@
|
|||||||
* @param {OpenSeadragon.MouseTracker} event.eventSource
|
* @param {OpenSeadragon.MouseTracker} event.eventSource
|
||||||
* A reference to the tracker instance.
|
* A reference to the tracker instance.
|
||||||
* @param {Number} event.keyCode
|
* @param {Number} event.keyCode
|
||||||
* The key code that was pressed.
|
* The key code that was pressed (legacy DOM event model).
|
||||||
|
* @param {String} event.key
|
||||||
|
* The key value of the key pressed.
|
||||||
|
* @param {String} event.code
|
||||||
|
* The code value associated with the key’s physical placement on the keyboard.
|
||||||
|
* @param {Number} event.location
|
||||||
|
* The location of the key on the device.
|
||||||
* @param {Boolean} event.ctrl
|
* @param {Boolean} event.ctrl
|
||||||
* True if the ctrl key was pressed during this event.
|
* True if the ctrl key was pressed during this event.
|
||||||
* @param {Boolean} event.shift
|
* @param {Boolean} event.shift
|
||||||
@ -937,7 +949,13 @@
|
|||||||
* @param {OpenSeadragon.MouseTracker} event.eventSource
|
* @param {OpenSeadragon.MouseTracker} event.eventSource
|
||||||
* A reference to the tracker instance.
|
* A reference to the tracker instance.
|
||||||
* @param {Number} event.keyCode
|
* @param {Number} event.keyCode
|
||||||
* The key code that was pressed.
|
* The key code that was pressed (legacy DOM event model).
|
||||||
|
* @param {String} event.key
|
||||||
|
* The key value of the key pressed.
|
||||||
|
* @param {String} event.code
|
||||||
|
* The code value associated with the key’s physical placement on the keyboard.
|
||||||
|
* @param {Number} event.location
|
||||||
|
* The location of the key on the device.
|
||||||
* @param {Boolean} event.ctrl
|
* @param {Boolean} event.ctrl
|
||||||
* True if the ctrl key was pressed during this event.
|
* True if the ctrl key was pressed during this event.
|
||||||
* @param {Boolean} event.shift
|
* @param {Boolean} event.shift
|
||||||
@ -1804,7 +1822,10 @@
|
|||||||
if ( tracker.keyDownHandler && !eventInfo.preventGesture && !eventInfo.defaultPrevented ) {
|
if ( tracker.keyDownHandler && !eventInfo.preventGesture && !eventInfo.defaultPrevented ) {
|
||||||
eventArgs = {
|
eventArgs = {
|
||||||
eventSource: tracker,
|
eventSource: tracker,
|
||||||
keyCode: event.keyCode ? event.keyCode : event.charCode,
|
keyCode: event.keyCode || event.charCode,
|
||||||
|
key: event.key || '',
|
||||||
|
code: event.code || '',
|
||||||
|
location: event.location || 0,
|
||||||
ctrl: event.ctrlKey,
|
ctrl: event.ctrlKey,
|
||||||
shift: event.shiftKey,
|
shift: event.shiftKey,
|
||||||
alt: event.altKey,
|
alt: event.altKey,
|
||||||
@ -1846,7 +1867,10 @@
|
|||||||
if ( tracker.keyUpHandler && !eventInfo.preventGesture && !eventInfo.defaultPrevented ) {
|
if ( tracker.keyUpHandler && !eventInfo.preventGesture && !eventInfo.defaultPrevented ) {
|
||||||
eventArgs = {
|
eventArgs = {
|
||||||
eventSource: tracker,
|
eventSource: tracker,
|
||||||
keyCode: event.keyCode ? event.keyCode : event.charCode,
|
keyCode: event.keyCode || event.charCode,
|
||||||
|
key: event.key || '',
|
||||||
|
code: event.code || '',
|
||||||
|
location: event.location || 0,
|
||||||
ctrl: event.ctrlKey,
|
ctrl: event.ctrlKey,
|
||||||
shift: event.shiftKey,
|
shift: event.shiftKey,
|
||||||
alt: event.altKey,
|
alt: event.altKey,
|
||||||
@ -1888,7 +1912,10 @@
|
|||||||
if ( tracker.keyHandler && !eventInfo.preventGesture && !eventInfo.defaultPrevented ) {
|
if ( tracker.keyHandler && !eventInfo.preventGesture && !eventInfo.defaultPrevented ) {
|
||||||
eventArgs = {
|
eventArgs = {
|
||||||
eventSource: tracker,
|
eventSource: tracker,
|
||||||
keyCode: event.keyCode ? event.keyCode : event.charCode,
|
keyCode: event.keyCode || event.charCode,
|
||||||
|
key: event.key || '',
|
||||||
|
code: event.code || '',
|
||||||
|
location: event.location || 0,
|
||||||
ctrl: event.ctrlKey,
|
ctrl: event.ctrlKey,
|
||||||
shift: event.shiftKey,
|
shift: event.shiftKey,
|
||||||
alt: event.altKey,
|
alt: event.altKey,
|
||||||
|
Loading…
Reference in New Issue
Block a user