set-quote-key-events! -- Set key event quoting to QUOTING-ON?.
quote-key-events? -- Return #t iff key events are being qutoed.
lookup-key -- Return the procedures bound to KEY within the CONTEXTS.
unbind-key -- Remove any bindings attached to KEY in given CONTEXTS.
keysym->keycode -- Returns a list of X/11 keycodes that generate the keysym, KEYSYM-NAME.
unbind-mouse -- Remove any bindings attached to mouse BUTTON in given CONTEXTS.
bind-key -- Bind the given KEY within the CONTEXTS to invoke PROC.
bind-keycode -- Bind the given KEYCODE within the CONTEXTS to invoke PROC.
unbind-keycode -- Unbind the given KEYCODE within the CONTEXTS.
bind-mouse -- Bind the given mouse BUTTON within the CONTEXTS to invoke PROC.
lookup-mouse -- Return the procedure bound to mouse BUTTON within the CONTEXTS.
lookup-procedure-bindings -- Return any bindings that invoke PROC in context CONTEXT.
mouse-event-type -- Return a symbol corresponding to the type of the most recent mouse event.
number-of-mouse-buttons -- Return the number of mouse buttons of the current mouse.
mod-mask-shift -- Return the bit-mask for the Shift modifier key, or #f.
mod-mask-control -- Return the bit-mask for the Control modifier key, or #f.
mod-mask-meta -- Return the bit-mask for the Meta modifier key, or #f.
mod-mask-alt -- Return the bit-mask for the Alt modifier key, or #f.
mod-mask-hyper -- Return the bit-mask for the Hyper modifier key, or #f.
mod-mask-super -- Return the bit-mask for the Super modifier key, or #f.
mod-mask-numlock -- Return the bit-mask for the NumLock modifier key, or #f.
mod-mask-scrolllock -- Return the bit-mask for the ScrollLock modifier key, or #f.
set-mod-mask-numlock! -- Set the bit-mask for the NumLock modifier key.
set-mod-mask-scrolllock! -- Set the bit-mask for the ScrollLock modifier key.
set-ignore-dubious-modifiers! -- If FLAG is #t, ignore scoll/num/lock modifiers on all bindings made.
ignore-dubious-modifiers? -- Return the status of the ignore-dubious-modifiers flag.
undo-all-passive-grabs -- Remove all passive grabs of keys and buttons of bindings.
redo-all-passive-grabs -- Re-instate all passive grabs of keys and buttons of bindings.
undo-passive-grab -- Remove the passive grabs of KEYCODE-OR-BUTNUM with MODMASK on all windows.
redo-passive-grab -- Re-instate the passive grab of KEYCODE-OR-BUTNUM with MODMASK on all windows.
X-pointer-mapping -- Return the mapping of physical->logical pointer buttons as a list.
keymask->string -- Return a string representing KEYMASK.
keymask-keycode->string -- Return a string representing the key press with mask KEYMASK, code KEYCODE.