diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-08-13 17:28:23 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-08-13 17:28:23 +0200 |
commit | 0e020d98f8100d6bebc433f3f64d8a65a0edfc69 (patch) | |
tree | ed6ba7426f61e54f6eeb71ba238a288d89e5bd79 /doc | |
parent | m (diff) | |
download | mds-0e020d98f8100d6bebc433f3f64d8a65a0edfc69.tar.gz mds-0e020d98f8100d6bebc433f3f64d8a65a0edfc69.tar.bz2 mds-0e020d98f8100d6bebc433f3f64d8a65a0edfc69.tar.xz |
protocol for keycode rampping
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/protocols | 40 |
1 files changed, 38 insertions, 2 deletions
diff --git a/doc/protocols b/doc/protocols index ac3dfa1..88919be 100644 --- a/doc/protocols +++ b/doc/protocols @@ -603,13 +603,49 @@ Reference implementation: kbdtrans --------------------------------------------------------------------- +Command: keycode-map + Remap keyboard keycodes and query current mapping + +Required header: Action + remap) Remap keys + reset) Reset all mappings to identity mapping + query) Query mapping + Each affected server will send a message format + like that of `Action: remap` with current mapping + that are not identity mappings + +Optional header: Keyboard + A string that identifies the keyboard that should be + affected. If omitted all keyboard are affected. + +Conditionally optional header: Length + Available and optional if: `Action: remap` + The length of the message + +Message: Each line contains contains two single space delimited numbers, + the first number is the keycode as determined by the scancode, + the second number is keycode that scancode should generate. + For example, `1 1` resets Escape to be mapped to Escape, + and `1 59` remaps Escape to F1, while `1 59\n59 1`, where + `\n` is a new lone, swaps Escape and F1. + +Purpose: Enable the user to swap or replace keys on the keyboard +Purpose: Enable the user manually correct an incorrectly mapped keyboard + +Compulsivity: optional + +Reference implementation: kkbd +Reference implementation: kbd + +--------------------------------------------------------------------- + Command: error Notify a client about a request failure Required header: To The ID of the client that send a request that failed -Required header: Message ID +Required header: In response to The ID of the message whose request failed Required header: Error @@ -632,7 +668,7 @@ Purpose: Enable keyboard layout servers to automatically set active locks when the server starts based on currently active LED:s -Compulsivity: highly recommended +Compulsivity: optional --------------------------------------------------------------------- |