Changeset 52048 in vbox for trunk/src/VBox/Frontends/Common
- Timestamp:
- Jul 16, 2014 1:02:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/Common/VBoxKeyboard/xkbtoscan.h
r44325 r52048 38 38 /** 39 39 * This table contains a list of mappings of XKB key names to XT scan codes. 40 * We only use XKB to look up layout-dependent keys (mainly the alpha-numeric41 * ones), so that user re-mappings will work at least for the remaining keys.42 * This is the reason for the commented out entries in the table.43 40 */ 44 41 struct … … 48 45 } xkbMap[] = 49 46 { 50 /* { "ESC", 0x1 }, */ 47 { "ESC", 0x1 }, 51 48 { "AE01", 0x2 }, 52 49 { "AE02", 0x3 }, … … 61 58 { "AE11", 0xc }, 62 59 { "AE12", 0xd }, 63 /*{ "BKSP", 0xe },64 { "TAB", 0xf }, */60 { "BKSP", 0xe }, 61 { "TAB", 0xf }, 65 62 { "AD01", 0x10 }, 66 63 { "AD02", 0x11 }, … … 75 72 { "AD11", 0x1a }, 76 73 { "AD12", 0x1b }, 77 /*{ "RTRN", 0x1c },78 { "LCTL", 0x1d }, */74 { "RTRN", 0x1c }, 75 { "LCTL", 0x1d }, 79 76 { "AC01", 0x1e }, 80 77 { "AC02", 0x1f }, … … 90 87 { "AC12", 0x2b }, 91 88 { "TLDE", 0x29 }, 92 /* { "LFSH", 0x2a }, */ 89 { "LFSH", 0x2a }, 93 90 { "BKSL", 0x2b }, 94 91 { "AB01", 0x2c }, … … 102 99 { "AB09", 0x34 }, 103 100 { "AB10", 0x35 }, 104 /*{ "RTSH", 0x36 },101 { "RTSH", 0x36 }, 105 102 { "KPMU", 0x37 }, 106 103 { "LALT", 0x38 }, … … 133 130 { "KPDL", 0x53 }, 134 131 { "KPPT", 0x7e }, 135 { "LVL3", 0x138 }, */132 { "LVL3", 0x138 }, 136 133 { "LSGT", 0x56 }, 137 /*{ "FK11", 0x57 },138 { "FK12", 0x58 }, */134 { "FK11", 0x57 }, 135 { "FK12", 0x58 }, 139 136 { "AB11", 0x73 }, 140 /*{ "KATA", 0x0 },137 { "KATA", 0x0 }, 141 138 { "HIRA", 0x0 }, 142 139 { "HENK", 0x79 }, … … 174 171 { "KPPT", 0x7e }, 175 172 { "HNGL", 0xf2 }, 176 { "HJCV", 0xf1 }, */173 { "HJCV", 0xf1 }, 177 174 { "AE13", 0x7d }, 178 /*{ "LWIN", 0x15b },175 { "LWIN", 0x15b }, 179 176 { "LMTA", 0x15b }, 180 177 { "RWIN", 0x15c }, … … 299 296 { "I251", 0x0 }, 300 297 { "I252", 0x0 }, 301 { "I253", 0x0 } */298 { "I253", 0x0 } 302 299 };
Note:
See TracChangeset
for help on using the changeset viewer.