2 Copyright 1985, 1987, 1990, 1998 The Open Group
3 Copyright 2008 Dan Nicholson
5 Permission is hereby granted, free of charge, to any person obtaining a
6 copy of this software and associated documentation files (the "Software"),
7 to deal in the Software without restriction, including without limitation
8 the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 and/or sell copies of the Software, and to permit persons to whom the
10 Software is furnished to do so, subject to the following conditions:
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 Except as contained in this notice, the names of the authors or their
23 institutions shall not be used in advertising or otherwise to promote the
24 sale, use or other dealings in this Software without prior written
25 authorization from the authors.
31 #include <X11/keysymdef.h>
33 #include "xkbcommon/xkbcommon.h"
37 #include "ks_tables.h"
40 xkb_keysym_to_string(xkb_keysym_t ks, char *buffer, size_t size)
43 const unsigned char *entry;
44 unsigned char val1, val2, val3, val4;
46 if ((ks & ((unsigned long) ~0x1fffffff)) != 0) {
47 snprintf(buffer, size, "Invalid");
51 /* Not listed in keysymdef.h for hysterical raisins. */
52 if (ks == XKB_KEYSYM_NO_SYMBOL) {
53 snprintf(buffer, size, "NoSymbol");
57 /* Try to find it in our hash table. */
58 if (ks <= 0x1fffffff) {
60 val2 = (ks >> 16) & 0xff;
61 val3 = (ks >> 8) & 0xff;
67 while ((idx = hashKeysym[i])) {
68 entry = &_XkeyTable[idx];
70 if ((entry[0] == val1) && (entry[1] == val2) &&
71 (entry[2] == val3) && (entry[3] == val4)) {
72 snprintf(buffer, size, "%s", entry + 4);
85 if (ks >= 0x01000100 && ks <= 0x0110ffff)
86 /* Unnamed Unicode codepoint. */
87 snprintf(buffer, size, "U%lx", ks & 0xffffffUL);
89 /* Unnamed, non-Unicode, symbol (shouldn't generally happen). */
90 snprintf(buffer, size, "0x%08x", ks);
94 xkb_string_to_keysym(const char *s)
99 const unsigned char *entry;
100 unsigned char sig1, sig2;
104 sig = (sig << 1) + c;
106 i = sig % KTABLESIZE;
108 sig1 = (sig >> 8) & 0xff;
112 while ((idx = hashString[i])) {
113 entry = &_XkeyTable[idx];
115 if ((entry[0] == sig1) && (entry[1] == sig2) &&
116 !strcmp(s, (const char *)entry + 6))
118 val = (entry[2] << 24) | (entry[3] << 16) |
119 (entry[4] << 8) | entry[5];
134 val = strtoul(&s[1], NULL, 16);
136 if (val < 0x20 || (val > 0x7e && val < 0xa0))
137 return XKB_KEYSYM_NO_SYMBOL;
141 return XKB_KEYSYM_NO_SYMBOL;
142 return val | 0x01000000;
144 else if (s[0] == '0' && s[1] == 'x') {
145 return strtoul(&s[2], NULL, 16);
148 /* Stupid inconsistency between the headers and XKeysymDB: the former has
149 * no separating underscore, while some XF86* syms in the latter did.
150 * As a last ditch effort, try without. */
151 if (strncmp(s, "XF86_", 5) == 0) {
153 char *tmp = strdup(s);
155 return XKB_KEYSYM_NO_SYMBOL;
156 memmove(&tmp[4], &tmp[5], strlen(s) - 5 + 1);
157 ret = xkb_string_to_keysym(tmp);
162 return XKB_KEYSYM_NO_SYMBOL;