Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Makefile | D | 12-May-2024 | 16.2 KiB | 528 | 458 | |
Makefile.am | D | 12-May-2024 | 223 | 13 | 10 | |
README | D | 12-May-2024 | 1.7 KiB | 34 | 28 | |
accessx | D | 12-May-2024 | 1.1 KiB | 53 | 40 | |
basic | D | 12-May-2024 | 1 KiB | 50 | 39 | |
caps | D | 12-May-2024 | 507 | 12 | 11 | |
complete | D | 12-May-2024 | 228 | 11 | 10 | |
iso9995 | D | 12-May-2024 | 1.6 KiB | 78 | 62 | |
japan | D | 12-May-2024 | 986 | 46 | 35 | |
ledcaps | D | 12-May-2024 | 469 | 25 | 21 | |
ledcompose | D | 12-May-2024 | 305 | 17 | 12 | |
lednum | D | 12-May-2024 | 466 | 25 | 21 | |
ledscroll | D | 12-May-2024 | 486 | 25 | 21 | |
level5 | D | 12-May-2024 | 1.4 KiB | 57 | 44 | |
misc | D | 12-May-2024 | 2.7 KiB | 123 | 94 | |
mousekeys | D | 12-May-2024 | 4.5 KiB | 202 | 176 | |
olpc | D | 12-May-2024 | 1.1 KiB | 52 | 41 | |
pc | D | 12-May-2024 | 340 | 18 | 13 | |
pc98 | D | 12-May-2024 | 1.2 KiB | 57 | 46 | |
xfree86 | D | 12-May-2024 | 1.8 KiB | 67 | 60 | |
xtest | D | 12-May-2024 | 1.4 KiB | 57 | 47 |
README
1The core protocol interpretation of keyboard modifiers does not include direct 2support for multiple keyboard groups, so XKB reports the effective keyboard 3group to XKB-aware clients using some of the reserved bits in the state field 4of some core protocol events. This modified state field would not be interpreted 5correctly by XKB-unaware clients, so XKB provides a group compatibility mapping 6which remaps the keyboard group into a core modifier mask that has similar 7effects, when possible. 8 9XKB maintains three compatibility state components that are used to make 10XKB-unaware clients(*) work as well as possible: 11- The compatibility state which corresponds to the effective modifier and 12 effective group state. 13- The compatibility lookup state which is the core-protocol equivalent of the 14 lookup state. 15- The compatibility grab state which is the nearest core-protocol equivalent 16 of the grab state. 17 18Compatibility states are essentially the corresponding XKB states, but with 19the keyboard group possibly encoded as one or more modifiers. 20 21Modifiers that correspond to each keyboard group are described in this 22group compatibility map. 23 24 25---- 26(*) The implementation of XKB invisibly extends the X library to use the 27keyboard extension if it is present. That means, clients that use library or 28toolkit routines to interpret keyboard events automatically use all of XKB's 29features; clients that directly interpret the state field of core-protocol 30events or the keymap directly may be affected by some of the XKB differences. 31Thus most clients can take all advantages without modification but it also 32means that XKB state can be reported to clients that have not explicitly 33requested the keyboard extension. 34