Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 1 | //======================================================================== |
Camilla Berglund | 6e553c7 | 2011-03-06 01:46:39 +0100 | [diff] [blame] | 2 | // GLFW - An OpenGL library |
Camilla Berglund | e10d935 | 2012-08-28 15:03:57 +0200 | [diff] [blame] | 3 | // Platform: X11 |
Camilla Berglund | 38b0ccb | 2010-09-07 17:41:26 +0200 | [diff] [blame] | 4 | // API version: 3.0 |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 5 | // WWW: http://www.glfw.org/ |
| 6 | //------------------------------------------------------------------------ |
| 7 | // Copyright (c) 2002-2006 Marcus Geelnard |
| 8 | // Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org> |
| 9 | // |
| 10 | // This software is provided 'as-is', without any express or implied |
| 11 | // warranty. In no event will the authors be held liable for any damages |
| 12 | // arising from the use of this software. |
| 13 | // |
| 14 | // Permission is granted to anyone to use this software for any purpose, |
| 15 | // including commercial applications, and to alter it and redistribute it |
| 16 | // freely, subject to the following restrictions: |
| 17 | // |
| 18 | // 1. The origin of this software must not be misrepresented; you must not |
| 19 | // claim that you wrote the original software. If you use this software |
| 20 | // in a product, an acknowledgment in the product documentation would |
| 21 | // be appreciated but is not required. |
| 22 | // |
| 23 | // 2. Altered source versions must be plainly marked as such, and must not |
| 24 | // be misrepresented as being the original software. |
| 25 | // |
| 26 | // 3. This notice may not be removed or altered from any source |
| 27 | // distribution. |
| 28 | // |
| 29 | //======================================================================== |
| 30 | |
| 31 | #include "internal.h" |
| 32 | |
| 33 | |
| 34 | /* |
| 35 | * Marcus: This code was originally written by Markus G. Kuhn. |
| 36 | * I have made some slight changes (trimmed it down a bit from >60 KB to |
| 37 | * 20 KB), but the functionality is the same. |
| 38 | */ |
| 39 | |
| 40 | /* |
| 41 | * This module converts keysym values into the corresponding ISO 10646 |
| 42 | * (UCS, Unicode) values. |
| 43 | * |
| 44 | * The array keysymtab[] contains pairs of X11 keysym values for graphical |
| 45 | * characters and the corresponding Unicode value. The function |
| 46 | * _glfwKeySym2Unicode() maps a keysym onto a Unicode value using a binary |
| 47 | * search, therefore keysymtab[] must remain SORTED by keysym value. |
| 48 | * |
| 49 | * We allow to represent any UCS character in the range U-00000000 to |
| 50 | * U-00FFFFFF by a keysym value in the range 0x01000000 to 0x01ffffff. |
| 51 | * This admittedly does not cover the entire 31-bit space of UCS, but |
| 52 | * it does cover all of the characters up to U-10FFFF, which can be |
| 53 | * represented by UTF-16, and more, and it is very unlikely that higher |
| 54 | * UCS codes will ever be assigned by ISO. So to get Unicode character |
| 55 | * U+ABCD you can directly use keysym 0x0100abcd. |
| 56 | * |
| 57 | * Original author: Markus G. Kuhn <mkuhn@acm.org>, University of |
| 58 | * Cambridge, April 2001 |
| 59 | * |
| 60 | * Special thanks to Richard Verhoeven <river@win.tue.nl> for preparing |
| 61 | * an initial draft of the mapping table. |
| 62 | * |
| 63 | */ |
| 64 | |
| 65 | |
| 66 | //************************************************************************ |
| 67 | //**** KeySym to Unicode mapping table **** |
| 68 | //************************************************************************ |
| 69 | |
| 70 | static struct codepair { |
| 71 | unsigned short keysym; |
| 72 | unsigned short ucs; |
| 73 | } keysymtab[] = { |
| 74 | { 0x01a1, 0x0104 }, |
| 75 | { 0x01a2, 0x02d8 }, |
| 76 | { 0x01a3, 0x0141 }, |
| 77 | { 0x01a5, 0x013d }, |
| 78 | { 0x01a6, 0x015a }, |
| 79 | { 0x01a9, 0x0160 }, |
| 80 | { 0x01aa, 0x015e }, |
| 81 | { 0x01ab, 0x0164 }, |
| 82 | { 0x01ac, 0x0179 }, |
| 83 | { 0x01ae, 0x017d }, |
| 84 | { 0x01af, 0x017b }, |
| 85 | { 0x01b1, 0x0105 }, |
| 86 | { 0x01b2, 0x02db }, |
| 87 | { 0x01b3, 0x0142 }, |
| 88 | { 0x01b5, 0x013e }, |
| 89 | { 0x01b6, 0x015b }, |
| 90 | { 0x01b7, 0x02c7 }, |
| 91 | { 0x01b9, 0x0161 }, |
| 92 | { 0x01ba, 0x015f }, |
| 93 | { 0x01bb, 0x0165 }, |
| 94 | { 0x01bc, 0x017a }, |
| 95 | { 0x01bd, 0x02dd }, |
| 96 | { 0x01be, 0x017e }, |
| 97 | { 0x01bf, 0x017c }, |
| 98 | { 0x01c0, 0x0154 }, |
| 99 | { 0x01c3, 0x0102 }, |
| 100 | { 0x01c5, 0x0139 }, |
| 101 | { 0x01c6, 0x0106 }, |
| 102 | { 0x01c8, 0x010c }, |
| 103 | { 0x01ca, 0x0118 }, |
| 104 | { 0x01cc, 0x011a }, |
| 105 | { 0x01cf, 0x010e }, |
| 106 | { 0x01d0, 0x0110 }, |
| 107 | { 0x01d1, 0x0143 }, |
| 108 | { 0x01d2, 0x0147 }, |
| 109 | { 0x01d5, 0x0150 }, |
| 110 | { 0x01d8, 0x0158 }, |
| 111 | { 0x01d9, 0x016e }, |
| 112 | { 0x01db, 0x0170 }, |
| 113 | { 0x01de, 0x0162 }, |
| 114 | { 0x01e0, 0x0155 }, |
| 115 | { 0x01e3, 0x0103 }, |
| 116 | { 0x01e5, 0x013a }, |
| 117 | { 0x01e6, 0x0107 }, |
| 118 | { 0x01e8, 0x010d }, |
| 119 | { 0x01ea, 0x0119 }, |
| 120 | { 0x01ec, 0x011b }, |
| 121 | { 0x01ef, 0x010f }, |
| 122 | { 0x01f0, 0x0111 }, |
| 123 | { 0x01f1, 0x0144 }, |
| 124 | { 0x01f2, 0x0148 }, |
| 125 | { 0x01f5, 0x0151 }, |
| 126 | { 0x01f8, 0x0159 }, |
| 127 | { 0x01f9, 0x016f }, |
| 128 | { 0x01fb, 0x0171 }, |
| 129 | { 0x01fe, 0x0163 }, |
| 130 | { 0x01ff, 0x02d9 }, |
| 131 | { 0x02a1, 0x0126 }, |
| 132 | { 0x02a6, 0x0124 }, |
| 133 | { 0x02a9, 0x0130 }, |
| 134 | { 0x02ab, 0x011e }, |
| 135 | { 0x02ac, 0x0134 }, |
| 136 | { 0x02b1, 0x0127 }, |
| 137 | { 0x02b6, 0x0125 }, |
| 138 | { 0x02b9, 0x0131 }, |
| 139 | { 0x02bb, 0x011f }, |
| 140 | { 0x02bc, 0x0135 }, |
| 141 | { 0x02c5, 0x010a }, |
| 142 | { 0x02c6, 0x0108 }, |
| 143 | { 0x02d5, 0x0120 }, |
| 144 | { 0x02d8, 0x011c }, |
| 145 | { 0x02dd, 0x016c }, |
| 146 | { 0x02de, 0x015c }, |
| 147 | { 0x02e5, 0x010b }, |
| 148 | { 0x02e6, 0x0109 }, |
| 149 | { 0x02f5, 0x0121 }, |
| 150 | { 0x02f8, 0x011d }, |
| 151 | { 0x02fd, 0x016d }, |
| 152 | { 0x02fe, 0x015d }, |
| 153 | { 0x03a2, 0x0138 }, |
| 154 | { 0x03a3, 0x0156 }, |
| 155 | { 0x03a5, 0x0128 }, |
| 156 | { 0x03a6, 0x013b }, |
| 157 | { 0x03aa, 0x0112 }, |
| 158 | { 0x03ab, 0x0122 }, |
| 159 | { 0x03ac, 0x0166 }, |
| 160 | { 0x03b3, 0x0157 }, |
| 161 | { 0x03b5, 0x0129 }, |
| 162 | { 0x03b6, 0x013c }, |
| 163 | { 0x03ba, 0x0113 }, |
| 164 | { 0x03bb, 0x0123 }, |
| 165 | { 0x03bc, 0x0167 }, |
| 166 | { 0x03bd, 0x014a }, |
| 167 | { 0x03bf, 0x014b }, |
| 168 | { 0x03c0, 0x0100 }, |
| 169 | { 0x03c7, 0x012e }, |
| 170 | { 0x03cc, 0x0116 }, |
| 171 | { 0x03cf, 0x012a }, |
| 172 | { 0x03d1, 0x0145 }, |
| 173 | { 0x03d2, 0x014c }, |
| 174 | { 0x03d3, 0x0136 }, |
| 175 | { 0x03d9, 0x0172 }, |
| 176 | { 0x03dd, 0x0168 }, |
| 177 | { 0x03de, 0x016a }, |
| 178 | { 0x03e0, 0x0101 }, |
| 179 | { 0x03e7, 0x012f }, |
| 180 | { 0x03ec, 0x0117 }, |
| 181 | { 0x03ef, 0x012b }, |
| 182 | { 0x03f1, 0x0146 }, |
| 183 | { 0x03f2, 0x014d }, |
| 184 | { 0x03f3, 0x0137 }, |
| 185 | { 0x03f9, 0x0173 }, |
| 186 | { 0x03fd, 0x0169 }, |
| 187 | { 0x03fe, 0x016b }, |
| 188 | { 0x047e, 0x203e }, |
| 189 | { 0x04a1, 0x3002 }, |
| 190 | { 0x04a2, 0x300c }, |
| 191 | { 0x04a3, 0x300d }, |
| 192 | { 0x04a4, 0x3001 }, |
| 193 | { 0x04a5, 0x30fb }, |
| 194 | { 0x04a6, 0x30f2 }, |
| 195 | { 0x04a7, 0x30a1 }, |
| 196 | { 0x04a8, 0x30a3 }, |
| 197 | { 0x04a9, 0x30a5 }, |
| 198 | { 0x04aa, 0x30a7 }, |
| 199 | { 0x04ab, 0x30a9 }, |
| 200 | { 0x04ac, 0x30e3 }, |
| 201 | { 0x04ad, 0x30e5 }, |
| 202 | { 0x04ae, 0x30e7 }, |
| 203 | { 0x04af, 0x30c3 }, |
| 204 | { 0x04b0, 0x30fc }, |
| 205 | { 0x04b1, 0x30a2 }, |
| 206 | { 0x04b2, 0x30a4 }, |
| 207 | { 0x04b3, 0x30a6 }, |
| 208 | { 0x04b4, 0x30a8 }, |
| 209 | { 0x04b5, 0x30aa }, |
| 210 | { 0x04b6, 0x30ab }, |
| 211 | { 0x04b7, 0x30ad }, |
| 212 | { 0x04b8, 0x30af }, |
| 213 | { 0x04b9, 0x30b1 }, |
| 214 | { 0x04ba, 0x30b3 }, |
| 215 | { 0x04bb, 0x30b5 }, |
| 216 | { 0x04bc, 0x30b7 }, |
| 217 | { 0x04bd, 0x30b9 }, |
| 218 | { 0x04be, 0x30bb }, |
| 219 | { 0x04bf, 0x30bd }, |
| 220 | { 0x04c0, 0x30bf }, |
| 221 | { 0x04c1, 0x30c1 }, |
| 222 | { 0x04c2, 0x30c4 }, |
| 223 | { 0x04c3, 0x30c6 }, |
| 224 | { 0x04c4, 0x30c8 }, |
| 225 | { 0x04c5, 0x30ca }, |
| 226 | { 0x04c6, 0x30cb }, |
| 227 | { 0x04c7, 0x30cc }, |
| 228 | { 0x04c8, 0x30cd }, |
| 229 | { 0x04c9, 0x30ce }, |
| 230 | { 0x04ca, 0x30cf }, |
| 231 | { 0x04cb, 0x30d2 }, |
| 232 | { 0x04cc, 0x30d5 }, |
| 233 | { 0x04cd, 0x30d8 }, |
| 234 | { 0x04ce, 0x30db }, |
| 235 | { 0x04cf, 0x30de }, |
| 236 | { 0x04d0, 0x30df }, |
| 237 | { 0x04d1, 0x30e0 }, |
| 238 | { 0x04d2, 0x30e1 }, |
| 239 | { 0x04d3, 0x30e2 }, |
| 240 | { 0x04d4, 0x30e4 }, |
| 241 | { 0x04d5, 0x30e6 }, |
| 242 | { 0x04d6, 0x30e8 }, |
| 243 | { 0x04d7, 0x30e9 }, |
| 244 | { 0x04d8, 0x30ea }, |
| 245 | { 0x04d9, 0x30eb }, |
| 246 | { 0x04da, 0x30ec }, |
| 247 | { 0x04db, 0x30ed }, |
| 248 | { 0x04dc, 0x30ef }, |
| 249 | { 0x04dd, 0x30f3 }, |
| 250 | { 0x04de, 0x309b }, |
| 251 | { 0x04df, 0x309c }, |
| 252 | { 0x05ac, 0x060c }, |
| 253 | { 0x05bb, 0x061b }, |
| 254 | { 0x05bf, 0x061f }, |
| 255 | { 0x05c1, 0x0621 }, |
| 256 | { 0x05c2, 0x0622 }, |
| 257 | { 0x05c3, 0x0623 }, |
| 258 | { 0x05c4, 0x0624 }, |
| 259 | { 0x05c5, 0x0625 }, |
| 260 | { 0x05c6, 0x0626 }, |
| 261 | { 0x05c7, 0x0627 }, |
| 262 | { 0x05c8, 0x0628 }, |
| 263 | { 0x05c9, 0x0629 }, |
| 264 | { 0x05ca, 0x062a }, |
| 265 | { 0x05cb, 0x062b }, |
| 266 | { 0x05cc, 0x062c }, |
| 267 | { 0x05cd, 0x062d }, |
| 268 | { 0x05ce, 0x062e }, |
| 269 | { 0x05cf, 0x062f }, |
| 270 | { 0x05d0, 0x0630 }, |
| 271 | { 0x05d1, 0x0631 }, |
| 272 | { 0x05d2, 0x0632 }, |
| 273 | { 0x05d3, 0x0633 }, |
| 274 | { 0x05d4, 0x0634 }, |
| 275 | { 0x05d5, 0x0635 }, |
| 276 | { 0x05d6, 0x0636 }, |
| 277 | { 0x05d7, 0x0637 }, |
| 278 | { 0x05d8, 0x0638 }, |
| 279 | { 0x05d9, 0x0639 }, |
| 280 | { 0x05da, 0x063a }, |
| 281 | { 0x05e0, 0x0640 }, |
| 282 | { 0x05e1, 0x0641 }, |
| 283 | { 0x05e2, 0x0642 }, |
| 284 | { 0x05e3, 0x0643 }, |
| 285 | { 0x05e4, 0x0644 }, |
| 286 | { 0x05e5, 0x0645 }, |
| 287 | { 0x05e6, 0x0646 }, |
| 288 | { 0x05e7, 0x0647 }, |
| 289 | { 0x05e8, 0x0648 }, |
| 290 | { 0x05e9, 0x0649 }, |
| 291 | { 0x05ea, 0x064a }, |
| 292 | { 0x05eb, 0x064b }, |
| 293 | { 0x05ec, 0x064c }, |
| 294 | { 0x05ed, 0x064d }, |
| 295 | { 0x05ee, 0x064e }, |
| 296 | { 0x05ef, 0x064f }, |
| 297 | { 0x05f0, 0x0650 }, |
| 298 | { 0x05f1, 0x0651 }, |
| 299 | { 0x05f2, 0x0652 }, |
| 300 | { 0x06a1, 0x0452 }, |
| 301 | { 0x06a2, 0x0453 }, |
| 302 | { 0x06a3, 0x0451 }, |
| 303 | { 0x06a4, 0x0454 }, |
| 304 | { 0x06a5, 0x0455 }, |
| 305 | { 0x06a6, 0x0456 }, |
| 306 | { 0x06a7, 0x0457 }, |
| 307 | { 0x06a8, 0x0458 }, |
| 308 | { 0x06a9, 0x0459 }, |
| 309 | { 0x06aa, 0x045a }, |
| 310 | { 0x06ab, 0x045b }, |
| 311 | { 0x06ac, 0x045c }, |
| 312 | { 0x06ae, 0x045e }, |
| 313 | { 0x06af, 0x045f }, |
| 314 | { 0x06b0, 0x2116 }, |
| 315 | { 0x06b1, 0x0402 }, |
| 316 | { 0x06b2, 0x0403 }, |
| 317 | { 0x06b3, 0x0401 }, |
| 318 | { 0x06b4, 0x0404 }, |
| 319 | { 0x06b5, 0x0405 }, |
| 320 | { 0x06b6, 0x0406 }, |
| 321 | { 0x06b7, 0x0407 }, |
| 322 | { 0x06b8, 0x0408 }, |
| 323 | { 0x06b9, 0x0409 }, |
| 324 | { 0x06ba, 0x040a }, |
| 325 | { 0x06bb, 0x040b }, |
| 326 | { 0x06bc, 0x040c }, |
| 327 | { 0x06be, 0x040e }, |
| 328 | { 0x06bf, 0x040f }, |
| 329 | { 0x06c0, 0x044e }, |
| 330 | { 0x06c1, 0x0430 }, |
| 331 | { 0x06c2, 0x0431 }, |
| 332 | { 0x06c3, 0x0446 }, |
| 333 | { 0x06c4, 0x0434 }, |
| 334 | { 0x06c5, 0x0435 }, |
| 335 | { 0x06c6, 0x0444 }, |
| 336 | { 0x06c7, 0x0433 }, |
| 337 | { 0x06c8, 0x0445 }, |
| 338 | { 0x06c9, 0x0438 }, |
| 339 | { 0x06ca, 0x0439 }, |
| 340 | { 0x06cb, 0x043a }, |
| 341 | { 0x06cc, 0x043b }, |
| 342 | { 0x06cd, 0x043c }, |
| 343 | { 0x06ce, 0x043d }, |
| 344 | { 0x06cf, 0x043e }, |
| 345 | { 0x06d0, 0x043f }, |
| 346 | { 0x06d1, 0x044f }, |
| 347 | { 0x06d2, 0x0440 }, |
| 348 | { 0x06d3, 0x0441 }, |
| 349 | { 0x06d4, 0x0442 }, |
| 350 | { 0x06d5, 0x0443 }, |
| 351 | { 0x06d6, 0x0436 }, |
| 352 | { 0x06d7, 0x0432 }, |
| 353 | { 0x06d8, 0x044c }, |
| 354 | { 0x06d9, 0x044b }, |
| 355 | { 0x06da, 0x0437 }, |
| 356 | { 0x06db, 0x0448 }, |
| 357 | { 0x06dc, 0x044d }, |
| 358 | { 0x06dd, 0x0449 }, |
| 359 | { 0x06de, 0x0447 }, |
| 360 | { 0x06df, 0x044a }, |
| 361 | { 0x06e0, 0x042e }, |
| 362 | { 0x06e1, 0x0410 }, |
| 363 | { 0x06e2, 0x0411 }, |
| 364 | { 0x06e3, 0x0426 }, |
| 365 | { 0x06e4, 0x0414 }, |
| 366 | { 0x06e5, 0x0415 }, |
| 367 | { 0x06e6, 0x0424 }, |
| 368 | { 0x06e7, 0x0413 }, |
| 369 | { 0x06e8, 0x0425 }, |
| 370 | { 0x06e9, 0x0418 }, |
| 371 | { 0x06ea, 0x0419 }, |
| 372 | { 0x06eb, 0x041a }, |
| 373 | { 0x06ec, 0x041b }, |
| 374 | { 0x06ed, 0x041c }, |
| 375 | { 0x06ee, 0x041d }, |
| 376 | { 0x06ef, 0x041e }, |
| 377 | { 0x06f0, 0x041f }, |
| 378 | { 0x06f1, 0x042f }, |
| 379 | { 0x06f2, 0x0420 }, |
| 380 | { 0x06f3, 0x0421 }, |
| 381 | { 0x06f4, 0x0422 }, |
| 382 | { 0x06f5, 0x0423 }, |
| 383 | { 0x06f6, 0x0416 }, |
| 384 | { 0x06f7, 0x0412 }, |
| 385 | { 0x06f8, 0x042c }, |
| 386 | { 0x06f9, 0x042b }, |
| 387 | { 0x06fa, 0x0417 }, |
| 388 | { 0x06fb, 0x0428 }, |
| 389 | { 0x06fc, 0x042d }, |
| 390 | { 0x06fd, 0x0429 }, |
| 391 | { 0x06fe, 0x0427 }, |
| 392 | { 0x06ff, 0x042a }, |
| 393 | { 0x07a1, 0x0386 }, |
| 394 | { 0x07a2, 0x0388 }, |
| 395 | { 0x07a3, 0x0389 }, |
| 396 | { 0x07a4, 0x038a }, |
| 397 | { 0x07a5, 0x03aa }, |
| 398 | { 0x07a7, 0x038c }, |
| 399 | { 0x07a8, 0x038e }, |
| 400 | { 0x07a9, 0x03ab }, |
| 401 | { 0x07ab, 0x038f }, |
| 402 | { 0x07ae, 0x0385 }, |
| 403 | { 0x07af, 0x2015 }, |
| 404 | { 0x07b1, 0x03ac }, |
| 405 | { 0x07b2, 0x03ad }, |
| 406 | { 0x07b3, 0x03ae }, |
| 407 | { 0x07b4, 0x03af }, |
| 408 | { 0x07b5, 0x03ca }, |
| 409 | { 0x07b6, 0x0390 }, |
| 410 | { 0x07b7, 0x03cc }, |
| 411 | { 0x07b8, 0x03cd }, |
| 412 | { 0x07b9, 0x03cb }, |
| 413 | { 0x07ba, 0x03b0 }, |
| 414 | { 0x07bb, 0x03ce }, |
| 415 | { 0x07c1, 0x0391 }, |
| 416 | { 0x07c2, 0x0392 }, |
| 417 | { 0x07c3, 0x0393 }, |
| 418 | { 0x07c4, 0x0394 }, |
| 419 | { 0x07c5, 0x0395 }, |
| 420 | { 0x07c6, 0x0396 }, |
| 421 | { 0x07c7, 0x0397 }, |
| 422 | { 0x07c8, 0x0398 }, |
| 423 | { 0x07c9, 0x0399 }, |
| 424 | { 0x07ca, 0x039a }, |
| 425 | { 0x07cb, 0x039b }, |
| 426 | { 0x07cc, 0x039c }, |
| 427 | { 0x07cd, 0x039d }, |
| 428 | { 0x07ce, 0x039e }, |
| 429 | { 0x07cf, 0x039f }, |
| 430 | { 0x07d0, 0x03a0 }, |
| 431 | { 0x07d1, 0x03a1 }, |
| 432 | { 0x07d2, 0x03a3 }, |
| 433 | { 0x07d4, 0x03a4 }, |
| 434 | { 0x07d5, 0x03a5 }, |
| 435 | { 0x07d6, 0x03a6 }, |
| 436 | { 0x07d7, 0x03a7 }, |
| 437 | { 0x07d8, 0x03a8 }, |
| 438 | { 0x07d9, 0x03a9 }, |
| 439 | { 0x07e1, 0x03b1 }, |
| 440 | { 0x07e2, 0x03b2 }, |
| 441 | { 0x07e3, 0x03b3 }, |
| 442 | { 0x07e4, 0x03b4 }, |
| 443 | { 0x07e5, 0x03b5 }, |
| 444 | { 0x07e6, 0x03b6 }, |
| 445 | { 0x07e7, 0x03b7 }, |
| 446 | { 0x07e8, 0x03b8 }, |
| 447 | { 0x07e9, 0x03b9 }, |
| 448 | { 0x07ea, 0x03ba }, |
| 449 | { 0x07eb, 0x03bb }, |
| 450 | { 0x07ec, 0x03bc }, |
| 451 | { 0x07ed, 0x03bd }, |
| 452 | { 0x07ee, 0x03be }, |
| 453 | { 0x07ef, 0x03bf }, |
| 454 | { 0x07f0, 0x03c0 }, |
| 455 | { 0x07f1, 0x03c1 }, |
| 456 | { 0x07f2, 0x03c3 }, |
| 457 | { 0x07f3, 0x03c2 }, |
| 458 | { 0x07f4, 0x03c4 }, |
| 459 | { 0x07f5, 0x03c5 }, |
| 460 | { 0x07f6, 0x03c6 }, |
| 461 | { 0x07f7, 0x03c7 }, |
| 462 | { 0x07f8, 0x03c8 }, |
| 463 | { 0x07f9, 0x03c9 }, |
| 464 | { 0x08a1, 0x23b7 }, |
| 465 | { 0x08a2, 0x250c }, |
| 466 | { 0x08a3, 0x2500 }, |
| 467 | { 0x08a4, 0x2320 }, |
| 468 | { 0x08a5, 0x2321 }, |
| 469 | { 0x08a6, 0x2502 }, |
| 470 | { 0x08a7, 0x23a1 }, |
| 471 | { 0x08a8, 0x23a3 }, |
| 472 | { 0x08a9, 0x23a4 }, |
| 473 | { 0x08aa, 0x23a6 }, |
| 474 | { 0x08ab, 0x239b }, |
| 475 | { 0x08ac, 0x239d }, |
| 476 | { 0x08ad, 0x239e }, |
| 477 | { 0x08ae, 0x23a0 }, |
| 478 | { 0x08af, 0x23a8 }, |
| 479 | { 0x08b0, 0x23ac }, |
| 480 | { 0x08bc, 0x2264 }, |
| 481 | { 0x08bd, 0x2260 }, |
| 482 | { 0x08be, 0x2265 }, |
| 483 | { 0x08bf, 0x222b }, |
| 484 | { 0x08c0, 0x2234 }, |
| 485 | { 0x08c1, 0x221d }, |
| 486 | { 0x08c2, 0x221e }, |
| 487 | { 0x08c5, 0x2207 }, |
| 488 | { 0x08c8, 0x223c }, |
| 489 | { 0x08c9, 0x2243 }, |
| 490 | { 0x08cd, 0x21d4 }, |
| 491 | { 0x08ce, 0x21d2 }, |
| 492 | { 0x08cf, 0x2261 }, |
| 493 | { 0x08d6, 0x221a }, |
| 494 | { 0x08da, 0x2282 }, |
| 495 | { 0x08db, 0x2283 }, |
| 496 | { 0x08dc, 0x2229 }, |
| 497 | { 0x08dd, 0x222a }, |
| 498 | { 0x08de, 0x2227 }, |
| 499 | { 0x08df, 0x2228 }, |
| 500 | { 0x08ef, 0x2202 }, |
| 501 | { 0x08f6, 0x0192 }, |
| 502 | { 0x08fb, 0x2190 }, |
| 503 | { 0x08fc, 0x2191 }, |
| 504 | { 0x08fd, 0x2192 }, |
| 505 | { 0x08fe, 0x2193 }, |
| 506 | { 0x09e0, 0x25c6 }, |
| 507 | { 0x09e1, 0x2592 }, |
| 508 | { 0x09e2, 0x2409 }, |
| 509 | { 0x09e3, 0x240c }, |
| 510 | { 0x09e4, 0x240d }, |
| 511 | { 0x09e5, 0x240a }, |
| 512 | { 0x09e8, 0x2424 }, |
| 513 | { 0x09e9, 0x240b }, |
| 514 | { 0x09ea, 0x2518 }, |
| 515 | { 0x09eb, 0x2510 }, |
| 516 | { 0x09ec, 0x250c }, |
| 517 | { 0x09ed, 0x2514 }, |
| 518 | { 0x09ee, 0x253c }, |
| 519 | { 0x09ef, 0x23ba }, |
| 520 | { 0x09f0, 0x23bb }, |
| 521 | { 0x09f1, 0x2500 }, |
| 522 | { 0x09f2, 0x23bc }, |
| 523 | { 0x09f3, 0x23bd }, |
| 524 | { 0x09f4, 0x251c }, |
| 525 | { 0x09f5, 0x2524 }, |
| 526 | { 0x09f6, 0x2534 }, |
| 527 | { 0x09f7, 0x252c }, |
| 528 | { 0x09f8, 0x2502 }, |
| 529 | { 0x0aa1, 0x2003 }, |
| 530 | { 0x0aa2, 0x2002 }, |
| 531 | { 0x0aa3, 0x2004 }, |
| 532 | { 0x0aa4, 0x2005 }, |
| 533 | { 0x0aa5, 0x2007 }, |
| 534 | { 0x0aa6, 0x2008 }, |
| 535 | { 0x0aa7, 0x2009 }, |
| 536 | { 0x0aa8, 0x200a }, |
| 537 | { 0x0aa9, 0x2014 }, |
| 538 | { 0x0aaa, 0x2013 }, |
| 539 | { 0x0aae, 0x2026 }, |
| 540 | { 0x0aaf, 0x2025 }, |
| 541 | { 0x0ab0, 0x2153 }, |
| 542 | { 0x0ab1, 0x2154 }, |
| 543 | { 0x0ab2, 0x2155 }, |
| 544 | { 0x0ab3, 0x2156 }, |
| 545 | { 0x0ab4, 0x2157 }, |
| 546 | { 0x0ab5, 0x2158 }, |
| 547 | { 0x0ab6, 0x2159 }, |
| 548 | { 0x0ab7, 0x215a }, |
| 549 | { 0x0ab8, 0x2105 }, |
| 550 | { 0x0abb, 0x2012 }, |
| 551 | { 0x0abc, 0x2329 }, |
| 552 | { 0x0abe, 0x232a }, |
| 553 | { 0x0ac3, 0x215b }, |
| 554 | { 0x0ac4, 0x215c }, |
| 555 | { 0x0ac5, 0x215d }, |
| 556 | { 0x0ac6, 0x215e }, |
| 557 | { 0x0ac9, 0x2122 }, |
| 558 | { 0x0aca, 0x2613 }, |
| 559 | { 0x0acc, 0x25c1 }, |
| 560 | { 0x0acd, 0x25b7 }, |
| 561 | { 0x0ace, 0x25cb }, |
| 562 | { 0x0acf, 0x25af }, |
| 563 | { 0x0ad0, 0x2018 }, |
| 564 | { 0x0ad1, 0x2019 }, |
| 565 | { 0x0ad2, 0x201c }, |
| 566 | { 0x0ad3, 0x201d }, |
| 567 | { 0x0ad4, 0x211e }, |
| 568 | { 0x0ad6, 0x2032 }, |
| 569 | { 0x0ad7, 0x2033 }, |
| 570 | { 0x0ad9, 0x271d }, |
| 571 | { 0x0adb, 0x25ac }, |
| 572 | { 0x0adc, 0x25c0 }, |
| 573 | { 0x0add, 0x25b6 }, |
| 574 | { 0x0ade, 0x25cf }, |
| 575 | { 0x0adf, 0x25ae }, |
| 576 | { 0x0ae0, 0x25e6 }, |
| 577 | { 0x0ae1, 0x25ab }, |
| 578 | { 0x0ae2, 0x25ad }, |
| 579 | { 0x0ae3, 0x25b3 }, |
| 580 | { 0x0ae4, 0x25bd }, |
| 581 | { 0x0ae5, 0x2606 }, |
| 582 | { 0x0ae6, 0x2022 }, |
| 583 | { 0x0ae7, 0x25aa }, |
| 584 | { 0x0ae8, 0x25b2 }, |
| 585 | { 0x0ae9, 0x25bc }, |
| 586 | { 0x0aea, 0x261c }, |
| 587 | { 0x0aeb, 0x261e }, |
| 588 | { 0x0aec, 0x2663 }, |
| 589 | { 0x0aed, 0x2666 }, |
| 590 | { 0x0aee, 0x2665 }, |
| 591 | { 0x0af0, 0x2720 }, |
| 592 | { 0x0af1, 0x2020 }, |
| 593 | { 0x0af2, 0x2021 }, |
| 594 | { 0x0af3, 0x2713 }, |
| 595 | { 0x0af4, 0x2717 }, |
| 596 | { 0x0af5, 0x266f }, |
| 597 | { 0x0af6, 0x266d }, |
| 598 | { 0x0af7, 0x2642 }, |
| 599 | { 0x0af8, 0x2640 }, |
| 600 | { 0x0af9, 0x260e }, |
| 601 | { 0x0afa, 0x2315 }, |
| 602 | { 0x0afb, 0x2117 }, |
| 603 | { 0x0afc, 0x2038 }, |
| 604 | { 0x0afd, 0x201a }, |
| 605 | { 0x0afe, 0x201e }, |
| 606 | { 0x0ba3, 0x003c }, |
| 607 | { 0x0ba6, 0x003e }, |
| 608 | { 0x0ba8, 0x2228 }, |
| 609 | { 0x0ba9, 0x2227 }, |
| 610 | { 0x0bc0, 0x00af }, |
| 611 | { 0x0bc2, 0x22a5 }, |
| 612 | { 0x0bc3, 0x2229 }, |
| 613 | { 0x0bc4, 0x230a }, |
| 614 | { 0x0bc6, 0x005f }, |
| 615 | { 0x0bca, 0x2218 }, |
| 616 | { 0x0bcc, 0x2395 }, |
| 617 | { 0x0bce, 0x22a4 }, |
| 618 | { 0x0bcf, 0x25cb }, |
| 619 | { 0x0bd3, 0x2308 }, |
| 620 | { 0x0bd6, 0x222a }, |
| 621 | { 0x0bd8, 0x2283 }, |
| 622 | { 0x0bda, 0x2282 }, |
| 623 | { 0x0bdc, 0x22a2 }, |
| 624 | { 0x0bfc, 0x22a3 }, |
| 625 | { 0x0cdf, 0x2017 }, |
| 626 | { 0x0ce0, 0x05d0 }, |
| 627 | { 0x0ce1, 0x05d1 }, |
| 628 | { 0x0ce2, 0x05d2 }, |
| 629 | { 0x0ce3, 0x05d3 }, |
| 630 | { 0x0ce4, 0x05d4 }, |
| 631 | { 0x0ce5, 0x05d5 }, |
| 632 | { 0x0ce6, 0x05d6 }, |
| 633 | { 0x0ce7, 0x05d7 }, |
| 634 | { 0x0ce8, 0x05d8 }, |
| 635 | { 0x0ce9, 0x05d9 }, |
| 636 | { 0x0cea, 0x05da }, |
| 637 | { 0x0ceb, 0x05db }, |
| 638 | { 0x0cec, 0x05dc }, |
| 639 | { 0x0ced, 0x05dd }, |
| 640 | { 0x0cee, 0x05de }, |
| 641 | { 0x0cef, 0x05df }, |
| 642 | { 0x0cf0, 0x05e0 }, |
| 643 | { 0x0cf1, 0x05e1 }, |
| 644 | { 0x0cf2, 0x05e2 }, |
| 645 | { 0x0cf3, 0x05e3 }, |
| 646 | { 0x0cf4, 0x05e4 }, |
| 647 | { 0x0cf5, 0x05e5 }, |
| 648 | { 0x0cf6, 0x05e6 }, |
| 649 | { 0x0cf7, 0x05e7 }, |
| 650 | { 0x0cf8, 0x05e8 }, |
| 651 | { 0x0cf9, 0x05e9 }, |
| 652 | { 0x0cfa, 0x05ea }, |
| 653 | { 0x0da1, 0x0e01 }, |
| 654 | { 0x0da2, 0x0e02 }, |
| 655 | { 0x0da3, 0x0e03 }, |
| 656 | { 0x0da4, 0x0e04 }, |
| 657 | { 0x0da5, 0x0e05 }, |
| 658 | { 0x0da6, 0x0e06 }, |
| 659 | { 0x0da7, 0x0e07 }, |
| 660 | { 0x0da8, 0x0e08 }, |
| 661 | { 0x0da9, 0x0e09 }, |
| 662 | { 0x0daa, 0x0e0a }, |
| 663 | { 0x0dab, 0x0e0b }, |
| 664 | { 0x0dac, 0x0e0c }, |
| 665 | { 0x0dad, 0x0e0d }, |
| 666 | { 0x0dae, 0x0e0e }, |
| 667 | { 0x0daf, 0x0e0f }, |
| 668 | { 0x0db0, 0x0e10 }, |
| 669 | { 0x0db1, 0x0e11 }, |
| 670 | { 0x0db2, 0x0e12 }, |
| 671 | { 0x0db3, 0x0e13 }, |
| 672 | { 0x0db4, 0x0e14 }, |
| 673 | { 0x0db5, 0x0e15 }, |
| 674 | { 0x0db6, 0x0e16 }, |
| 675 | { 0x0db7, 0x0e17 }, |
| 676 | { 0x0db8, 0x0e18 }, |
| 677 | { 0x0db9, 0x0e19 }, |
| 678 | { 0x0dba, 0x0e1a }, |
| 679 | { 0x0dbb, 0x0e1b }, |
| 680 | { 0x0dbc, 0x0e1c }, |
| 681 | { 0x0dbd, 0x0e1d }, |
| 682 | { 0x0dbe, 0x0e1e }, |
| 683 | { 0x0dbf, 0x0e1f }, |
| 684 | { 0x0dc0, 0x0e20 }, |
| 685 | { 0x0dc1, 0x0e21 }, |
| 686 | { 0x0dc2, 0x0e22 }, |
| 687 | { 0x0dc3, 0x0e23 }, |
| 688 | { 0x0dc4, 0x0e24 }, |
| 689 | { 0x0dc5, 0x0e25 }, |
| 690 | { 0x0dc6, 0x0e26 }, |
| 691 | { 0x0dc7, 0x0e27 }, |
| 692 | { 0x0dc8, 0x0e28 }, |
| 693 | { 0x0dc9, 0x0e29 }, |
| 694 | { 0x0dca, 0x0e2a }, |
| 695 | { 0x0dcb, 0x0e2b }, |
| 696 | { 0x0dcc, 0x0e2c }, |
| 697 | { 0x0dcd, 0x0e2d }, |
| 698 | { 0x0dce, 0x0e2e }, |
| 699 | { 0x0dcf, 0x0e2f }, |
| 700 | { 0x0dd0, 0x0e30 }, |
| 701 | { 0x0dd1, 0x0e31 }, |
| 702 | { 0x0dd2, 0x0e32 }, |
| 703 | { 0x0dd3, 0x0e33 }, |
| 704 | { 0x0dd4, 0x0e34 }, |
| 705 | { 0x0dd5, 0x0e35 }, |
| 706 | { 0x0dd6, 0x0e36 }, |
| 707 | { 0x0dd7, 0x0e37 }, |
| 708 | { 0x0dd8, 0x0e38 }, |
| 709 | { 0x0dd9, 0x0e39 }, |
| 710 | { 0x0dda, 0x0e3a }, |
| 711 | { 0x0ddf, 0x0e3f }, |
| 712 | { 0x0de0, 0x0e40 }, |
| 713 | { 0x0de1, 0x0e41 }, |
| 714 | { 0x0de2, 0x0e42 }, |
| 715 | { 0x0de3, 0x0e43 }, |
| 716 | { 0x0de4, 0x0e44 }, |
| 717 | { 0x0de5, 0x0e45 }, |
| 718 | { 0x0de6, 0x0e46 }, |
| 719 | { 0x0de7, 0x0e47 }, |
| 720 | { 0x0de8, 0x0e48 }, |
| 721 | { 0x0de9, 0x0e49 }, |
| 722 | { 0x0dea, 0x0e4a }, |
| 723 | { 0x0deb, 0x0e4b }, |
| 724 | { 0x0dec, 0x0e4c }, |
| 725 | { 0x0ded, 0x0e4d }, |
| 726 | { 0x0df0, 0x0e50 }, |
| 727 | { 0x0df1, 0x0e51 }, |
| 728 | { 0x0df2, 0x0e52 }, |
| 729 | { 0x0df3, 0x0e53 }, |
| 730 | { 0x0df4, 0x0e54 }, |
| 731 | { 0x0df5, 0x0e55 }, |
| 732 | { 0x0df6, 0x0e56 }, |
| 733 | { 0x0df7, 0x0e57 }, |
| 734 | { 0x0df8, 0x0e58 }, |
| 735 | { 0x0df9, 0x0e59 }, |
| 736 | { 0x0ea1, 0x3131 }, |
| 737 | { 0x0ea2, 0x3132 }, |
| 738 | { 0x0ea3, 0x3133 }, |
| 739 | { 0x0ea4, 0x3134 }, |
| 740 | { 0x0ea5, 0x3135 }, |
| 741 | { 0x0ea6, 0x3136 }, |
| 742 | { 0x0ea7, 0x3137 }, |
| 743 | { 0x0ea8, 0x3138 }, |
| 744 | { 0x0ea9, 0x3139 }, |
| 745 | { 0x0eaa, 0x313a }, |
| 746 | { 0x0eab, 0x313b }, |
| 747 | { 0x0eac, 0x313c }, |
| 748 | { 0x0ead, 0x313d }, |
| 749 | { 0x0eae, 0x313e }, |
| 750 | { 0x0eaf, 0x313f }, |
| 751 | { 0x0eb0, 0x3140 }, |
| 752 | { 0x0eb1, 0x3141 }, |
| 753 | { 0x0eb2, 0x3142 }, |
| 754 | { 0x0eb3, 0x3143 }, |
| 755 | { 0x0eb4, 0x3144 }, |
| 756 | { 0x0eb5, 0x3145 }, |
| 757 | { 0x0eb6, 0x3146 }, |
| 758 | { 0x0eb7, 0x3147 }, |
| 759 | { 0x0eb8, 0x3148 }, |
| 760 | { 0x0eb9, 0x3149 }, |
| 761 | { 0x0eba, 0x314a }, |
| 762 | { 0x0ebb, 0x314b }, |
| 763 | { 0x0ebc, 0x314c }, |
| 764 | { 0x0ebd, 0x314d }, |
| 765 | { 0x0ebe, 0x314e }, |
| 766 | { 0x0ebf, 0x314f }, |
| 767 | { 0x0ec0, 0x3150 }, |
| 768 | { 0x0ec1, 0x3151 }, |
| 769 | { 0x0ec2, 0x3152 }, |
| 770 | { 0x0ec3, 0x3153 }, |
| 771 | { 0x0ec4, 0x3154 }, |
| 772 | { 0x0ec5, 0x3155 }, |
| 773 | { 0x0ec6, 0x3156 }, |
| 774 | { 0x0ec7, 0x3157 }, |
| 775 | { 0x0ec8, 0x3158 }, |
| 776 | { 0x0ec9, 0x3159 }, |
| 777 | { 0x0eca, 0x315a }, |
| 778 | { 0x0ecb, 0x315b }, |
| 779 | { 0x0ecc, 0x315c }, |
| 780 | { 0x0ecd, 0x315d }, |
| 781 | { 0x0ece, 0x315e }, |
| 782 | { 0x0ecf, 0x315f }, |
| 783 | { 0x0ed0, 0x3160 }, |
| 784 | { 0x0ed1, 0x3161 }, |
| 785 | { 0x0ed2, 0x3162 }, |
| 786 | { 0x0ed3, 0x3163 }, |
| 787 | { 0x0ed4, 0x11a8 }, |
| 788 | { 0x0ed5, 0x11a9 }, |
| 789 | { 0x0ed6, 0x11aa }, |
| 790 | { 0x0ed7, 0x11ab }, |
| 791 | { 0x0ed8, 0x11ac }, |
| 792 | { 0x0ed9, 0x11ad }, |
| 793 | { 0x0eda, 0x11ae }, |
| 794 | { 0x0edb, 0x11af }, |
| 795 | { 0x0edc, 0x11b0 }, |
| 796 | { 0x0edd, 0x11b1 }, |
| 797 | { 0x0ede, 0x11b2 }, |
| 798 | { 0x0edf, 0x11b3 }, |
| 799 | { 0x0ee0, 0x11b4 }, |
| 800 | { 0x0ee1, 0x11b5 }, |
| 801 | { 0x0ee2, 0x11b6 }, |
| 802 | { 0x0ee3, 0x11b7 }, |
| 803 | { 0x0ee4, 0x11b8 }, |
| 804 | { 0x0ee5, 0x11b9 }, |
| 805 | { 0x0ee6, 0x11ba }, |
| 806 | { 0x0ee7, 0x11bb }, |
| 807 | { 0x0ee8, 0x11bc }, |
| 808 | { 0x0ee9, 0x11bd }, |
| 809 | { 0x0eea, 0x11be }, |
| 810 | { 0x0eeb, 0x11bf }, |
| 811 | { 0x0eec, 0x11c0 }, |
| 812 | { 0x0eed, 0x11c1 }, |
| 813 | { 0x0eee, 0x11c2 }, |
| 814 | { 0x0eef, 0x316d }, |
| 815 | { 0x0ef0, 0x3171 }, |
| 816 | { 0x0ef1, 0x3178 }, |
| 817 | { 0x0ef2, 0x317f }, |
| 818 | { 0x0ef3, 0x3181 }, |
| 819 | { 0x0ef4, 0x3184 }, |
| 820 | { 0x0ef5, 0x3186 }, |
| 821 | { 0x0ef6, 0x318d }, |
| 822 | { 0x0ef7, 0x318e }, |
| 823 | { 0x0ef8, 0x11eb }, |
| 824 | { 0x0ef9, 0x11f0 }, |
| 825 | { 0x0efa, 0x11f9 }, |
| 826 | { 0x0eff, 0x20a9 }, |
| 827 | { 0x13a4, 0x20ac }, |
| 828 | { 0x13bc, 0x0152 }, |
| 829 | { 0x13bd, 0x0153 }, |
| 830 | { 0x13be, 0x0178 }, |
| 831 | { 0x20ac, 0x20ac }, |
| 832 | // Numeric keypad with numlock on |
| 833 | { XK_KP_Space, ' ' }, |
| 834 | { XK_KP_Equal, '=' }, |
| 835 | { XK_KP_Multiply, '*' }, |
| 836 | { XK_KP_Add, '+' }, |
| 837 | { XK_KP_Separator, ',' }, |
| 838 | { XK_KP_Subtract, '-' }, |
| 839 | { XK_KP_Decimal, '.' }, |
| 840 | { XK_KP_Divide, '/' }, |
| 841 | { XK_KP_0, 0x0030 }, |
| 842 | { XK_KP_1, 0x0031 }, |
| 843 | { XK_KP_2, 0x0032 }, |
| 844 | { XK_KP_3, 0x0033 }, |
| 845 | { XK_KP_4, 0x0034 }, |
| 846 | { XK_KP_5, 0x0035 }, |
| 847 | { XK_KP_6, 0x0036 }, |
| 848 | { XK_KP_7, 0x0037 }, |
| 849 | { XK_KP_8, 0x0038 }, |
| 850 | { XK_KP_9, 0x0039 } |
| 851 | }; |
| 852 | |
| 853 | |
| 854 | //************************************************************************ |
| 855 | //**** GLFW internal functions **** |
| 856 | //************************************************************************ |
| 857 | |
| 858 | //======================================================================== |
| 859 | // _glfwKeySym2Unicode() - Convert X11 KeySym to Unicode |
| 860 | //======================================================================== |
| 861 | |
| 862 | long _glfwKeySym2Unicode( KeySym keysym ) |
| 863 | { |
| 864 | int min = 0; |
| 865 | int max = sizeof(keysymtab) / sizeof(struct codepair) - 1; |
| 866 | int mid; |
| 867 | |
| 868 | /* First check for Latin-1 characters (1:1 mapping) */ |
| 869 | if( (keysym >= 0x0020 && keysym <= 0x007e) || |
| 870 | (keysym >= 0x00a0 && keysym <= 0x00ff) ) |
| 871 | { return keysym; |
| 872 | } |
| 873 | |
| 874 | /* Also check for directly encoded 24-bit UCS characters */ |
| 875 | if( (keysym & 0xff000000) == 0x01000000 ) |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 876 | return keysym & 0x00ffffff; |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 877 | |
| 878 | /* Binary search in table */ |
| 879 | while( max >= min ) |
| 880 | { |
| 881 | mid = (min + max) / 2; |
| 882 | if( keysymtab[mid].keysym < keysym ) |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 883 | min = mid + 1; |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 884 | else if( keysymtab[mid].keysym > keysym ) |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 885 | max = mid - 1; |
Camilla Berglund | 3249f81 | 2010-09-07 17:34:51 +0200 | [diff] [blame] | 886 | else |
| 887 | { |
| 888 | /* Found it! */ |
| 889 | return keysymtab[mid].ucs; |
| 890 | } |
| 891 | } |
| 892 | |
| 893 | /* No matching Unicode value found */ |
| 894 | return -1; |
| 895 | } |