LEFT | RIGHT |
1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ | 1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
2 /* ibus - The Input Bus | 2 /* ibus - The Input Bus |
3 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> | 3 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> |
4 * Copyright (C) 2008-2010 Red Hat, Inc. | 4 * Copyright (C) 2008-2010 Red Hat, Inc. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 22 matching lines...) Expand all Loading... |
33 * Those keysym data is converted from keysymdef.h in | 33 * Those keysym data is converted from keysymdef.h in |
34 * FreeDesktop. | 34 * FreeDesktop. |
35 * | 35 * |
36 * Most of the key symbols are not explicit documented, | 36 * Most of the key symbols are not explicit documented, |
37 * because they are self-explaining. | 37 * because they are self-explaining. |
38 * | 38 * |
39 * @see_also: #IBusKeymap, #IBusHotkeyProfile | 39 * @see_also: #IBusKeymap, #IBusHotkeyProfile |
40 * | 40 * |
41 */ | 41 */ |
42 | 42 |
43 #ifndef __IBUS_KEYSYMS_COMPACT_H__ | 43 #ifndef __IBUS_KEYSYMS_COMPAT_H__ |
44 #define __IBUS_KEYSYMS_COMPACT_H__ | 44 #define __IBUS_KEYSYMS_COMPAT_H__ |
45 | 45 |
46 | 46 |
47 #define IBUS_VoidSymbol 0xffffff | 47 #define IBUS_VoidSymbol 0xffffff |
48 #define IBUS_BackSpace 0xff08 | 48 #define IBUS_BackSpace 0xff08 |
49 #define IBUS_Tab 0xff09 | 49 #define IBUS_Tab 0xff09 |
50 #define IBUS_Linefeed 0xff0a | 50 #define IBUS_Linefeed 0xff0a |
51 #define IBUS_Clear 0xff0b | 51 #define IBUS_Clear 0xff0b |
52 #define IBUS_Return 0xff0d | 52 #define IBUS_Return 0xff0d |
53 #define IBUS_Pause 0xff13 | 53 #define IBUS_Pause 0xff13 |
54 #define IBUS_Scroll_Lock 0xff14 | 54 #define IBUS_Scroll_Lock 0xff14 |
(...skipping 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2089 #define IBUS_braille_dots_1235678 0x10028f7 | 2089 #define IBUS_braille_dots_1235678 0x10028f7 |
2090 #define IBUS_braille_dots_45678 0x10028f8 | 2090 #define IBUS_braille_dots_45678 0x10028f8 |
2091 #define IBUS_braille_dots_145678 0x10028f9 | 2091 #define IBUS_braille_dots_145678 0x10028f9 |
2092 #define IBUS_braille_dots_245678 0x10028fa | 2092 #define IBUS_braille_dots_245678 0x10028fa |
2093 #define IBUS_braille_dots_1245678 0x10028fb | 2093 #define IBUS_braille_dots_1245678 0x10028fb |
2094 #define IBUS_braille_dots_345678 0x10028fc | 2094 #define IBUS_braille_dots_345678 0x10028fc |
2095 #define IBUS_braille_dots_1345678 0x10028fd | 2095 #define IBUS_braille_dots_1345678 0x10028fd |
2096 #define IBUS_braille_dots_2345678 0x10028fe | 2096 #define IBUS_braille_dots_2345678 0x10028fe |
2097 #define IBUS_braille_dots_12345678 0x10028ff | 2097 #define IBUS_braille_dots_12345678 0x10028ff |
2098 | 2098 |
2099 #endif /* __IBUS_KEYSYMS_COMPACT_H__ */ | 2099 #endif /* __IBUS_KEYSYMS_COMPAT_H__ */ |
LEFT | RIGHT |