| 1 | /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
| 2 | /* ibus - The Input Bus |
| 3 | * Copyright (C) 2008-2013 Peng Huang <shawn.p.huang@gmail.com> |
| 4 | * Copyright (C) 2008-2013 Red Hat, Inc. |
| 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
| 19 | * USA |
| 20 | */ |
| 21 | |
| 22 | #if !defined (__IBUS_H_INSIDE__) && !defined (IBUS_COMPILATION) |
| 23 | #error "Only <ibus.h> can be included directly" |
| 24 | #endif |
| 25 | |
| 26 | #ifndef __IBUS_KEYSYMS_COMPAT_H__ |
| 27 | #define __IBUS_KEYSYMS_COMPAT_H__ |
| 28 | |
| 29 | /** |
| 30 | * SECTION: ibuskeysyms |
| 31 | * @short_description: Key symbol definition. |
| 32 | * @title: IBusKeysyms |
| 33 | * @stability: Stable |
| 34 | * |
| 35 | * This section defines the key symbols (keysym) used in IBus. |
| 36 | * Those keysym data is converted from keysymdef.h in |
| 37 | * FreeDesktop. |
| 38 | * |
| 39 | * Most of the key symbols are not explicit documented, |
| 40 | * because they are self-explaining. |
| 41 | * |
| 42 | * see_also: #IBusKeymap, #IBusHotkeyProfile |
| 43 | * |
| 44 | */ |
| 45 | |
| 46 | |
| 47 | #define IBUS_VoidSymbol 0xffffff |
| 48 | #define IBUS_BackSpace 0xff08 |
| 49 | #define IBUS_Tab 0xff09 |
| 50 | #define IBUS_Linefeed 0xff0a |
| 51 | #define IBUS_Clear 0xff0b |
| 52 | #define IBUS_Return 0xff0d |
| 53 | #define IBUS_Pause 0xff13 |
| 54 | #define IBUS_Scroll_Lock 0xff14 |
| 55 | #define IBUS_Sys_Req 0xff15 |
| 56 | #define IBUS_Escape 0xff1b |
| 57 | #define IBUS_Delete 0xffff |
| 58 | |
| 59 | |
| 60 | /** |
| 61 | * IBUS_Multi_key: |
| 62 | * |
| 63 | * Key for composing characters. |
| 64 | * A.k.a. Compose Key. |
| 65 | */ |
| 66 | #define IBUS_Multi_key 0xff20 |
| 67 | |
| 68 | /** |
| 69 | * IBUS_Codeinput: |
| 70 | * |
| 71 | * International and multi-key character composition. |
| 72 | */ |
| 73 | #define IBUS_Codeinput 0xff37 |
| 74 | #define IBUS_SingleCandidate 0xff3c |
| 75 | #define IBUS_MultipleCandidate 0xff3d |
| 76 | #define IBUS_PreviousCandidate 0xff3e |
| 77 | |
| 78 | /** |
| 79 | * IBUS_Kanji: |
| 80 | * |
| 81 | * Japanese keyboard support. |
| 82 | */ |
| 83 | #define IBUS_Kanji 0xff21 |
| 84 | |
| 85 | /** |
| 86 | * IBUS_Muhenkan: |
| 87 | * |
| 88 | * Japanese keyboard support. |
| 89 | */ |
| 90 | #define IBUS_Muhenkan 0xff22 |
| 91 | |
| 92 | /** |
| 93 | * IBUS_Henkan_Mode: |
| 94 | * |
| 95 | * Japanese keyboard support. |
| 96 | */ |
| 97 | #define IBUS_Henkan_Mode 0xff23 |
| 98 | |
| 99 | /** |
| 100 | * IBUS_Henkan: |
| 101 | * |
| 102 | * Japanese keyboard support. |
| 103 | */ |
| 104 | #define IBUS_Henkan 0xff23 |
| 105 | |
| 106 | /** |
| 107 | * IBUS_Romaji: |
| 108 | * |
| 109 | * Japanese keyboard support. |
| 110 | */ |
| 111 | #define IBUS_Romaji 0xff24 |
| 112 | |
| 113 | /** |
| 114 | * IBUS_Hiragana: |
| 115 | * |
| 116 | * Japanese keyboard support. |
| 117 | */ |
| 118 | #define IBUS_Hiragana 0xff25 |
| 119 | |
| 120 | /** |
| 121 | * IBUS_Katakana: |
| 122 | * |
| 123 | * Japanese keyboard support. |
| 124 | */ |
| 125 | #define IBUS_Katakana 0xff26 |
| 126 | |
| 127 | /** |
| 128 | * IBUS_Hiragana_Katakana: |
| 129 | * |
| 130 | * Japanese keyboard support. |
| 131 | */ |
| 132 | #define IBUS_Hiragana_Katakana 0xff27 |
| 133 | #define IBUS_Zenkaku 0xff28 |
| 134 | #define IBUS_Hankaku 0xff29 |
| 135 | #define IBUS_Zenkaku_Hankaku 0xff2a |
| 136 | #define IBUS_Touroku 0xff2b |
| 137 | #define IBUS_Massyo 0xff2c |
| 138 | #define IBUS_Kana_Lock 0xff2d |
| 139 | #define IBUS_Kana_Shift 0xff2e |
| 140 | #define IBUS_Eisu_Shift 0xff2f |
| 141 | #define IBUS_Eisu_toggle 0xff30 |
| 142 | #define IBUS_Kanji_Bangou 0xff37 |
| 143 | #define IBUS_Zen_Koho 0xff3d |
| 144 | #define IBUS_Mae_Koho 0xff3e |
| 145 | #define IBUS_Home 0xff50 |
| 146 | #define IBUS_Left 0xff51 |
| 147 | #define IBUS_Up 0xff52 |
| 148 | #define IBUS_Right 0xff53 |
| 149 | #define IBUS_Down 0xff54 |
| 150 | #define IBUS_Prior 0xff55 |
| 151 | #define IBUS_Page_Up 0xff55 |
| 152 | #define IBUS_Next 0xff56 |
| 153 | #define IBUS_Page_Down 0xff56 |
| 154 | #define IBUS_End 0xff57 |
| 155 | #define IBUS_Begin 0xff58 |
| 156 | #define IBUS_Select 0xff60 |
| 157 | #define IBUS_Print 0xff61 |
| 158 | #define IBUS_Execute 0xff62 |
| 159 | #define IBUS_Insert 0xff63 |
| 160 | #define IBUS_Undo 0xff65 |
| 161 | #define IBUS_Redo 0xff66 |
| 162 | #define 0xff67 |
| 163 | #define IBUS_Find 0xff68 |
| 164 | #define IBUS_Cancel 0xff69 |
| 165 | #define IBUS_Help 0xff6a |
| 166 | #define IBUS_Break 0xff6b |
| 167 | #define IBUS_Mode_switch 0xff7e |
| 168 | #define IBUS_script_switch 0xff7e |
| 169 | #define IBUS_Num_Lock 0xff7f |
| 170 | #define IBUS_KP_Space 0xff80 |
| 171 | #define IBUS_KP_Tab 0xff89 |
| 172 | #define IBUS_KP_Enter 0xff8d |
| 173 | #define IBUS_KP_F1 0xff91 |
| 174 | #define IBUS_KP_F2 0xff92 |
| 175 | #define IBUS_KP_F3 0xff93 |
| 176 | #define IBUS_KP_F4 0xff94 |
| 177 | #define IBUS_KP_Home 0xff95 |
| 178 | #define IBUS_KP_Left 0xff96 |
| 179 | #define IBUS_KP_Up 0xff97 |
| 180 | #define IBUS_KP_Right 0xff98 |
| 181 | #define IBUS_KP_Down 0xff99 |
| 182 | #define IBUS_KP_Prior 0xff9a |
| 183 | #define IBUS_KP_Page_Up 0xff9a |
| 184 | #define IBUS_KP_Next 0xff9b |
| 185 | #define IBUS_KP_Page_Down 0xff9b |
| 186 | #define IBUS_KP_End 0xff9c |
| 187 | #define IBUS_KP_Begin 0xff9d |
| 188 | #define IBUS_KP_Insert 0xff9e |
| 189 | #define IBUS_KP_Delete 0xff9f |
| 190 | #define IBUS_KP_Equal 0xffbd |
| 191 | #define IBUS_KP_Multiply 0xffaa |
| 192 | #define IBUS_KP_Add 0xffab |
| 193 | #define IBUS_KP_Separator 0xffac |
| 194 | #define IBUS_KP_Subtract 0xffad |
| 195 | #define IBUS_KP_Decimal 0xffae |
| 196 | #define IBUS_KP_Divide 0xffaf |
| 197 | #define IBUS_KP_0 0xffb0 |
| 198 | #define IBUS_KP_1 0xffb1 |
| 199 | #define IBUS_KP_2 0xffb2 |
| 200 | #define IBUS_KP_3 0xffb3 |
| 201 | #define IBUS_KP_4 0xffb4 |
| 202 | #define IBUS_KP_5 0xffb5 |
| 203 | #define IBUS_KP_6 0xffb6 |
| 204 | #define IBUS_KP_7 0xffb7 |
| 205 | #define IBUS_KP_8 0xffb8 |
| 206 | #define IBUS_KP_9 0xffb9 |
| 207 | #define IBUS_F1 0xffbe |
| 208 | #define IBUS_F2 0xffbf |
| 209 | #define IBUS_F3 0xffc0 |
| 210 | #define IBUS_F4 0xffc1 |
| 211 | #define IBUS_F5 0xffc2 |
| 212 | #define IBUS_F6 0xffc3 |
| 213 | #define IBUS_F7 0xffc4 |
| 214 | #define IBUS_F8 0xffc5 |
| 215 | #define IBUS_F9 0xffc6 |
| 216 | #define IBUS_F10 0xffc7 |
| 217 | #define IBUS_F11 0xffc8 |
| 218 | #define IBUS_L1 0xffc8 |
| 219 | #define IBUS_F12 0xffc9 |
| 220 | #define IBUS_L2 0xffc9 |
| 221 | #define IBUS_F13 0xffca |
| 222 | #define IBUS_L3 0xffca |
| 223 | #define IBUS_F14 0xffcb |
| 224 | #define IBUS_L4 0xffcb |
| 225 | #define IBUS_F15 0xffcc |
| 226 | #define IBUS_L5 0xffcc |
| 227 | #define IBUS_F16 0xffcd |
| 228 | #define IBUS_L6 0xffcd |
| 229 | #define IBUS_F17 0xffce |
| 230 | #define IBUS_L7 0xffce |
| 231 | #define IBUS_F18 0xffcf |
| 232 | #define IBUS_L8 0xffcf |
| 233 | #define IBUS_F19 0xffd0 |
| 234 | #define IBUS_L9 0xffd0 |
| 235 | #define IBUS_F20 0xffd1 |
| 236 | #define IBUS_L10 0xffd1 |
| 237 | #define IBUS_F21 0xffd2 |
| 238 | #define IBUS_R1 0xffd2 |
| 239 | #define IBUS_F22 0xffd3 |
| 240 | #define IBUS_R2 0xffd3 |
| 241 | #define IBUS_F23 0xffd4 |
| 242 | #define IBUS_R3 0xffd4 |
| 243 | #define IBUS_F24 0xffd5 |
| 244 | #define IBUS_R4 0xffd5 |
| 245 | #define IBUS_F25 0xffd6 |
| 246 | #define IBUS_R5 0xffd6 |
| 247 | #define IBUS_F26 0xffd7 |
| 248 | #define IBUS_R6 0xffd7 |
| 249 | #define IBUS_F27 0xffd8 |
| 250 | #define IBUS_R7 0xffd8 |
| 251 | #define IBUS_F28 0xffd9 |
| 252 | #define IBUS_R8 0xffd9 |
| 253 | #define IBUS_F29 0xffda |
| 254 | #define IBUS_R9 0xffda |
| 255 | #define IBUS_F30 0xffdb |
| 256 | #define IBUS_R10 0xffdb |
| 257 | #define IBUS_F31 0xffdc |
| 258 | #define IBUS_R11 0xffdc |
| 259 | #define IBUS_F32 0xffdd |
| 260 | #define IBUS_R12 0xffdd |
| 261 | #define IBUS_F33 0xffde |
| 262 | #define IBUS_R13 0xffde |
| 263 | #define IBUS_F34 0xffdf |
| 264 | #define IBUS_R14 0xffdf |
| 265 | #define IBUS_F35 0xffe0 |
| 266 | #define IBUS_R15 0xffe0 |
| 267 | #define IBUS_Shift_L 0xffe1 |
| 268 | #define IBUS_Shift_R 0xffe2 |
| 269 | #define IBUS_Control_L 0xffe3 |
| 270 | #define IBUS_Control_R 0xffe4 |
| 271 | #define IBUS_Caps_Lock 0xffe5 |
| 272 | #define IBUS_Shift_Lock 0xffe6 |
| 273 | #define IBUS_Meta_L 0xffe7 |
| 274 | #define IBUS_Meta_R 0xffe8 |
| 275 | #define IBUS_Alt_L 0xffe9 |
| 276 | #define IBUS_Alt_R 0xffea |
| 277 | #define IBUS_Super_L 0xffeb |
| 278 | #define IBUS_Super_R 0xffec |
| 279 | #define IBUS_Hyper_L 0xffed |
| 280 | #define IBUS_Hyper_R 0xffee |
| 281 | #define IBUS_ISO_Lock 0xfe01 |
| 282 | #define IBUS_ISO_Level2_Latch 0xfe02 |
| 283 | #define IBUS_ISO_Level3_Shift 0xfe03 |
| 284 | #define IBUS_ISO_Level3_Latch 0xfe04 |
| 285 | #define IBUS_ISO_Level3_Lock 0xfe05 |
| 286 | #define IBUS_ISO_Level5_Shift 0xfe11 |
| 287 | #define IBUS_ISO_Level5_Latch 0xfe12 |
| 288 | #define IBUS_ISO_Level5_Lock 0xfe13 |
| 289 | #define IBUS_ISO_Group_Shift 0xff7e |
| 290 | #define IBUS_ISO_Group_Latch 0xfe06 |
| 291 | #define IBUS_ISO_Group_Lock 0xfe07 |
| 292 | #define IBUS_ISO_Next_Group 0xfe08 |
| 293 | #define IBUS_ISO_Next_Group_Lock 0xfe09 |
| 294 | #define IBUS_ISO_Prev_Group 0xfe0a |
| 295 | #define IBUS_ISO_Prev_Group_Lock 0xfe0b |
| 296 | #define IBUS_ISO_First_Group 0xfe0c |
| 297 | #define IBUS_ISO_First_Group_Lock 0xfe0d |
| 298 | #define IBUS_ISO_Last_Group 0xfe0e |
| 299 | #define IBUS_ISO_Last_Group_Lock 0xfe0f |
| 300 | #define IBUS_ISO_Left_Tab 0xfe20 |
| 301 | #define IBUS_ISO_Move_Line_Up 0xfe21 |
| 302 | #define IBUS_ISO_Move_Line_Down 0xfe22 |
| 303 | #define IBUS_ISO_Partial_Line_Up 0xfe23 |
| 304 | #define IBUS_ISO_Partial_Line_Down 0xfe24 |
| 305 | #define IBUS_ISO_Partial_Space_Left 0xfe25 |
| 306 | #define IBUS_ISO_Partial_Space_Right 0xfe26 |
| 307 | #define IBUS_ISO_Set_Margin_Left 0xfe27 |
| 308 | #define IBUS_ISO_Set_Margin_Right 0xfe28 |
| 309 | #define IBUS_ISO_Release_Margin_Left 0xfe29 |
| 310 | #define IBUS_ISO_Release_Margin_Right 0xfe2a |
| 311 | #define IBUS_ISO_Release_Both_Margins 0xfe2b |
| 312 | #define IBUS_ISO_Fast_Cursor_Left 0xfe2c |
| 313 | #define IBUS_ISO_Fast_Cursor_Right 0xfe2d |
| 314 | #define IBUS_ISO_Fast_Cursor_Up 0xfe2e |
| 315 | #define IBUS_ISO_Fast_Cursor_Down 0xfe2f |
| 316 | #define IBUS_ISO_Continuous_Underline 0xfe30 |
| 317 | #define IBUS_ISO_Discontinuous_Underline 0xfe31 |
| 318 | #define IBUS_ISO_Emphasize 0xfe32 |
| 319 | #define IBUS_ISO_Center_Object 0xfe33 |
| 320 | #define IBUS_ISO_Enter 0xfe34 |
| 321 | #define IBUS_dead_grave 0xfe50 |
| 322 | #define IBUS_dead_acute 0xfe51 |
| 323 | #define IBUS_dead_circumflex 0xfe52 |
| 324 | #define IBUS_dead_tilde 0xfe53 |
| 325 | #define IBUS_dead_perispomeni 0xfe53 |
| 326 | #define IBUS_dead_macron 0xfe54 |
| 327 | #define IBUS_dead_breve 0xfe55 |
| 328 | #define IBUS_dead_abovedot 0xfe56 |
| 329 | #define IBUS_dead_diaeresis 0xfe57 |
| 330 | #define IBUS_dead_abovering 0xfe58 |
| 331 | #define IBUS_dead_doubleacute 0xfe59 |
| 332 | #define IBUS_dead_caron 0xfe5a |
| 333 | #define IBUS_dead_cedilla 0xfe5b |
| 334 | #define IBUS_dead_ogonek 0xfe5c |
| 335 | #define IBUS_dead_iota 0xfe5d |
| 336 | #define IBUS_dead_voiced_sound 0xfe5e |
| 337 | #define IBUS_dead_semivoiced_sound 0xfe5f |
| 338 | #define IBUS_dead_belowdot 0xfe60 |
| 339 | #define IBUS_dead_hook 0xfe61 |
| 340 | #define IBUS_dead_horn 0xfe62 |
| 341 | #define IBUS_dead_stroke 0xfe63 |
| 342 | #define IBUS_dead_abovecomma 0xfe64 |
| 343 | #define IBUS_dead_psili 0xfe64 |
| 344 | #define IBUS_dead_abovereversedcomma 0xfe65 |
| 345 | #define IBUS_dead_dasia 0xfe65 |
| 346 | #define IBUS_dead_belowring 0xfe67 |
| 347 | #define IBUS_dead_belowmacron 0xfe68 |
| 348 | #define IBUS_dead_belowcircumflex 0xfe69 |
| 349 | #define IBUS_dead_belowtilde 0xfe6a |
| 350 | #define IBUS_dead_belowbreve 0xfe6b |
| 351 | #define IBUS_dead_belowdiaeresis 0xfe6c |
| 352 | #define IBUS_First_Virtual_Screen 0xfed0 |
| 353 | #define IBUS_Prev_Virtual_Screen 0xfed1 |
| 354 | #define IBUS_Next_Virtual_Screen 0xfed2 |
| 355 | #define IBUS_Last_Virtual_Screen 0xfed4 |
| 356 | #define IBUS_Terminate_Server 0xfed5 |
| 357 | #define IBUS_AccessX_Enable 0xfe70 |
| 358 | #define IBUS_AccessX_Feedback_Enable 0xfe71 |
| 359 | #define IBUS_RepeatKeys_Enable 0xfe72 |
| 360 | #define IBUS_SlowKeys_Enable 0xfe73 |
| 361 | #define IBUS_BounceKeys_Enable 0xfe74 |
| 362 | #define IBUS_StickyKeys_Enable 0xfe75 |
| 363 | #define IBUS_MouseKeys_Enable 0xfe76 |
| 364 | #define IBUS_MouseKeys_Accel_Enable 0xfe77 |
| 365 | #define IBUS_Overlay1_Enable 0xfe78 |
| 366 | #define IBUS_Overlay2_Enable 0xfe79 |
| 367 | #define IBUS_AudibleBell_Enable 0xfe7a |
| 368 | #define IBUS_Pointer_Left 0xfee0 |
| 369 | #define IBUS_Pointer_Right 0xfee1 |
| 370 | #define IBUS_Pointer_Up 0xfee2 |
| 371 | #define IBUS_Pointer_Down 0xfee3 |
| 372 | #define IBUS_Pointer_UpLeft 0xfee4 |
| 373 | #define IBUS_Pointer_UpRight 0xfee5 |
| 374 | #define IBUS_Pointer_DownLeft 0xfee6 |
| 375 | #define IBUS_Pointer_DownRight 0xfee7 |
| 376 | #define IBUS_Pointer_Button_Dflt 0xfee8 |
| 377 | #define IBUS_Pointer_Button1 0xfee9 |
| 378 | #define IBUS_Pointer_Button2 0xfeea |
| 379 | #define IBUS_Pointer_Button3 0xfeeb |
| 380 | #define IBUS_Pointer_Button4 0xfeec |
| 381 | #define IBUS_Pointer_Button5 0xfeed |
| 382 | #define IBUS_Pointer_DblClick_Dflt 0xfeee |
| 383 | #define IBUS_Pointer_DblClick1 0xfeef |
| 384 | #define IBUS_Pointer_DblClick2 0xfef0 |
| 385 | #define IBUS_Pointer_DblClick3 0xfef1 |
| 386 | #define IBUS_Pointer_DblClick4 0xfef2 |
| 387 | #define IBUS_Pointer_DblClick5 0xfef3 |
| 388 | #define IBUS_Pointer_Drag_Dflt 0xfef4 |
| 389 | #define IBUS_Pointer_Drag1 0xfef5 |
| 390 | #define IBUS_Pointer_Drag2 0xfef6 |
| 391 | #define IBUS_Pointer_Drag3 0xfef7 |
| 392 | #define IBUS_Pointer_Drag4 0xfef8 |
| 393 | #define IBUS_Pointer_Drag5 0xfefd |
| 394 | #define IBUS_Pointer_EnableKeys 0xfef9 |
| 395 | #define IBUS_Pointer_Accelerate 0xfefa |
| 396 | #define IBUS_Pointer_DfltBtnNext 0xfefb |
| 397 | #define IBUS_Pointer_DfltBtnPrev 0xfefc |
| 398 | #define IBUS_3270_Duplicate 0xfd01 |
| 399 | #define IBUS_3270_FieldMark 0xfd02 |
| 400 | #define IBUS_3270_Right2 0xfd03 |
| 401 | #define IBUS_3270_Left2 0xfd04 |
| 402 | #define IBUS_3270_BackTab 0xfd05 |
| 403 | #define IBUS_3270_EraseEOF 0xfd06 |
| 404 | #define IBUS_3270_EraseInput 0xfd07 |
| 405 | #define IBUS_3270_Reset 0xfd08 |
| 406 | #define IBUS_3270_Quit 0xfd09 |
| 407 | #define IBUS_3270_PA1 0xfd0a |
| 408 | #define IBUS_3270_PA2 0xfd0b |
| 409 | #define IBUS_3270_PA3 0xfd0c |
| 410 | #define IBUS_3270_Test 0xfd0d |
| 411 | #define IBUS_3270_Attn 0xfd0e |
| 412 | #define IBUS_3270_CursorBlink 0xfd0f |
| 413 | #define IBUS_3270_AltCursor 0xfd10 |
| 414 | #define IBUS_3270_KeyClick 0xfd11 |
| 415 | #define IBUS_3270_Jump 0xfd12 |
| 416 | #define IBUS_3270_Ident 0xfd13 |
| 417 | #define IBUS_3270_Rule 0xfd14 |
| 418 | #define IBUS_3270_Copy 0xfd15 |
| 419 | #define IBUS_3270_Play 0xfd16 |
| 420 | #define IBUS_3270_Setup 0xfd17 |
| 421 | #define IBUS_3270_Record 0xfd18 |
| 422 | #define IBUS_3270_ChangeScreen 0xfd19 |
| 423 | #define IBUS_3270_DeleteWord 0xfd1a |
| 424 | #define IBUS_3270_ExSelect 0xfd1b |
| 425 | #define IBUS_3270_CursorSelect 0xfd1c |
| 426 | #define IBUS_3270_PrintScreen 0xfd1d |
| 427 | #define IBUS_3270_Enter 0xfd1e |
| 428 | #define IBUS_space 0x020 |
| 429 | #define IBUS_exclam 0x021 |
| 430 | #define IBUS_quotedbl 0x022 |
| 431 | #define IBUS_numbersign 0x023 |
| 432 | #define IBUS_dollar 0x024 |
| 433 | #define IBUS_percent 0x025 |
| 434 | #define IBUS_ampersand 0x026 |
| 435 | #define IBUS_apostrophe 0x027 |
| 436 | #define IBUS_quoteright 0x027 |
| 437 | #define IBUS_parenleft 0x028 |
| 438 | #define IBUS_parenright 0x029 |
| 439 | #define IBUS_asterisk 0x02a |
| 440 | #define IBUS_plus 0x02b |
| 441 | #define IBUS_comma 0x02c |
| 442 | #define IBUS_minus 0x02d |
| 443 | #define IBUS_period 0x02e |
| 444 | #define IBUS_slash 0x02f |
| 445 | #define IBUS_0 0x030 |
| 446 | #define IBUS_1 0x031 |
| 447 | #define IBUS_2 0x032 |
| 448 | #define IBUS_3 0x033 |
| 449 | #define IBUS_4 0x034 |
| 450 | #define IBUS_5 0x035 |
| 451 | #define IBUS_6 0x036 |
| 452 | #define IBUS_7 0x037 |
| 453 | #define IBUS_8 0x038 |
| 454 | #define IBUS_9 0x039 |
| 455 | #define IBUS_colon 0x03a |
| 456 | #define IBUS_semicolon 0x03b |
| 457 | #define IBUS_less 0x03c |
| 458 | #define IBUS_equal 0x03d |
| 459 | #define IBUS_greater 0x03e |
| 460 | #define IBUS_question 0x03f |
| 461 | #define IBUS_at 0x040 |
| 462 | #define IBUS_A 0x041 |
| 463 | #define IBUS_B 0x042 |
| 464 | #define IBUS_C 0x043 |
| 465 | #define IBUS_D 0x044 |
| 466 | #define IBUS_E 0x045 |
| 467 | #define IBUS_F 0x046 |
| 468 | #define IBUS_G 0x047 |
| 469 | #define IBUS_H 0x048 |
| 470 | #define IBUS_I 0x049 |
| 471 | #define IBUS_J 0x04a |
| 472 | #define IBUS_K 0x04b |
| 473 | #define IBUS_L 0x04c |
| 474 | #define IBUS_M 0x04d |
| 475 | #define IBUS_N 0x04e |
| 476 | #define IBUS_O 0x04f |
| 477 | #define IBUS_P 0x050 |
| 478 | #define IBUS_Q 0x051 |
| 479 | #define IBUS_R 0x052 |
| 480 | #define IBUS_S 0x053 |
| 481 | #define IBUS_T 0x054 |
| 482 | #define IBUS_U 0x055 |
| 483 | #define IBUS_V 0x056 |
| 484 | #define IBUS_W 0x057 |
| 485 | #define IBUS_X 0x058 |
| 486 | #define IBUS_Y 0x059 |
| 487 | #define IBUS_Z 0x05a |
| 488 | #define IBUS_bracketleft 0x05b |
| 489 | #define IBUS_backslash 0x05c |
| 490 | #define IBUS_bracketright 0x05d |
| 491 | #define IBUS_asciicircum 0x05e |
| 492 | #define IBUS_underscore 0x05f |
| 493 | #define IBUS_grave 0x060 |
| 494 | #define IBUS_quoteleft 0x060 |
| 495 | #define IBUS_a 0x061 |
| 496 | #define IBUS_b 0x062 |
| 497 | #define IBUS_c 0x063 |
| 498 | #define IBUS_d 0x064 |
| 499 | #define IBUS_e 0x065 |
| 500 | #define IBUS_f 0x066 |
| 501 | #define IBUS_g 0x067 |
| 502 | #define IBUS_h 0x068 |
| 503 | #define IBUS_i 0x069 |
| 504 | #define IBUS_j 0x06a |
| 505 | #define IBUS_k 0x06b |
| 506 | #define IBUS_l 0x06c |
| 507 | #define IBUS_m 0x06d |
| 508 | #define IBUS_n 0x06e |
| 509 | #define IBUS_o 0x06f |
| 510 | #define IBUS_p 0x070 |
| 511 | #define IBUS_q 0x071 |
| 512 | #define IBUS_r 0x072 |
| 513 | #define IBUS_s 0x073 |
| 514 | #define IBUS_t 0x074 |
| 515 | #define IBUS_u 0x075 |
| 516 | #define IBUS_v 0x076 |
| 517 | #define IBUS_w 0x077 |
| 518 | #define IBUS_x 0x078 |
| 519 | #define IBUS_y 0x079 |
| 520 | #define IBUS_z 0x07a |
| 521 | #define IBUS_braceleft 0x07b |
| 522 | #define IBUS_bar 0x07c |
| 523 | #define IBUS_braceright 0x07d |
| 524 | #define IBUS_asciitilde 0x07e |
| 525 | #define IBUS_nobreakspace 0x0a0 |
| 526 | #define IBUS_exclamdown 0x0a1 |
| 527 | #define IBUS_cent 0x0a2 |
| 528 | #define IBUS_sterling 0x0a3 |
| 529 | #define IBUS_currency 0x0a4 |
| 530 | #define IBUS_yen 0x0a5 |
| 531 | #define IBUS_brokenbar 0x0a6 |
| 532 | #define IBUS_section 0x0a7 |
| 533 | #define IBUS_diaeresis 0x0a8 |
| 534 | #define IBUS_copyright 0x0a9 |
| 535 | #define IBUS_ordfeminine 0x0aa |
| 536 | #define IBUS_guillemotleft 0x0ab |
| 537 | #define IBUS_notsign 0x0ac |
| 538 | #define IBUS_hyphen 0x0ad |
| 539 | #define IBUS_registered 0x0ae |
| 540 | #define IBUS_macron 0x0af |
| 541 | #define IBUS_degree 0x0b0 |
| 542 | #define IBUS_plusminus 0x0b1 |
| 543 | #define IBUS_twosuperior 0x0b2 |
| 544 | #define IBUS_threesuperior 0x0b3 |
| 545 | #define IBUS_acute 0x0b4 |
| 546 | #define IBUS_mu 0x0b5 |
| 547 | #define IBUS_paragraph 0x0b6 |
| 548 | #define IBUS_periodcentered 0x0b7 |
| 549 | #define IBUS_cedilla 0x0b8 |
| 550 | #define IBUS_onesuperior 0x0b9 |
| 551 | #define IBUS_masculine 0x0ba |
| 552 | #define IBUS_guillemotright 0x0bb |
| 553 | #define IBUS_onequarter 0x0bc |
| 554 | #define IBUS_onehalf 0x0bd |
| 555 | #define IBUS_threequarters 0x0be |
| 556 | #define IBUS_questiondown 0x0bf |
| 557 | #define IBUS_Agrave 0x0c0 |
| 558 | #define IBUS_Aacute 0x0c1 |
| 559 | #define IBUS_Acircumflex 0x0c2 |
| 560 | #define IBUS_Atilde 0x0c3 |
| 561 | #define IBUS_Adiaeresis 0x0c4 |
| 562 | #define IBUS_Aring 0x0c5 |
| 563 | #define IBUS_AE 0x0c6 |
| 564 | #define IBUS_Ccedilla 0x0c7 |
| 565 | #define IBUS_Egrave 0x0c8 |
| 566 | #define IBUS_Eacute 0x0c9 |
| 567 | #define IBUS_Ecircumflex 0x0ca |
| 568 | #define IBUS_Ediaeresis 0x0cb |
| 569 | #define IBUS_Igrave 0x0cc |
| 570 | #define IBUS_Iacute 0x0cd |
| 571 | #define IBUS_Icircumflex 0x0ce |
| 572 | #define IBUS_Idiaeresis 0x0cf |
| 573 | #define IBUS_ETH 0x0d0 |
| 574 | #define IBUS_Eth 0x0d0 |
| 575 | #define IBUS_Ntilde 0x0d1 |
| 576 | #define IBUS_Ograve 0x0d2 |
| 577 | #define IBUS_Oacute 0x0d3 |
| 578 | #define IBUS_Ocircumflex 0x0d4 |
| 579 | #define IBUS_Otilde 0x0d5 |
| 580 | #define IBUS_Odiaeresis 0x0d6 |
| 581 | #define IBUS_multiply 0x0d7 |
| 582 | #define IBUS_Oslash 0x0d8 |
| 583 | #define IBUS_Ooblique 0x0d8 |
| 584 | #define IBUS_Ugrave 0x0d9 |
| 585 | #define IBUS_Uacute 0x0da |
| 586 | #define IBUS_Ucircumflex 0x0db |
| 587 | #define IBUS_Udiaeresis 0x0dc |
| 588 | #define IBUS_Yacute 0x0dd |
| 589 | #define IBUS_THORN 0x0de |
| 590 | #define IBUS_Thorn 0x0de |
| 591 | #define IBUS_ssharp 0x0df |
| 592 | #define IBUS_agrave 0x0e0 |
| 593 | #define IBUS_aacute 0x0e1 |
| 594 | #define IBUS_acircumflex 0x0e2 |
| 595 | #define IBUS_atilde 0x0e3 |
| 596 | #define IBUS_adiaeresis 0x0e4 |
| 597 | #define IBUS_aring 0x0e5 |
| 598 | #define IBUS_ae 0x0e6 |
| 599 | #define IBUS_ccedilla 0x0e7 |
| 600 | #define IBUS_egrave 0x0e8 |
| 601 | #define IBUS_eacute 0x0e9 |
| 602 | #define IBUS_ecircumflex 0x0ea |
| 603 | #define IBUS_ediaeresis 0x0eb |
| 604 | #define IBUS_igrave 0x0ec |
| 605 | #define IBUS_iacute 0x0ed |
| 606 | #define IBUS_icircumflex 0x0ee |
| 607 | #define IBUS_idiaeresis 0x0ef |
| 608 | #define IBUS_eth 0x0f0 |
| 609 | #define IBUS_ntilde 0x0f1 |
| 610 | #define IBUS_ograve 0x0f2 |
| 611 | #define IBUS_oacute 0x0f3 |
| 612 | #define IBUS_ocircumflex 0x0f4 |
| 613 | #define IBUS_otilde 0x0f5 |
| 614 | #define IBUS_odiaeresis 0x0f6 |
| 615 | #define IBUS_division 0x0f7 |
| 616 | #define IBUS_oslash 0x0f8 |
| 617 | #define IBUS_ooblique 0x0f8 |
| 618 | #define IBUS_ugrave 0x0f9 |
| 619 | #define IBUS_uacute 0x0fa |
| 620 | #define IBUS_ucircumflex 0x0fb |
| 621 | #define IBUS_udiaeresis 0x0fc |
| 622 | #define IBUS_yacute 0x0fd |
| 623 | #define IBUS_thorn 0x0fe |
| 624 | #define IBUS_ydiaeresis 0x0ff |
| 625 | #define IBUS_Aogonek 0x1a1 |
| 626 | #define IBUS_breve 0x1a2 |
| 627 | #define IBUS_Lstroke 0x1a3 |
| 628 | #define IBUS_Lcaron 0x1a5 |
| 629 | #define IBUS_Sacute 0x1a6 |
| 630 | #define IBUS_Scaron 0x1a9 |
| 631 | #define IBUS_Scedilla 0x1aa |
| 632 | #define IBUS_Tcaron 0x1ab |
| 633 | #define IBUS_Zacute 0x1ac |
| 634 | #define IBUS_Zcaron 0x1ae |
| 635 | #define IBUS_Zabovedot 0x1af |
| 636 | #define IBUS_aogonek 0x1b1 |
| 637 | #define IBUS_ogonek 0x1b2 |
| 638 | #define IBUS_lstroke 0x1b3 |
| 639 | #define IBUS_lcaron 0x1b5 |
| 640 | #define IBUS_sacute 0x1b6 |
| 641 | #define IBUS_caron 0x1b7 |
| 642 | #define IBUS_scaron 0x1b9 |
| 643 | #define IBUS_scedilla 0x1ba |
| 644 | #define IBUS_tcaron 0x1bb |
| 645 | #define IBUS_zacute 0x1bc |
| 646 | #define IBUS_doubleacute 0x1bd |
| 647 | #define IBUS_zcaron 0x1be |
| 648 | #define IBUS_zabovedot 0x1bf |
| 649 | #define IBUS_Racute 0x1c0 |
| 650 | #define IBUS_Abreve 0x1c3 |
| 651 | #define IBUS_Lacute 0x1c5 |
| 652 | #define IBUS_Cacute 0x1c6 |
| 653 | #define IBUS_Ccaron 0x1c8 |
| 654 | #define IBUS_Eogonek 0x1ca |
| 655 | #define IBUS_Ecaron 0x1cc |
| 656 | #define IBUS_Dcaron 0x1cf |
| 657 | #define IBUS_Dstroke 0x1d0 |
| 658 | #define IBUS_Nacute 0x1d1 |
| 659 | #define IBUS_Ncaron 0x1d2 |
| 660 | #define IBUS_Odoubleacute 0x1d5 |
| 661 | #define IBUS_Rcaron 0x1d8 |
| 662 | #define IBUS_Uring 0x1d9 |
| 663 | #define IBUS_Udoubleacute 0x1db |
| 664 | #define IBUS_Tcedilla 0x1de |
| 665 | #define IBUS_racute 0x1e0 |
| 666 | #define IBUS_abreve 0x1e3 |
| 667 | #define IBUS_lacute 0x1e5 |
| 668 | #define IBUS_cacute 0x1e6 |
| 669 | #define IBUS_ccaron 0x1e8 |
| 670 | #define IBUS_eogonek 0x1ea |
| 671 | #define IBUS_ecaron 0x1ec |
| 672 | #define IBUS_dcaron 0x1ef |
| 673 | #define IBUS_dstroke 0x1f0 |
| 674 | #define IBUS_nacute 0x1f1 |
| 675 | #define IBUS_ncaron 0x1f2 |
| 676 | #define IBUS_odoubleacute 0x1f5 |
| 677 | #define IBUS_udoubleacute 0x1fb |
| 678 | #define IBUS_rcaron 0x1f8 |
| 679 | #define IBUS_uring 0x1f9 |
| 680 | #define IBUS_tcedilla 0x1fe |
| 681 | #define IBUS_abovedot 0x1ff |
| 682 | #define IBUS_Hstroke 0x2a1 |
| 683 | #define IBUS_Hcircumflex 0x2a6 |
| 684 | #define IBUS_Iabovedot 0x2a9 |
| 685 | #define IBUS_Gbreve 0x2ab |
| 686 | #define IBUS_Jcircumflex 0x2ac |
| 687 | #define IBUS_hstroke 0x2b1 |
| 688 | #define IBUS_hcircumflex 0x2b6 |
| 689 | #define IBUS_idotless 0x2b9 |
| 690 | #define IBUS_gbreve 0x2bb |
| 691 | #define IBUS_jcircumflex 0x2bc |
| 692 | #define IBUS_Cabovedot 0x2c5 |
| 693 | #define IBUS_Ccircumflex 0x2c6 |
| 694 | #define IBUS_Gabovedot 0x2d5 |
| 695 | #define IBUS_Gcircumflex 0x2d8 |
| 696 | #define IBUS_Ubreve 0x2dd |
| 697 | #define IBUS_Scircumflex 0x2de |
| 698 | #define IBUS_cabovedot 0x2e5 |
| 699 | #define IBUS_ccircumflex 0x2e6 |
| 700 | #define IBUS_gabovedot 0x2f5 |
| 701 | #define IBUS_gcircumflex 0x2f8 |
| 702 | #define IBUS_ubreve 0x2fd |
| 703 | #define IBUS_scircumflex 0x2fe |
| 704 | #define IBUS_kra 0x3a2 |
| 705 | #define IBUS_kappa 0x3a2 |
| 706 | #define IBUS_Rcedilla 0x3a3 |
| 707 | #define IBUS_Itilde 0x3a5 |
| 708 | #define IBUS_Lcedilla 0x3a6 |
| 709 | #define IBUS_Emacron 0x3aa |
| 710 | #define IBUS_Gcedilla 0x3ab |
| 711 | #define IBUS_Tslash 0x3ac |
| 712 | #define IBUS_rcedilla 0x3b3 |
| 713 | #define IBUS_itilde 0x3b5 |
| 714 | #define IBUS_lcedilla 0x3b6 |
| 715 | #define IBUS_emacron 0x3ba |
| 716 | #define IBUS_gcedilla 0x3bb |
| 717 | #define IBUS_tslash 0x3bc |
| 718 | #define IBUS_ENG 0x3bd |
| 719 | #define IBUS_eng 0x3bf |
| 720 | #define IBUS_Amacron 0x3c0 |
| 721 | #define IBUS_Iogonek 0x3c7 |
| 722 | #define IBUS_Eabovedot 0x3cc |
| 723 | #define IBUS_Imacron 0x3cf |
| 724 | #define IBUS_Ncedilla 0x3d1 |
| 725 | #define IBUS_Omacron 0x3d2 |
| 726 | #define IBUS_Kcedilla 0x3d3 |
| 727 | #define IBUS_Uogonek 0x3d9 |
| 728 | #define IBUS_Utilde 0x3dd |
| 729 | #define IBUS_Umacron 0x3de |
| 730 | #define IBUS_amacron 0x3e0 |
| 731 | #define IBUS_iogonek 0x3e7 |
| 732 | #define IBUS_eabovedot 0x3ec |
| 733 | #define IBUS_imacron 0x3ef |
| 734 | #define IBUS_ncedilla 0x3f1 |
| 735 | #define IBUS_omacron 0x3f2 |
| 736 | #define IBUS_kcedilla 0x3f3 |
| 737 | #define IBUS_uogonek 0x3f9 |
| 738 | #define IBUS_utilde 0x3fd |
| 739 | #define IBUS_umacron 0x3fe |
| 740 | #define IBUS_Babovedot 0x1001e02 |
| 741 | #define IBUS_babovedot 0x1001e03 |
| 742 | #define IBUS_Dabovedot 0x1001e0a |
| 743 | #define IBUS_Wgrave 0x1001e80 |
| 744 | #define IBUS_Wacute 0x1001e82 |
| 745 | #define IBUS_dabovedot 0x1001e0b |
| 746 | #define IBUS_Ygrave 0x1001ef2 |
| 747 | #define IBUS_Fabovedot 0x1001e1e |
| 748 | #define IBUS_fabovedot 0x1001e1f |
| 749 | #define IBUS_Mabovedot 0x1001e40 |
| 750 | #define IBUS_mabovedot 0x1001e41 |
| 751 | #define IBUS_Pabovedot 0x1001e56 |
| 752 | #define IBUS_wgrave 0x1001e81 |
| 753 | #define IBUS_pabovedot 0x1001e57 |
| 754 | #define IBUS_wacute 0x1001e83 |
| 755 | #define IBUS_Sabovedot 0x1001e60 |
| 756 | #define IBUS_ygrave 0x1001ef3 |
| 757 | #define IBUS_Wdiaeresis 0x1001e84 |
| 758 | #define IBUS_wdiaeresis 0x1001e85 |
| 759 | #define IBUS_sabovedot 0x1001e61 |
| 760 | #define IBUS_Wcircumflex 0x1000174 |
| 761 | #define IBUS_Tabovedot 0x1001e6a |
| 762 | #define IBUS_Ycircumflex 0x1000176 |
| 763 | #define IBUS_wcircumflex 0x1000175 |
| 764 | #define IBUS_tabovedot 0x1001e6b |
| 765 | #define IBUS_ycircumflex 0x1000177 |
| 766 | #define IBUS_OE 0x13bc |
| 767 | #define IBUS_oe 0x13bd |
| 768 | #define IBUS_Ydiaeresis 0x13be |
| 769 | #define IBUS_overline 0x47e |
| 770 | #define IBUS_kana_fullstop 0x4a1 |
| 771 | #define IBUS_kana_openingbracket 0x4a2 |
| 772 | #define IBUS_kana_closingbracket 0x4a3 |
| 773 | #define IBUS_kana_comma 0x4a4 |
| 774 | #define IBUS_kana_conjunctive 0x4a5 |
| 775 | #define IBUS_kana_middledot 0x4a5 |
| 776 | #define IBUS_kana_WO 0x4a6 |
| 777 | #define IBUS_kana_a 0x4a7 |
| 778 | #define IBUS_kana_i 0x4a8 |
| 779 | #define IBUS_kana_u 0x4a9 |
| 780 | #define IBUS_kana_e 0x4aa |
| 781 | #define IBUS_kana_o 0x4ab |
| 782 | #define IBUS_kana_ya 0x4ac |
| 783 | #define IBUS_kana_yu 0x4ad |
| 784 | #define IBUS_kana_yo 0x4ae |
| 785 | #define IBUS_kana_tsu 0x4af |
| 786 | #define IBUS_kana_tu 0x4af |
| 787 | #define IBUS_prolongedsound 0x4b0 |
| 788 | #define IBUS_kana_A 0x4b1 |
| 789 | #define IBUS_kana_I 0x4b2 |
| 790 | #define IBUS_kana_U 0x4b3 |
| 791 | #define IBUS_kana_E 0x4b4 |
| 792 | #define IBUS_kana_O 0x4b5 |
| 793 | #define IBUS_kana_KA 0x4b6 |
| 794 | #define IBUS_kana_KI 0x4b7 |
| 795 | #define IBUS_kana_KU 0x4b8 |
| 796 | #define IBUS_kana_KE 0x4b9 |
| 797 | #define IBUS_kana_KO 0x4ba |
| 798 | #define IBUS_kana_SA 0x4bb |
| 799 | #define IBUS_kana_SHI 0x4bc |
| 800 | #define IBUS_kana_SU 0x4bd |
| 801 | #define IBUS_kana_SE 0x4be |
| 802 | #define IBUS_kana_SO 0x4bf |
| 803 | #define IBUS_kana_TA 0x4c0 |
| 804 | #define IBUS_kana_CHI 0x4c1 |
| 805 | #define IBUS_kana_TI 0x4c1 |
| 806 | #define IBUS_kana_TSU 0x4c2 |
| 807 | #define IBUS_kana_TU 0x4c2 |
| 808 | #define IBUS_kana_TE 0x4c3 |
| 809 | #define IBUS_kana_TO 0x4c4 |
| 810 | #define IBUS_kana_NA 0x4c5 |
| 811 | #define IBUS_kana_NI 0x4c6 |
| 812 | #define IBUS_kana_NU 0x4c7 |
| 813 | #define IBUS_kana_NE 0x4c8 |
| 814 | #define IBUS_kana_NO 0x4c9 |
| 815 | #define IBUS_kana_HA 0x4ca |
| 816 | #define IBUS_kana_HI 0x4cb |
| 817 | #define IBUS_kana_FU 0x4cc |
| 818 | #define IBUS_kana_HU 0x4cc |
| 819 | #define IBUS_kana_HE 0x4cd |
| 820 | #define IBUS_kana_HO 0x4ce |
| 821 | #define IBUS_kana_MA 0x4cf |
| 822 | #define IBUS_kana_MI 0x4d0 |
| 823 | #define IBUS_kana_MU 0x4d1 |
| 824 | #define IBUS_kana_ME 0x4d2 |
| 825 | #define IBUS_kana_MO 0x4d3 |
| 826 | #define IBUS_kana_YA 0x4d4 |
| 827 | #define IBUS_kana_YU 0x4d5 |
| 828 | #define IBUS_kana_YO 0x4d6 |
| 829 | #define IBUS_kana_RA 0x4d7 |
| 830 | #define IBUS_kana_RI 0x4d8 |
| 831 | #define IBUS_kana_RU 0x4d9 |
| 832 | #define IBUS_kana_RE 0x4da |
| 833 | #define IBUS_kana_RO 0x4db |
| 834 | #define IBUS_kana_WA 0x4dc |
| 835 | #define IBUS_kana_N 0x4dd |
| 836 | #define IBUS_voicedsound 0x4de |
| 837 | #define IBUS_semivoicedsound 0x4df |
| 838 | #define IBUS_kana_switch 0xff7e |
| 839 | #define IBUS_Farsi_0 0x10006f0 |
| 840 | #define IBUS_Farsi_1 0x10006f1 |
| 841 | #define IBUS_Farsi_2 0x10006f2 |
| 842 | #define IBUS_Farsi_3 0x10006f3 |
| 843 | #define IBUS_Farsi_4 0x10006f4 |
| 844 | #define IBUS_Farsi_5 0x10006f5 |
| 845 | #define IBUS_Farsi_6 0x10006f6 |
| 846 | #define IBUS_Farsi_7 0x10006f7 |
| 847 | #define IBUS_Farsi_8 0x10006f8 |
| 848 | #define IBUS_Farsi_9 0x10006f9 |
| 849 | #define IBUS_Arabic_percent 0x100066a |
| 850 | #define IBUS_Arabic_superscript_alef 0x1000670 |
| 851 | #define IBUS_Arabic_tteh 0x1000679 |
| 852 | #define IBUS_Arabic_peh 0x100067e |
| 853 | #define IBUS_Arabic_tcheh 0x1000686 |
| 854 | #define IBUS_Arabic_ddal 0x1000688 |
| 855 | #define IBUS_Arabic_rreh 0x1000691 |
| 856 | #define IBUS_Arabic_comma 0x5ac |
| 857 | #define IBUS_Arabic_fullstop 0x10006d4 |
| 858 | #define IBUS_Arabic_0 0x1000660 |
| 859 | #define IBUS_Arabic_1 0x1000661 |
| 860 | #define IBUS_Arabic_2 0x1000662 |
| 861 | #define IBUS_Arabic_3 0x1000663 |
| 862 | #define IBUS_Arabic_4 0x1000664 |
| 863 | #define IBUS_Arabic_5 0x1000665 |
| 864 | #define IBUS_Arabic_6 0x1000666 |
| 865 | #define IBUS_Arabic_7 0x1000667 |
| 866 | #define IBUS_Arabic_8 0x1000668 |
| 867 | #define IBUS_Arabic_9 0x1000669 |
| 868 | #define IBUS_Arabic_semicolon 0x5bb |
| 869 | #define IBUS_Arabic_question_mark 0x5bf |
| 870 | #define IBUS_Arabic_hamza 0x5c1 |
| 871 | #define IBUS_Arabic_maddaonalef 0x5c2 |
| 872 | #define IBUS_Arabic_hamzaonalef 0x5c3 |
| 873 | #define IBUS_Arabic_hamzaonwaw 0x5c4 |
| 874 | #define IBUS_Arabic_hamzaunderalef 0x5c5 |
| 875 | #define IBUS_Arabic_hamzaonyeh 0x5c6 |
| 876 | #define IBUS_Arabic_alef 0x5c7 |
| 877 | #define IBUS_Arabic_beh 0x5c8 |
| 878 | #define IBUS_Arabic_tehmarbuta 0x5c9 |
| 879 | #define IBUS_Arabic_teh 0x5ca |
| 880 | #define IBUS_Arabic_theh 0x5cb |
| 881 | #define IBUS_Arabic_jeem 0x5cc |
| 882 | #define IBUS_Arabic_hah 0x5cd |
| 883 | #define IBUS_Arabic_khah 0x5ce |
| 884 | #define IBUS_Arabic_dal 0x5cf |
| 885 | #define IBUS_Arabic_thal 0x5d0 |
| 886 | #define IBUS_Arabic_ra 0x5d1 |
| 887 | #define IBUS_Arabic_zain 0x5d2 |
| 888 | #define IBUS_Arabic_seen 0x5d3 |
| 889 | #define IBUS_Arabic_sheen 0x5d4 |
| 890 | #define IBUS_Arabic_sad 0x5d5 |
| 891 | #define IBUS_Arabic_dad 0x5d6 |
| 892 | #define IBUS_Arabic_tah 0x5d7 |
| 893 | #define IBUS_Arabic_zah 0x5d8 |
| 894 | #define IBUS_Arabic_ain 0x5d9 |
| 895 | #define IBUS_Arabic_ghain 0x5da |
| 896 | #define IBUS_Arabic_tatweel 0x5e0 |
| 897 | #define IBUS_Arabic_feh 0x5e1 |
| 898 | #define IBUS_Arabic_qaf 0x5e2 |
| 899 | #define IBUS_Arabic_kaf 0x5e3 |
| 900 | #define IBUS_Arabic_lam 0x5e4 |
| 901 | #define IBUS_Arabic_meem 0x5e5 |
| 902 | #define IBUS_Arabic_noon 0x5e6 |
| 903 | #define IBUS_Arabic_ha 0x5e7 |
| 904 | #define IBUS_Arabic_heh 0x5e7 |
| 905 | #define IBUS_Arabic_waw 0x5e8 |
| 906 | #define IBUS_Arabic_alefmaksura 0x5e9 |
| 907 | #define IBUS_Arabic_yeh 0x5ea |
| 908 | #define IBUS_Arabic_fathatan 0x5eb |
| 909 | #define IBUS_Arabic_dammatan 0x5ec |
| 910 | #define IBUS_Arabic_kasratan 0x5ed |
| 911 | #define IBUS_Arabic_fatha 0x5ee |
| 912 | #define IBUS_Arabic_damma 0x5ef |
| 913 | #define IBUS_Arabic_kasra 0x5f0 |
| 914 | #define IBUS_Arabic_shadda 0x5f1 |
| 915 | #define IBUS_Arabic_sukun 0x5f2 |
| 916 | #define IBUS_Arabic_madda_above 0x1000653 |
| 917 | #define IBUS_Arabic_hamza_above 0x1000654 |
| 918 | #define IBUS_Arabic_hamza_below 0x1000655 |
| 919 | #define IBUS_Arabic_jeh 0x1000698 |
| 920 | #define IBUS_Arabic_veh 0x10006a4 |
| 921 | #define IBUS_Arabic_keheh 0x10006a9 |
| 922 | #define IBUS_Arabic_gaf 0x10006af |
| 923 | #define IBUS_Arabic_noon_ghunna 0x10006ba |
| 924 | #define IBUS_Arabic_heh_doachashmee 0x10006be |
| 925 | #define IBUS_Farsi_yeh 0x10006cc |
| 926 | #define IBUS_Arabic_farsi_yeh 0x10006cc |
| 927 | #define IBUS_Arabic_yeh_baree 0x10006d2 |
| 928 | #define IBUS_Arabic_heh_goal 0x10006c1 |
| 929 | #define IBUS_Arabic_switch 0xff7e |
| 930 | #define IBUS_Cyrillic_GHE_bar 0x1000492 |
| 931 | #define IBUS_Cyrillic_ghe_bar 0x1000493 |
| 932 | #define IBUS_Cyrillic_ZHE_descender 0x1000496 |
| 933 | #define IBUS_Cyrillic_zhe_descender 0x1000497 |
| 934 | #define IBUS_Cyrillic_KA_descender 0x100049a |
| 935 | #define IBUS_Cyrillic_ka_descender 0x100049b |
| 936 | #define IBUS_Cyrillic_KA_vertstroke 0x100049c |
| 937 | #define IBUS_Cyrillic_ka_vertstroke 0x100049d |
| 938 | #define IBUS_Cyrillic_EN_descender 0x10004a2 |
| 939 | #define IBUS_Cyrillic_en_descender 0x10004a3 |
| 940 | #define IBUS_Cyrillic_U_straight 0x10004ae |
| 941 | #define IBUS_Cyrillic_u_straight 0x10004af |
| 942 | #define IBUS_Cyrillic_U_straight_bar 0x10004b0 |
| 943 | #define IBUS_Cyrillic_u_straight_bar 0x10004b1 |
| 944 | #define IBUS_Cyrillic_HA_descender 0x10004b2 |
| 945 | #define IBUS_Cyrillic_ha_descender 0x10004b3 |
| 946 | #define IBUS_Cyrillic_CHE_descender 0x10004b6 |
| 947 | #define IBUS_Cyrillic_che_descender 0x10004b7 |
| 948 | #define IBUS_Cyrillic_CHE_vertstroke 0x10004b8 |
| 949 | #define IBUS_Cyrillic_che_vertstroke 0x10004b9 |
| 950 | #define IBUS_Cyrillic_SHHA 0x10004ba |
| 951 | #define IBUS_Cyrillic_shha 0x10004bb |
| 952 | #define IBUS_Cyrillic_SCHWA 0x10004d8 |
| 953 | #define IBUS_Cyrillic_schwa 0x10004d9 |
| 954 | #define IBUS_Cyrillic_I_macron 0x10004e2 |
| 955 | #define IBUS_Cyrillic_i_macron 0x10004e3 |
| 956 | #define IBUS_Cyrillic_O_bar 0x10004e8 |
| 957 | #define IBUS_Cyrillic_o_bar 0x10004e9 |
| 958 | #define IBUS_Cyrillic_U_macron 0x10004ee |
| 959 | #define IBUS_Cyrillic_u_macron 0x10004ef |
| 960 | #define IBUS_Serbian_dje 0x6a1 |
| 961 | #define IBUS_Macedonia_gje 0x6a2 |
| 962 | #define IBUS_Cyrillic_io 0x6a3 |
| 963 | #define IBUS_Ukrainian_ie 0x6a4 |
| 964 | #define IBUS_Ukranian_je 0x6a4 |
| 965 | #define IBUS_Macedonia_dse 0x6a5 |
| 966 | #define IBUS_Ukrainian_i 0x6a6 |
| 967 | #define IBUS_Ukranian_i 0x6a6 |
| 968 | #define IBUS_Ukrainian_yi 0x6a7 |
| 969 | #define IBUS_Ukranian_yi 0x6a7 |
| 970 | #define IBUS_Cyrillic_je 0x6a8 |
| 971 | #define IBUS_Serbian_je 0x6a8 |
| 972 | #define IBUS_Cyrillic_lje 0x6a9 |
| 973 | #define IBUS_Serbian_lje 0x6a9 |
| 974 | #define IBUS_Cyrillic_nje 0x6aa |
| 975 | #define IBUS_Serbian_nje 0x6aa |
| 976 | #define IBUS_Serbian_tshe 0x6ab |
| 977 | #define IBUS_Macedonia_kje 0x6ac |
| 978 | #define IBUS_Ukrainian_ghe_with_upturn 0x6ad |
| 979 | #define IBUS_Byelorussian_shortu 0x6ae |
| 980 | #define IBUS_Cyrillic_dzhe 0x6af |
| 981 | #define IBUS_Serbian_dze 0x6af |
| 982 | #define IBUS_numerosign 0x6b0 |
| 983 | #define IBUS_Serbian_DJE 0x6b1 |
| 984 | #define IBUS_Macedonia_GJE 0x6b2 |
| 985 | #define IBUS_Cyrillic_IO 0x6b3 |
| 986 | #define IBUS_Ukrainian_IE 0x6b4 |
| 987 | #define IBUS_Ukranian_JE 0x6b4 |
| 988 | #define IBUS_Macedonia_DSE 0x6b5 |
| 989 | #define IBUS_Ukrainian_I 0x6b6 |
| 990 | #define IBUS_Ukranian_I 0x6b6 |
| 991 | #define IBUS_Ukrainian_YI 0x6b7 |
| 992 | #define IBUS_Ukranian_YI 0x6b7 |
| 993 | #define IBUS_Cyrillic_JE 0x6b8 |
| 994 | #define IBUS_Serbian_JE 0x6b8 |
| 995 | #define IBUS_Cyrillic_LJE 0x6b9 |
| 996 | #define IBUS_Serbian_LJE 0x6b9 |
| 997 | #define IBUS_Cyrillic_NJE 0x6ba |
| 998 | #define IBUS_Serbian_NJE 0x6ba |
| 999 | #define IBUS_Serbian_TSHE 0x6bb |
| 1000 | #define IBUS_Macedonia_KJE 0x6bc |
| 1001 | #define IBUS_Ukrainian_GHE_WITH_UPTURN 0x6bd |
| 1002 | #define IBUS_Byelorussian_SHORTU 0x6be |
| 1003 | #define IBUS_Cyrillic_DZHE 0x6bf |
| 1004 | #define IBUS_Serbian_DZE 0x6bf |
| 1005 | #define IBUS_Cyrillic_yu 0x6c0 |
| 1006 | #define IBUS_Cyrillic_a 0x6c1 |
| 1007 | #define IBUS_Cyrillic_be 0x6c2 |
| 1008 | #define IBUS_Cyrillic_tse 0x6c3 |
| 1009 | #define IBUS_Cyrillic_de 0x6c4 |
| 1010 | #define IBUS_Cyrillic_ie 0x6c5 |
| 1011 | #define IBUS_Cyrillic_ef 0x6c6 |
| 1012 | #define IBUS_Cyrillic_ghe 0x6c7 |
| 1013 | #define IBUS_Cyrillic_ha 0x6c8 |
| 1014 | #define IBUS_Cyrillic_i 0x6c9 |
| 1015 | #define IBUS_Cyrillic_shorti 0x6ca |
| 1016 | #define IBUS_Cyrillic_ka 0x6cb |
| 1017 | #define IBUS_Cyrillic_el 0x6cc |
| 1018 | #define IBUS_Cyrillic_em 0x6cd |
| 1019 | #define IBUS_Cyrillic_en 0x6ce |
| 1020 | #define IBUS_Cyrillic_o 0x6cf |
| 1021 | #define IBUS_Cyrillic_pe 0x6d0 |
| 1022 | #define IBUS_Cyrillic_ya 0x6d1 |
| 1023 | #define IBUS_Cyrillic_er 0x6d2 |
| 1024 | #define IBUS_Cyrillic_es 0x6d3 |
| 1025 | #define IBUS_Cyrillic_te 0x6d4 |
| 1026 | #define IBUS_Cyrillic_u 0x6d5 |
| 1027 | #define IBUS_Cyrillic_zhe 0x6d6 |
| 1028 | #define IBUS_Cyrillic_ve 0x6d7 |
| 1029 | #define IBUS_Cyrillic_softsign 0x6d8 |
| 1030 | #define IBUS_Cyrillic_yeru 0x6d9 |
| 1031 | #define IBUS_Cyrillic_ze 0x6da |
| 1032 | #define IBUS_Cyrillic_sha 0x6db |
| 1033 | #define IBUS_Cyrillic_e 0x6dc |
| 1034 | #define IBUS_Cyrillic_shcha 0x6dd |
| 1035 | #define IBUS_Cyrillic_che 0x6de |
| 1036 | #define IBUS_Cyrillic_hardsign 0x6df |
| 1037 | #define IBUS_Cyrillic_YU 0x6e0 |
| 1038 | #define IBUS_Cyrillic_A 0x6e1 |
| 1039 | #define IBUS_Cyrillic_BE 0x6e2 |
| 1040 | #define IBUS_Cyrillic_TSE 0x6e3 |
| 1041 | #define IBUS_Cyrillic_DE 0x6e4 |
| 1042 | #define IBUS_Cyrillic_IE 0x6e5 |
| 1043 | #define IBUS_Cyrillic_EF 0x6e6 |
| 1044 | #define IBUS_Cyrillic_GHE 0x6e7 |
| 1045 | #define IBUS_Cyrillic_HA 0x6e8 |
| 1046 | #define IBUS_Cyrillic_I 0x6e9 |
| 1047 | #define IBUS_Cyrillic_SHORTI 0x6ea |
| 1048 | #define IBUS_Cyrillic_KA 0x6eb |
| 1049 | #define IBUS_Cyrillic_EL 0x6ec |
| 1050 | #define IBUS_Cyrillic_EM 0x6ed |
| 1051 | #define IBUS_Cyrillic_EN 0x6ee |
| 1052 | #define IBUS_Cyrillic_O 0x6ef |
| 1053 | #define IBUS_Cyrillic_PE 0x6f0 |
| 1054 | #define IBUS_Cyrillic_YA 0x6f1 |
| 1055 | #define IBUS_Cyrillic_ER 0x6f2 |
| 1056 | #define IBUS_Cyrillic_ES 0x6f3 |
| 1057 | #define IBUS_Cyrillic_TE 0x6f4 |
| 1058 | #define IBUS_Cyrillic_U 0x6f5 |
| 1059 | #define IBUS_Cyrillic_ZHE 0x6f6 |
| 1060 | #define IBUS_Cyrillic_VE 0x6f7 |
| 1061 | #define IBUS_Cyrillic_SOFTSIGN 0x6f8 |
| 1062 | #define IBUS_Cyrillic_YERU 0x6f9 |
| 1063 | #define IBUS_Cyrillic_ZE 0x6fa |
| 1064 | #define IBUS_Cyrillic_SHA 0x6fb |
| 1065 | #define IBUS_Cyrillic_E 0x6fc |
| 1066 | #define IBUS_Cyrillic_SHCHA 0x6fd |
| 1067 | #define IBUS_Cyrillic_CHE 0x6fe |
| 1068 | #define IBUS_Cyrillic_HARDSIGN 0x6ff |
| 1069 | #define IBUS_Greek_ALPHAaccent 0x7a1 |
| 1070 | #define IBUS_Greek_EPSILONaccent 0x7a2 |
| 1071 | #define IBUS_Greek_ETAaccent 0x7a3 |
| 1072 | #define IBUS_Greek_IOTAaccent 0x7a4 |
| 1073 | #define IBUS_Greek_IOTAdieresis 0x7a5 |
| 1074 | #define IBUS_Greek_IOTAdiaeresis 0x7a5 |
| 1075 | #define IBUS_Greek_OMICRONaccent 0x7a7 |
| 1076 | #define IBUS_Greek_UPSILONaccent 0x7a8 |
| 1077 | #define IBUS_Greek_UPSILONdieresis 0x7a9 |
| 1078 | #define IBUS_Greek_OMEGAaccent 0x7ab |
| 1079 | #define IBUS_Greek_accentdieresis 0x7ae |
| 1080 | #define IBUS_Greek_horizbar 0x7af |
| 1081 | #define IBUS_Greek_alphaaccent 0x7b1 |
| 1082 | #define IBUS_Greek_epsilonaccent 0x7b2 |
| 1083 | #define IBUS_Greek_etaaccent 0x7b3 |
| 1084 | #define IBUS_Greek_iotaaccent 0x7b4 |
| 1085 | #define IBUS_Greek_iotadieresis 0x7b5 |
| 1086 | #define IBUS_Greek_iotaaccentdieresis 0x7b6 |
| 1087 | #define IBUS_Greek_omicronaccent 0x7b7 |
| 1088 | #define IBUS_Greek_upsilonaccent 0x7b8 |
| 1089 | #define IBUS_Greek_upsilondieresis 0x7b9 |
| 1090 | #define IBUS_Greek_upsilonaccentdieresis 0x7ba |
| 1091 | #define IBUS_Greek_omegaaccent 0x7bb |
| 1092 | #define IBUS_Greek_ALPHA 0x7c1 |
| 1093 | #define IBUS_Greek_BETA 0x7c2 |
| 1094 | #define IBUS_Greek_GAMMA 0x7c3 |
| 1095 | #define IBUS_Greek_DELTA 0x7c4 |
| 1096 | #define IBUS_Greek_EPSILON 0x7c5 |
| 1097 | #define IBUS_Greek_ZETA 0x7c6 |
| 1098 | #define IBUS_Greek_ETA 0x7c7 |
| 1099 | #define IBUS_Greek_THETA 0x7c8 |
| 1100 | #define IBUS_Greek_IOTA 0x7c9 |
| 1101 | #define IBUS_Greek_KAPPA 0x7ca |
| 1102 | #define IBUS_Greek_LAMDA 0x7cb |
| 1103 | #define IBUS_Greek_LAMBDA 0x7cb |
| 1104 | #define IBUS_Greek_MU 0x7cc |
| 1105 | #define IBUS_Greek_NU 0x7cd |
| 1106 | #define IBUS_Greek_XI 0x7ce |
| 1107 | #define IBUS_Greek_OMICRON 0x7cf |
| 1108 | #define IBUS_Greek_PI 0x7d0 |
| 1109 | #define IBUS_Greek_RHO 0x7d1 |
| 1110 | #define IBUS_Greek_SIGMA 0x7d2 |
| 1111 | #define IBUS_Greek_TAU 0x7d4 |
| 1112 | #define IBUS_Greek_UPSILON 0x7d5 |
| 1113 | #define IBUS_Greek_PHI 0x7d6 |
| 1114 | #define IBUS_Greek_CHI 0x7d7 |
| 1115 | #define IBUS_Greek_PSI 0x7d8 |
| 1116 | #define IBUS_Greek_OMEGA 0x7d9 |
| 1117 | #define IBUS_Greek_alpha 0x7e1 |
| 1118 | #define IBUS_Greek_beta 0x7e2 |
| 1119 | #define IBUS_Greek_gamma 0x7e3 |
| 1120 | #define IBUS_Greek_delta 0x7e4 |
| 1121 | #define IBUS_Greek_epsilon 0x7e5 |
| 1122 | #define IBUS_Greek_zeta 0x7e6 |
| 1123 | #define IBUS_Greek_eta 0x7e7 |
| 1124 | #define IBUS_Greek_theta 0x7e8 |
| 1125 | #define IBUS_Greek_iota 0x7e9 |
| 1126 | #define IBUS_Greek_kappa 0x7ea |
| 1127 | #define IBUS_Greek_lamda 0x7eb |
| 1128 | #define IBUS_Greek_lambda 0x7eb |
| 1129 | #define IBUS_Greek_mu 0x7ec |
| 1130 | #define IBUS_Greek_nu 0x7ed |
| 1131 | #define IBUS_Greek_xi 0x7ee |
| 1132 | #define IBUS_Greek_omicron 0x7ef |
| 1133 | #define IBUS_Greek_pi 0x7f0 |
| 1134 | #define IBUS_Greek_rho 0x7f1 |
| 1135 | #define IBUS_Greek_sigma 0x7f2 |
| 1136 | #define IBUS_Greek_finalsmallsigma 0x7f3 |
| 1137 | #define IBUS_Greek_tau 0x7f4 |
| 1138 | #define IBUS_Greek_upsilon 0x7f5 |
| 1139 | #define IBUS_Greek_phi 0x7f6 |
| 1140 | #define IBUS_Greek_chi 0x7f7 |
| 1141 | #define IBUS_Greek_psi 0x7f8 |
| 1142 | #define IBUS_Greek_omega 0x7f9 |
| 1143 | #define IBUS_Greek_switch 0xff7e |
| 1144 | #define IBUS_leftradical 0x8a1 |
| 1145 | #define IBUS_topleftradical 0x8a2 |
| 1146 | #define IBUS_horizconnector 0x8a3 |
| 1147 | #define IBUS_topintegral 0x8a4 |
| 1148 | #define IBUS_botintegral 0x8a5 |
| 1149 | #define IBUS_vertconnector 0x8a6 |
| 1150 | #define IBUS_topleftsqbracket 0x8a7 |
| 1151 | #define IBUS_botleftsqbracket 0x8a8 |
| 1152 | #define IBUS_toprightsqbracket 0x8a9 |
| 1153 | #define IBUS_botrightsqbracket 0x8aa |
| 1154 | #define IBUS_topleftparens 0x8ab |
| 1155 | #define IBUS_botleftparens 0x8ac |
| 1156 | #define IBUS_toprightparens 0x8ad |
| 1157 | #define IBUS_botrightparens 0x8ae |
| 1158 | #define IBUS_leftmiddlecurlybrace 0x8af |
| 1159 | #define IBUS_rightmiddlecurlybrace 0x8b0 |
| 1160 | #define IBUS_topleftsummation 0x8b1 |
| 1161 | #define IBUS_botleftsummation 0x8b2 |
| 1162 | #define IBUS_topvertsummationconnector 0x8b3 |
| 1163 | #define IBUS_botvertsummationconnector 0x8b4 |
| 1164 | #define IBUS_toprightsummation 0x8b5 |
| 1165 | #define IBUS_botrightsummation 0x8b6 |
| 1166 | #define IBUS_rightmiddlesummation 0x8b7 |
| 1167 | #define IBUS_lessthanequal 0x8bc |
| 1168 | #define IBUS_notequal 0x8bd |
| 1169 | #define IBUS_greaterthanequal 0x8be |
| 1170 | #define IBUS_integral 0x8bf |
| 1171 | #define IBUS_therefore 0x8c0 |
| 1172 | #define IBUS_variation 0x8c1 |
| 1173 | #define IBUS_infinity 0x8c2 |
| 1174 | #define IBUS_nabla 0x8c5 |
| 1175 | #define IBUS_approximate 0x8c8 |
| 1176 | #define IBUS_similarequal 0x8c9 |
| 1177 | #define IBUS_ifonlyif 0x8cd |
| 1178 | #define IBUS_implies 0x8ce |
| 1179 | #define IBUS_identical 0x8cf |
| 1180 | #define IBUS_radical 0x8d6 |
| 1181 | #define IBUS_includedin 0x8da |
| 1182 | #define IBUS_includes 0x8db |
| 1183 | #define IBUS_intersection 0x8dc |
| 1184 | #define IBUS_union 0x8dd |
| 1185 | #define IBUS_logicaland 0x8de |
| 1186 | #define IBUS_logicalor 0x8df |
| 1187 | #define IBUS_partialderivative 0x8ef |
| 1188 | #define IBUS_function 0x8f6 |
| 1189 | #define IBUS_leftarrow 0x8fb |
| 1190 | #define IBUS_uparrow 0x8fc |
| 1191 | #define IBUS_rightarrow 0x8fd |
| 1192 | #define IBUS_downarrow 0x8fe |
| 1193 | #define IBUS_blank 0x9df |
| 1194 | #define IBUS_soliddiamond 0x9e0 |
| 1195 | #define IBUS_checkerboard 0x9e1 |
| 1196 | #define IBUS_ht 0x9e2 |
| 1197 | #define IBUS_ff 0x9e3 |
| 1198 | #define IBUS_cr 0x9e4 |
| 1199 | #define IBUS_lf 0x9e5 |
| 1200 | #define IBUS_nl 0x9e8 |
| 1201 | #define IBUS_vt 0x9e9 |
| 1202 | #define IBUS_lowrightcorner 0x9ea |
| 1203 | #define IBUS_uprightcorner 0x9eb |
| 1204 | #define IBUS_upleftcorner 0x9ec |
| 1205 | #define IBUS_lowleftcorner 0x9ed |
| 1206 | #define IBUS_crossinglines 0x9ee |
| 1207 | #define IBUS_horizlinescan1 0x9ef |
| 1208 | #define IBUS_horizlinescan3 0x9f0 |
| 1209 | #define IBUS_horizlinescan5 0x9f1 |
| 1210 | #define IBUS_horizlinescan7 0x9f2 |
| 1211 | #define IBUS_horizlinescan9 0x9f3 |
| 1212 | #define IBUS_leftt 0x9f4 |
| 1213 | #define IBUS_rightt 0x9f5 |
| 1214 | #define IBUS_bott 0x9f6 |
| 1215 | #define IBUS_topt 0x9f7 |
| 1216 | #define IBUS_vertbar 0x9f8 |
| 1217 | #define IBUS_emspace 0xaa1 |
| 1218 | #define IBUS_enspace 0xaa2 |
| 1219 | #define IBUS_em3space 0xaa3 |
| 1220 | #define IBUS_em4space 0xaa4 |
| 1221 | #define IBUS_digitspace 0xaa5 |
| 1222 | #define IBUS_punctspace 0xaa6 |
| 1223 | #define IBUS_thinspace 0xaa7 |
| 1224 | #define IBUS_hairspace 0xaa8 |
| 1225 | #define IBUS_emdash 0xaa9 |
| 1226 | #define IBUS_endash 0xaaa |
| 1227 | #define IBUS_signifblank 0xaac |
| 1228 | #define IBUS_ellipsis 0xaae |
| 1229 | #define IBUS_doubbaselinedot 0xaaf |
| 1230 | #define IBUS_onethird 0xab0 |
| 1231 | #define IBUS_twothirds 0xab1 |
| 1232 | #define IBUS_onefifth 0xab2 |
| 1233 | #define IBUS_twofifths 0xab3 |
| 1234 | #define IBUS_threefifths 0xab4 |
| 1235 | #define IBUS_fourfifths 0xab5 |
| 1236 | #define IBUS_onesixth 0xab6 |
| 1237 | #define IBUS_fivesixths 0xab7 |
| 1238 | #define IBUS_careof 0xab8 |
| 1239 | #define IBUS_figdash 0xabb |
| 1240 | #define IBUS_leftanglebracket 0xabc |
| 1241 | #define IBUS_decimalpoint 0xabd |
| 1242 | #define IBUS_rightanglebracket 0xabe |
| 1243 | #define IBUS_marker 0xabf |
| 1244 | #define IBUS_oneeighth 0xac3 |
| 1245 | #define IBUS_threeeighths 0xac4 |
| 1246 | #define IBUS_fiveeighths 0xac5 |
| 1247 | #define IBUS_seveneighths 0xac6 |
| 1248 | #define IBUS_trademark 0xac9 |
| 1249 | #define 0xaca |
| 1250 | #define IBUS_trademarkincircle 0xacb |
| 1251 | #define IBUS_leftopentriangle 0xacc |
| 1252 | #define IBUS_rightopentriangle 0xacd |
| 1253 | #define IBUS_emopencircle 0xace |
| 1254 | #define IBUS_emopenrectangle 0xacf |
| 1255 | #define IBUS_leftsinglequotemark 0xad0 |
| 1256 | #define IBUS_rightsinglequotemark 0xad1 |
| 1257 | #define IBUS_leftdoublequotemark 0xad2 |
| 1258 | #define IBUS_rightdoublequotemark 0xad3 |
| 1259 | #define IBUS_prescription 0xad4 |
| 1260 | #define IBUS_minutes 0xad6 |
| 1261 | #define IBUS_seconds 0xad7 |
| 1262 | #define IBUS_latincross 0xad9 |
| 1263 | #define IBUS_hexagram 0xada |
| 1264 | #define IBUS_filledrectbullet 0xadb |
| 1265 | #define IBUS_filledlefttribullet 0xadc |
| 1266 | #define IBUS_filledrighttribullet 0xadd |
| 1267 | #define IBUS_emfilledcircle 0xade |
| 1268 | #define IBUS_emfilledrect 0xadf |
| 1269 | #define IBUS_enopencircbullet 0xae0 |
| 1270 | #define IBUS_enopensquarebullet 0xae1 |
| 1271 | #define IBUS_openrectbullet 0xae2 |
| 1272 | #define IBUS_opentribulletup 0xae3 |
| 1273 | #define IBUS_opentribulletdown 0xae4 |
| 1274 | #define IBUS_openstar 0xae5 |
| 1275 | #define IBUS_enfilledcircbullet 0xae6 |
| 1276 | #define IBUS_enfilledsqbullet 0xae7 |
| 1277 | #define IBUS_filledtribulletup 0xae8 |
| 1278 | #define IBUS_filledtribulletdown 0xae9 |
| 1279 | #define IBUS_leftpointer 0xaea |
| 1280 | #define IBUS_rightpointer 0xaeb |
| 1281 | #define IBUS_club 0xaec |
| 1282 | #define IBUS_diamond 0xaed |
| 1283 | #define IBUS_heart 0xaee |
| 1284 | #define IBUS_maltesecross 0xaf0 |
| 1285 | #define IBUS_dagger 0xaf1 |
| 1286 | #define IBUS_doubledagger 0xaf2 |
| 1287 | #define IBUS_checkmark 0xaf3 |
| 1288 | #define IBUS_ballotcross 0xaf4 |
| 1289 | #define IBUS_musicalsharp 0xaf5 |
| 1290 | #define IBUS_musicalflat 0xaf6 |
| 1291 | #define IBUS_malesymbol 0xaf7 |
| 1292 | #define IBUS_femalesymbol 0xaf8 |
| 1293 | #define IBUS_telephone 0xaf9 |
| 1294 | #define IBUS_telephonerecorder 0xafa |
| 1295 | #define IBUS_phonographcopyright 0xafb |
| 1296 | #define IBUS_caret 0xafc |
| 1297 | #define IBUS_singlelowquotemark 0xafd |
| 1298 | #define IBUS_doublelowquotemark 0xafe |
| 1299 | #define IBUS_cursor 0xaff |
| 1300 | #define IBUS_leftcaret 0xba3 |
| 1301 | #define IBUS_rightcaret 0xba6 |
| 1302 | #define IBUS_downcaret 0xba8 |
| 1303 | #define IBUS_upcaret 0xba9 |
| 1304 | #define IBUS_overbar 0xbc0 |
| 1305 | #define IBUS_downtack 0xbc2 |
| 1306 | #define IBUS_upshoe 0xbc3 |
| 1307 | #define IBUS_downstile 0xbc4 |
| 1308 | #define IBUS_underbar 0xbc6 |
| 1309 | #define IBUS_jot 0xbca |
| 1310 | #define IBUS_quad 0xbcc |
| 1311 | #define IBUS_uptack 0xbce |
| 1312 | #define IBUS_circle 0xbcf |
| 1313 | #define IBUS_upstile 0xbd3 |
| 1314 | #define IBUS_downshoe 0xbd6 |
| 1315 | #define IBUS_rightshoe 0xbd8 |
| 1316 | #define IBUS_leftshoe 0xbda |
| 1317 | #define IBUS_lefttack 0xbdc |
| 1318 | #define IBUS_righttack 0xbfc |
| 1319 | #define IBUS_hebrew_doublelowline 0xcdf |
| 1320 | #define IBUS_hebrew_aleph 0xce0 |
| 1321 | #define IBUS_hebrew_bet 0xce1 |
| 1322 | #define IBUS_hebrew_beth 0xce1 |
| 1323 | #define IBUS_hebrew_gimel 0xce2 |
| 1324 | #define IBUS_hebrew_gimmel 0xce2 |
| 1325 | #define IBUS_hebrew_dalet 0xce3 |
| 1326 | #define IBUS_hebrew_daleth 0xce3 |
| 1327 | #define IBUS_hebrew_he 0xce4 |
| 1328 | #define IBUS_hebrew_waw 0xce5 |
| 1329 | #define IBUS_hebrew_zain 0xce6 |
| 1330 | #define IBUS_hebrew_zayin 0xce6 |
| 1331 | #define IBUS_hebrew_chet 0xce7 |
| 1332 | #define IBUS_hebrew_het 0xce7 |
| 1333 | #define IBUS_hebrew_tet 0xce8 |
| 1334 | #define IBUS_hebrew_teth 0xce8 |
| 1335 | #define IBUS_hebrew_yod 0xce9 |
| 1336 | #define IBUS_hebrew_finalkaph 0xcea |
| 1337 | #define IBUS_hebrew_kaph 0xceb |
| 1338 | #define IBUS_hebrew_lamed 0xcec |
| 1339 | #define IBUS_hebrew_finalmem 0xced |
| 1340 | #define IBUS_hebrew_mem 0xcee |
| 1341 | #define IBUS_hebrew_finalnun 0xcef |
| 1342 | #define IBUS_hebrew_nun 0xcf0 |
| 1343 | #define IBUS_hebrew_samech 0xcf1 |
| 1344 | #define IBUS_hebrew_samekh 0xcf1 |
| 1345 | #define IBUS_hebrew_ayin 0xcf2 |
| 1346 | #define IBUS_hebrew_finalpe 0xcf3 |
| 1347 | #define IBUS_hebrew_pe 0xcf4 |
| 1348 | #define IBUS_hebrew_finalzade 0xcf5 |
| 1349 | #define IBUS_hebrew_finalzadi 0xcf5 |
| 1350 | #define IBUS_hebrew_zade 0xcf6 |
| 1351 | #define IBUS_hebrew_zadi 0xcf6 |
| 1352 | #define IBUS_hebrew_qoph 0xcf7 |
| 1353 | #define IBUS_hebrew_kuf 0xcf7 |
| 1354 | #define IBUS_hebrew_resh 0xcf8 |
| 1355 | #define IBUS_hebrew_shin 0xcf9 |
| 1356 | #define IBUS_hebrew_taw 0xcfa |
| 1357 | #define IBUS_hebrew_taf 0xcfa |
| 1358 | #define IBUS_Hebrew_switch 0xff7e |
| 1359 | #define IBUS_Thai_kokai 0xda1 |
| 1360 | #define IBUS_Thai_khokhai 0xda2 |
| 1361 | #define IBUS_Thai_khokhuat 0xda3 |
| 1362 | #define IBUS_Thai_khokhwai 0xda4 |
| 1363 | #define IBUS_Thai_khokhon 0xda5 |
| 1364 | #define IBUS_Thai_khorakhang 0xda6 |
| 1365 | #define IBUS_Thai_ngongu 0xda7 |
| 1366 | #define IBUS_Thai_chochan 0xda8 |
| 1367 | #define IBUS_Thai_choching 0xda9 |
| 1368 | #define IBUS_Thai_chochang 0xdaa |
| 1369 | #define IBUS_Thai_soso 0xdab |
| 1370 | #define IBUS_Thai_chochoe 0xdac |
| 1371 | #define IBUS_Thai_yoying 0xdad |
| 1372 | #define IBUS_Thai_dochada 0xdae |
| 1373 | #define IBUS_Thai_topatak 0xdaf |
| 1374 | #define IBUS_Thai_thothan 0xdb0 |
| 1375 | #define IBUS_Thai_thonangmontho 0xdb1 |
| 1376 | #define IBUS_Thai_thophuthao 0xdb2 |
| 1377 | #define IBUS_Thai_nonen 0xdb3 |
| 1378 | #define IBUS_Thai_dodek 0xdb4 |
| 1379 | #define IBUS_Thai_totao 0xdb5 |
| 1380 | #define IBUS_Thai_thothung 0xdb6 |
| 1381 | #define IBUS_Thai_thothahan 0xdb7 |
| 1382 | #define IBUS_Thai_thothong 0xdb8 |
| 1383 | #define IBUS_Thai_nonu 0xdb9 |
| 1384 | #define IBUS_Thai_bobaimai 0xdba |
| 1385 | #define IBUS_Thai_popla 0xdbb |
| 1386 | #define IBUS_Thai_phophung 0xdbc |
| 1387 | #define IBUS_Thai_fofa 0xdbd |
| 1388 | #define IBUS_Thai_phophan 0xdbe |
| 1389 | #define IBUS_Thai_fofan 0xdbf |
| 1390 | #define IBUS_Thai_phosamphao 0xdc0 |
| 1391 | #define IBUS_Thai_moma 0xdc1 |
| 1392 | #define IBUS_Thai_yoyak 0xdc2 |
| 1393 | #define IBUS_Thai_rorua 0xdc3 |
| 1394 | #define IBUS_Thai_ru 0xdc4 |
| 1395 | #define IBUS_Thai_loling 0xdc5 |
| 1396 | #define IBUS_Thai_lu 0xdc6 |
| 1397 | #define IBUS_Thai_wowaen 0xdc7 |
| 1398 | #define IBUS_Thai_sosala 0xdc8 |
| 1399 | #define IBUS_Thai_sorusi 0xdc9 |
| 1400 | #define IBUS_Thai_sosua 0xdca |
| 1401 | #define IBUS_Thai_hohip 0xdcb |
| 1402 | #define IBUS_Thai_lochula 0xdcc |
| 1403 | #define IBUS_Thai_oang 0xdcd |
| 1404 | #define IBUS_Thai_honokhuk 0xdce |
| 1405 | #define IBUS_Thai_paiyannoi 0xdcf |
| 1406 | #define IBUS_Thai_saraa 0xdd0 |
| 1407 | #define IBUS_Thai_maihanakat 0xdd1 |
| 1408 | #define IBUS_Thai_saraaa 0xdd2 |
| 1409 | #define IBUS_Thai_saraam 0xdd3 |
| 1410 | #define IBUS_Thai_sarai 0xdd4 |
| 1411 | #define IBUS_Thai_saraii 0xdd5 |
| 1412 | #define IBUS_Thai_saraue 0xdd6 |
| 1413 | #define IBUS_Thai_sarauee 0xdd7 |
| 1414 | #define IBUS_Thai_sarau 0xdd8 |
| 1415 | #define IBUS_Thai_sarauu 0xdd9 |
| 1416 | #define IBUS_Thai_phinthu 0xdda |
| 1417 | #define IBUS_Thai_maihanakat_maitho 0xdde |
| 1418 | #define IBUS_Thai_baht 0xddf |
| 1419 | #define IBUS_Thai_sarae 0xde0 |
| 1420 | #define IBUS_Thai_saraae 0xde1 |
| 1421 | #define IBUS_Thai_sarao 0xde2 |
| 1422 | #define IBUS_Thai_saraaimaimuan 0xde3 |
| 1423 | #define IBUS_Thai_saraaimaimalai 0xde4 |
| 1424 | #define IBUS_Thai_lakkhangyao 0xde5 |
| 1425 | #define IBUS_Thai_maiyamok 0xde6 |
| 1426 | #define IBUS_Thai_maitaikhu 0xde7 |
| 1427 | #define IBUS_Thai_maiek 0xde8 |
| 1428 | #define IBUS_Thai_maitho 0xde9 |
| 1429 | #define IBUS_Thai_maitri 0xdea |
| 1430 | #define IBUS_Thai_maichattawa 0xdeb |
| 1431 | #define IBUS_Thai_thanthakhat 0xdec |
| 1432 | #define IBUS_Thai_nikhahit 0xded |
| 1433 | #define IBUS_Thai_leksun 0xdf0 |
| 1434 | #define IBUS_Thai_leknung 0xdf1 |
| 1435 | #define IBUS_Thai_leksong 0xdf2 |
| 1436 | #define IBUS_Thai_leksam 0xdf3 |
| 1437 | #define IBUS_Thai_leksi 0xdf4 |
| 1438 | #define IBUS_Thai_lekha 0xdf5 |
| 1439 | #define IBUS_Thai_lekhok 0xdf6 |
| 1440 | #define IBUS_Thai_lekchet 0xdf7 |
| 1441 | #define IBUS_Thai_lekpaet 0xdf8 |
| 1442 | #define IBUS_Thai_lekkao 0xdf9 |
| 1443 | #define IBUS_Hangul 0xff31 |
| 1444 | #define IBUS_Hangul_Start 0xff32 |
| 1445 | #define IBUS_Hangul_End 0xff33 |
| 1446 | #define IBUS_Hangul_Hanja 0xff34 |
| 1447 | #define IBUS_Hangul_Jamo 0xff35 |
| 1448 | #define IBUS_Hangul_Romaja 0xff36 |
| 1449 | #define IBUS_Hangul_Codeinput 0xff37 |
| 1450 | #define IBUS_Hangul_Jeonja 0xff38 |
| 1451 | #define IBUS_Hangul_Banja 0xff39 |
| 1452 | #define IBUS_Hangul_PreHanja 0xff3a |
| 1453 | #define IBUS_Hangul_PostHanja 0xff3b |
| 1454 | #define IBUS_Hangul_SingleCandidate 0xff3c |
| 1455 | #define IBUS_Hangul_MultipleCandidate 0xff3d |
| 1456 | #define IBUS_Hangul_PreviousCandidate 0xff3e |
| 1457 | #define IBUS_Hangul_Special 0xff3f |
| 1458 | #define IBUS_Hangul_switch 0xff7e |
| 1459 | #define IBUS_Hangul_Kiyeog 0xea1 |
| 1460 | #define IBUS_Hangul_SsangKiyeog 0xea2 |
| 1461 | #define IBUS_Hangul_KiyeogSios 0xea3 |
| 1462 | #define IBUS_Hangul_Nieun 0xea4 |
| 1463 | #define IBUS_Hangul_NieunJieuj 0xea5 |
| 1464 | #define IBUS_Hangul_NieunHieuh 0xea6 |
| 1465 | #define IBUS_Hangul_Dikeud 0xea7 |
| 1466 | #define IBUS_Hangul_SsangDikeud 0xea8 |
| 1467 | #define IBUS_Hangul_Rieul 0xea9 |
| 1468 | #define IBUS_Hangul_RieulKiyeog 0xeaa |
| 1469 | #define IBUS_Hangul_RieulMieum 0xeab |
| 1470 | #define IBUS_Hangul_RieulPieub 0xeac |
| 1471 | #define IBUS_Hangul_RieulSios 0xead |
| 1472 | #define IBUS_Hangul_RieulTieut 0xeae |
| 1473 | #define IBUS_Hangul_RieulPhieuf 0xeaf |
| 1474 | #define IBUS_Hangul_RieulHieuh 0xeb0 |
| 1475 | #define IBUS_Hangul_Mieum 0xeb1 |
| 1476 | #define IBUS_Hangul_Pieub 0xeb2 |
| 1477 | #define IBUS_Hangul_SsangPieub 0xeb3 |
| 1478 | #define IBUS_Hangul_PieubSios 0xeb4 |
| 1479 | #define IBUS_Hangul_Sios 0xeb5 |
| 1480 | #define IBUS_Hangul_SsangSios 0xeb6 |
| 1481 | #define IBUS_Hangul_Ieung 0xeb7 |
| 1482 | #define IBUS_Hangul_Jieuj 0xeb8 |
| 1483 | #define IBUS_Hangul_SsangJieuj 0xeb9 |
| 1484 | #define IBUS_Hangul_Cieuc 0xeba |
| 1485 | #define IBUS_Hangul_Khieuq 0xebb |
| 1486 | #define IBUS_Hangul_Tieut 0xebc |
| 1487 | #define IBUS_Hangul_Phieuf 0xebd |
| 1488 | #define IBUS_Hangul_Hieuh 0xebe |
| 1489 | #define IBUS_Hangul_A 0xebf |
| 1490 | #define IBUS_Hangul_AE 0xec0 |
| 1491 | #define IBUS_Hangul_YA 0xec1 |
| 1492 | #define IBUS_Hangul_YAE 0xec2 |
| 1493 | #define IBUS_Hangul_EO 0xec3 |
| 1494 | #define IBUS_Hangul_E 0xec4 |
| 1495 | #define IBUS_Hangul_YEO 0xec5 |
| 1496 | #define IBUS_Hangul_YE 0xec6 |
| 1497 | #define IBUS_Hangul_O 0xec7 |
| 1498 | #define IBUS_Hangul_WA 0xec8 |
| 1499 | #define IBUS_Hangul_WAE 0xec9 |
| 1500 | #define IBUS_Hangul_OE 0xeca |
| 1501 | #define IBUS_Hangul_YO 0xecb |
| 1502 | #define IBUS_Hangul_U 0xecc |
| 1503 | #define IBUS_Hangul_WEO 0xecd |
| 1504 | #define IBUS_Hangul_WE 0xece |
| 1505 | #define IBUS_Hangul_WI 0xecf |
| 1506 | #define IBUS_Hangul_YU 0xed0 |
| 1507 | #define IBUS_Hangul_EU 0xed1 |
| 1508 | #define IBUS_Hangul_YI 0xed2 |
| 1509 | #define IBUS_Hangul_I 0xed3 |
| 1510 | #define IBUS_Hangul_J_Kiyeog 0xed4 |
| 1511 | #define IBUS_Hangul_J_SsangKiyeog 0xed5 |
| 1512 | #define IBUS_Hangul_J_KiyeogSios 0xed6 |
| 1513 | #define IBUS_Hangul_J_Nieun 0xed7 |
| 1514 | #define IBUS_Hangul_J_NieunJieuj 0xed8 |
| 1515 | #define IBUS_Hangul_J_NieunHieuh 0xed9 |
| 1516 | #define IBUS_Hangul_J_Dikeud 0xeda |
| 1517 | #define IBUS_Hangul_J_Rieul 0xedb |
| 1518 | #define IBUS_Hangul_J_RieulKiyeog 0xedc |
| 1519 | #define IBUS_Hangul_J_RieulMieum 0xedd |
| 1520 | #define IBUS_Hangul_J_RieulPieub 0xede |
| 1521 | #define IBUS_Hangul_J_RieulSios 0xedf |
| 1522 | #define IBUS_Hangul_J_RieulTieut 0xee0 |
| 1523 | #define IBUS_Hangul_J_RieulPhieuf 0xee1 |
| 1524 | #define IBUS_Hangul_J_RieulHieuh 0xee2 |
| 1525 | #define IBUS_Hangul_J_Mieum 0xee3 |
| 1526 | #define IBUS_Hangul_J_Pieub 0xee4 |
| 1527 | #define IBUS_Hangul_J_PieubSios 0xee5 |
| 1528 | #define IBUS_Hangul_J_Sios 0xee6 |
| 1529 | #define IBUS_Hangul_J_SsangSios 0xee7 |
| 1530 | #define IBUS_Hangul_J_Ieung 0xee8 |
| 1531 | #define IBUS_Hangul_J_Jieuj 0xee9 |
| 1532 | #define IBUS_Hangul_J_Cieuc 0xeea |
| 1533 | #define IBUS_Hangul_J_Khieuq 0xeeb |
| 1534 | #define IBUS_Hangul_J_Tieut 0xeec |
| 1535 | #define IBUS_Hangul_J_Phieuf 0xeed |
| 1536 | #define IBUS_Hangul_J_Hieuh 0xeee |
| 1537 | #define IBUS_Hangul_RieulYeorinHieuh 0xeef |
| 1538 | #define IBUS_Hangul_SunkyeongeumMieum 0xef0 |
| 1539 | #define IBUS_Hangul_SunkyeongeumPieub 0xef1 |
| 1540 | #define IBUS_Hangul_PanSios 0xef2 |
| 1541 | #define IBUS_Hangul_KkogjiDalrinIeung 0xef3 |
| 1542 | #define IBUS_Hangul_SunkyeongeumPhieuf 0xef4 |
| 1543 | #define IBUS_Hangul_YeorinHieuh 0xef5 |
| 1544 | #define IBUS_Hangul_AraeA 0xef6 |
| 1545 | #define IBUS_Hangul_AraeAE 0xef7 |
| 1546 | #define IBUS_Hangul_J_PanSios 0xef8 |
| 1547 | #define IBUS_Hangul_J_KkogjiDalrinIeung 0xef9 |
| 1548 | #define IBUS_Hangul_J_YeorinHieuh 0xefa |
| 1549 | #define IBUS_Korean_Won 0xeff |
| 1550 | #define IBUS_Armenian_ligature_ew 0x1000587 |
| 1551 | #define IBUS_Armenian_full_stop 0x1000589 |
| 1552 | #define IBUS_Armenian_verjaket 0x1000589 |
| 1553 | #define IBUS_Armenian_separation_mark 0x100055d |
| 1554 | #define IBUS_Armenian_but 0x100055d |
| 1555 | #define IBUS_Armenian_hyphen 0x100058a |
| 1556 | #define IBUS_Armenian_yentamna 0x100058a |
| 1557 | #define IBUS_Armenian_exclam 0x100055c |
| 1558 | #define IBUS_Armenian_amanak 0x100055c |
| 1559 | #define IBUS_Armenian_accent 0x100055b |
| 1560 | #define IBUS_Armenian_shesht 0x100055b |
| 1561 | #define IBUS_Armenian_question 0x100055e |
| 1562 | #define IBUS_Armenian_paruyk 0x100055e |
| 1563 | #define IBUS_Armenian_AYB 0x1000531 |
| 1564 | #define IBUS_Armenian_ayb 0x1000561 |
| 1565 | #define IBUS_Armenian_BEN 0x1000532 |
| 1566 | #define IBUS_Armenian_ben 0x1000562 |
| 1567 | #define IBUS_Armenian_GIM 0x1000533 |
| 1568 | #define IBUS_Armenian_gim 0x1000563 |
| 1569 | #define IBUS_Armenian_DA 0x1000534 |
| 1570 | #define IBUS_Armenian_da 0x1000564 |
| 1571 | #define IBUS_Armenian_YECH 0x1000535 |
| 1572 | #define IBUS_Armenian_yech 0x1000565 |
| 1573 | #define IBUS_Armenian_ZA 0x1000536 |
| 1574 | #define IBUS_Armenian_za 0x1000566 |
| 1575 | #define IBUS_Armenian_E 0x1000537 |
| 1576 | #define IBUS_Armenian_e 0x1000567 |
| 1577 | #define IBUS_Armenian_AT 0x1000538 |
| 1578 | #define IBUS_Armenian_at 0x1000568 |
| 1579 | #define IBUS_Armenian_TO 0x1000539 |
| 1580 | #define IBUS_Armenian_to 0x1000569 |
| 1581 | #define IBUS_Armenian_ZHE 0x100053a |
| 1582 | #define IBUS_Armenian_zhe 0x100056a |
| 1583 | #define IBUS_Armenian_INI 0x100053b |
| 1584 | #define IBUS_Armenian_ini 0x100056b |
| 1585 | #define IBUS_Armenian_LYUN 0x100053c |
| 1586 | #define IBUS_Armenian_lyun 0x100056c |
| 1587 | #define IBUS_Armenian_KHE 0x100053d |
| 1588 | #define IBUS_Armenian_khe 0x100056d |
| 1589 | #define IBUS_Armenian_TSA 0x100053e |
| 1590 | #define IBUS_Armenian_tsa 0x100056e |
| 1591 | #define IBUS_Armenian_KEN 0x100053f |
| 1592 | #define IBUS_Armenian_ken 0x100056f |
| 1593 | #define IBUS_Armenian_HO 0x1000540 |
| 1594 | #define IBUS_Armenian_ho 0x1000570 |
| 1595 | #define IBUS_Armenian_DZA 0x1000541 |
| 1596 | #define IBUS_Armenian_dza 0x1000571 |
| 1597 | #define IBUS_Armenian_GHAT 0x1000542 |
| 1598 | #define IBUS_Armenian_ghat 0x1000572 |
| 1599 | #define IBUS_Armenian_TCHE 0x1000543 |
| 1600 | #define IBUS_Armenian_tche 0x1000573 |
| 1601 | #define IBUS_Armenian_MEN 0x1000544 |
| 1602 | #define IBUS_Armenian_men 0x1000574 |
| 1603 | #define IBUS_Armenian_HI 0x1000545 |
| 1604 | #define IBUS_Armenian_hi 0x1000575 |
| 1605 | #define IBUS_Armenian_NU 0x1000546 |
| 1606 | #define IBUS_Armenian_nu 0x1000576 |
| 1607 | #define IBUS_Armenian_SHA 0x1000547 |
| 1608 | #define IBUS_Armenian_sha 0x1000577 |
| 1609 | #define IBUS_Armenian_VO 0x1000548 |
| 1610 | #define IBUS_Armenian_vo 0x1000578 |
| 1611 | #define IBUS_Armenian_CHA 0x1000549 |
| 1612 | #define IBUS_Armenian_cha 0x1000579 |
| 1613 | #define IBUS_Armenian_PE 0x100054a |
| 1614 | #define IBUS_Armenian_pe 0x100057a |
| 1615 | #define IBUS_Armenian_JE 0x100054b |
| 1616 | #define IBUS_Armenian_je 0x100057b |
| 1617 | #define IBUS_Armenian_RA 0x100054c |
| 1618 | #define IBUS_Armenian_ra 0x100057c |
| 1619 | #define IBUS_Armenian_SE 0x100054d |
| 1620 | #define IBUS_Armenian_se 0x100057d |
| 1621 | #define IBUS_Armenian_VEV 0x100054e |
| 1622 | #define IBUS_Armenian_vev 0x100057e |
| 1623 | #define IBUS_Armenian_TYUN 0x100054f |
| 1624 | #define IBUS_Armenian_tyun 0x100057f |
| 1625 | #define IBUS_Armenian_RE 0x1000550 |
| 1626 | #define IBUS_Armenian_re 0x1000580 |
| 1627 | #define IBUS_Armenian_TSO 0x1000551 |
| 1628 | #define IBUS_Armenian_tso 0x1000581 |
| 1629 | #define IBUS_Armenian_VYUN 0x1000552 |
| 1630 | #define IBUS_Armenian_vyun 0x1000582 |
| 1631 | #define IBUS_Armenian_PYUR 0x1000553 |
| 1632 | #define IBUS_Armenian_pyur 0x1000583 |
| 1633 | #define IBUS_Armenian_KE 0x1000554 |
| 1634 | #define IBUS_Armenian_ke 0x1000584 |
| 1635 | #define IBUS_Armenian_O 0x1000555 |
| 1636 | #define IBUS_Armenian_o 0x1000585 |
| 1637 | #define IBUS_Armenian_FE 0x1000556 |
| 1638 | #define IBUS_Armenian_fe 0x1000586 |
| 1639 | #define IBUS_Armenian_apostrophe 0x100055a |
| 1640 | #define IBUS_Georgian_an 0x10010d0 |
| 1641 | #define IBUS_Georgian_ban 0x10010d1 |
| 1642 | #define IBUS_Georgian_gan 0x10010d2 |
| 1643 | #define IBUS_Georgian_don 0x10010d3 |
| 1644 | #define IBUS_Georgian_en 0x10010d4 |
| 1645 | #define IBUS_Georgian_vin 0x10010d5 |
| 1646 | #define IBUS_Georgian_zen 0x10010d6 |
| 1647 | #define IBUS_Georgian_tan 0x10010d7 |
| 1648 | #define IBUS_Georgian_in 0x10010d8 |
| 1649 | #define IBUS_Georgian_kan 0x10010d9 |
| 1650 | #define IBUS_Georgian_las 0x10010da |
| 1651 | #define IBUS_Georgian_man 0x10010db |
| 1652 | #define IBUS_Georgian_nar 0x10010dc |
| 1653 | #define IBUS_Georgian_on 0x10010dd |
| 1654 | #define IBUS_Georgian_par 0x10010de |
| 1655 | #define IBUS_Georgian_zhar 0x10010df |
| 1656 | #define IBUS_Georgian_rae 0x10010e0 |
| 1657 | #define IBUS_Georgian_san 0x10010e1 |
| 1658 | #define IBUS_Georgian_tar 0x10010e2 |
| 1659 | #define IBUS_Georgian_un 0x10010e3 |
| 1660 | #define IBUS_Georgian_phar 0x10010e4 |
| 1661 | #define IBUS_Georgian_khar 0x10010e5 |
| 1662 | #define IBUS_Georgian_ghan 0x10010e6 |
| 1663 | #define IBUS_Georgian_qar 0x10010e7 |
| 1664 | #define IBUS_Georgian_shin 0x10010e8 |
| 1665 | #define IBUS_Georgian_chin 0x10010e9 |
| 1666 | #define IBUS_Georgian_can 0x10010ea |
| 1667 | #define IBUS_Georgian_jil 0x10010eb |
| 1668 | #define IBUS_Georgian_cil 0x10010ec |
| 1669 | #define IBUS_Georgian_char 0x10010ed |
| 1670 | #define IBUS_Georgian_xan 0x10010ee |
| 1671 | #define IBUS_Georgian_jhan 0x10010ef |
| 1672 | #define IBUS_Georgian_hae 0x10010f0 |
| 1673 | #define IBUS_Georgian_he 0x10010f1 |
| 1674 | #define IBUS_Georgian_hie 0x10010f2 |
| 1675 | #define IBUS_Georgian_we 0x10010f3 |
| 1676 | #define IBUS_Georgian_har 0x10010f4 |
| 1677 | #define IBUS_Georgian_hoe 0x10010f5 |
| 1678 | #define IBUS_Georgian_fi 0x10010f6 |
| 1679 | #define IBUS_Xabovedot 0x1001e8a |
| 1680 | #define IBUS_Ibreve 0x100012c |
| 1681 | #define IBUS_Zstroke 0x10001b5 |
| 1682 | #define IBUS_Gcaron 0x10001e6 |
| 1683 | #define IBUS_Ocaron 0x10001d1 |
| 1684 | #define IBUS_Obarred 0x100019f |
| 1685 | #define IBUS_xabovedot 0x1001e8b |
| 1686 | #define IBUS_ibreve 0x100012d |
| 1687 | #define IBUS_zstroke 0x10001b6 |
| 1688 | #define IBUS_gcaron 0x10001e7 |
| 1689 | #define IBUS_ocaron 0x10001d2 |
| 1690 | #define IBUS_obarred 0x1000275 |
| 1691 | #define IBUS_SCHWA 0x100018f |
| 1692 | #define IBUS_schwa 0x1000259 |
| 1693 | #define IBUS_Lbelowdot 0x1001e36 |
| 1694 | #define IBUS_lbelowdot 0x1001e37 |
| 1695 | #define IBUS_Abelowdot 0x1001ea0 |
| 1696 | #define IBUS_abelowdot 0x1001ea1 |
| 1697 | #define IBUS_Ahook 0x1001ea2 |
| 1698 | #define IBUS_ahook 0x1001ea3 |
| 1699 | #define IBUS_Acircumflexacute 0x1001ea4 |
| 1700 | #define IBUS_acircumflexacute 0x1001ea5 |
| 1701 | #define IBUS_Acircumflexgrave 0x1001ea6 |
| 1702 | #define IBUS_acircumflexgrave 0x1001ea7 |
| 1703 | #define IBUS_Acircumflexhook 0x1001ea8 |
| 1704 | #define IBUS_acircumflexhook 0x1001ea9 |
| 1705 | #define IBUS_Acircumflextilde 0x1001eaa |
| 1706 | #define IBUS_acircumflextilde 0x1001eab |
| 1707 | #define IBUS_Acircumflexbelowdot 0x1001eac |
| 1708 | #define IBUS_acircumflexbelowdot 0x1001ead |
| 1709 | #define IBUS_Abreveacute 0x1001eae |
| 1710 | #define IBUS_abreveacute 0x1001eaf |
| 1711 | #define IBUS_Abrevegrave 0x1001eb0 |
| 1712 | #define IBUS_abrevegrave 0x1001eb1 |
| 1713 | #define IBUS_Abrevehook 0x1001eb2 |
| 1714 | #define IBUS_abrevehook 0x1001eb3 |
| 1715 | #define IBUS_Abrevetilde 0x1001eb4 |
| 1716 | #define IBUS_abrevetilde 0x1001eb5 |
| 1717 | #define IBUS_Abrevebelowdot 0x1001eb6 |
| 1718 | #define IBUS_abrevebelowdot 0x1001eb7 |
| 1719 | #define IBUS_Ebelowdot 0x1001eb8 |
| 1720 | #define IBUS_ebelowdot 0x1001eb9 |
| 1721 | #define IBUS_Ehook 0x1001eba |
| 1722 | #define IBUS_ehook 0x1001ebb |
| 1723 | #define IBUS_Etilde 0x1001ebc |
| 1724 | #define IBUS_etilde 0x1001ebd |
| 1725 | #define IBUS_Ecircumflexacute 0x1001ebe |
| 1726 | #define IBUS_ecircumflexacute 0x1001ebf |
| 1727 | #define IBUS_Ecircumflexgrave 0x1001ec0 |
| 1728 | #define IBUS_ecircumflexgrave 0x1001ec1 |
| 1729 | #define IBUS_Ecircumflexhook 0x1001ec2 |
| 1730 | #define IBUS_ecircumflexhook 0x1001ec3 |
| 1731 | #define IBUS_Ecircumflextilde 0x1001ec4 |
| 1732 | #define IBUS_ecircumflextilde 0x1001ec5 |
| 1733 | #define IBUS_Ecircumflexbelowdot 0x1001ec6 |
| 1734 | #define IBUS_ecircumflexbelowdot 0x1001ec7 |
| 1735 | #define IBUS_Ihook 0x1001ec8 |
| 1736 | #define IBUS_ihook 0x1001ec9 |
| 1737 | #define IBUS_Ibelowdot 0x1001eca |
| 1738 | #define IBUS_ibelowdot 0x1001ecb |
| 1739 | #define IBUS_Obelowdot 0x1001ecc |
| 1740 | #define IBUS_obelowdot 0x1001ecd |
| 1741 | #define IBUS_Ohook 0x1001ece |
| 1742 | #define IBUS_ohook 0x1001ecf |
| 1743 | #define IBUS_Ocircumflexacute 0x1001ed0 |
| 1744 | #define IBUS_ocircumflexacute 0x1001ed1 |
| 1745 | #define IBUS_Ocircumflexgrave 0x1001ed2 |
| 1746 | #define IBUS_ocircumflexgrave 0x1001ed3 |
| 1747 | #define IBUS_Ocircumflexhook 0x1001ed4 |
| 1748 | #define IBUS_ocircumflexhook 0x1001ed5 |
| 1749 | #define IBUS_Ocircumflextilde 0x1001ed6 |
| 1750 | #define IBUS_ocircumflextilde 0x1001ed7 |
| 1751 | #define IBUS_Ocircumflexbelowdot 0x1001ed8 |
| 1752 | #define IBUS_ocircumflexbelowdot 0x1001ed9 |
| 1753 | #define IBUS_Ohornacute 0x1001eda |
| 1754 | #define IBUS_ohornacute 0x1001edb |
| 1755 | #define IBUS_Ohorngrave 0x1001edc |
| 1756 | #define IBUS_ohorngrave 0x1001edd |
| 1757 | #define IBUS_Ohornhook 0x1001ede |
| 1758 | #define IBUS_ohornhook 0x1001edf |
| 1759 | #define IBUS_Ohorntilde 0x1001ee0 |
| 1760 | #define IBUS_ohorntilde 0x1001ee1 |
| 1761 | #define IBUS_Ohornbelowdot 0x1001ee2 |
| 1762 | #define IBUS_ohornbelowdot 0x1001ee3 |
| 1763 | #define IBUS_Ubelowdot 0x1001ee4 |
| 1764 | #define IBUS_ubelowdot 0x1001ee5 |
| 1765 | #define IBUS_Uhook 0x1001ee6 |
| 1766 | #define IBUS_uhook 0x1001ee7 |
| 1767 | #define IBUS_Uhornacute 0x1001ee8 |
| 1768 | #define IBUS_uhornacute 0x1001ee9 |
| 1769 | #define IBUS_Uhorngrave 0x1001eea |
| 1770 | #define IBUS_uhorngrave 0x1001eeb |
| 1771 | #define IBUS_Uhornhook 0x1001eec |
| 1772 | #define IBUS_uhornhook 0x1001eed |
| 1773 | #define IBUS_Uhorntilde 0x1001eee |
| 1774 | #define IBUS_uhorntilde 0x1001eef |
| 1775 | #define IBUS_Uhornbelowdot 0x1001ef0 |
| 1776 | #define IBUS_uhornbelowdot 0x1001ef1 |
| 1777 | #define IBUS_Ybelowdot 0x1001ef4 |
| 1778 | #define IBUS_ybelowdot 0x1001ef5 |
| 1779 | #define IBUS_Yhook 0x1001ef6 |
| 1780 | #define IBUS_yhook 0x1001ef7 |
| 1781 | #define IBUS_Ytilde 0x1001ef8 |
| 1782 | #define IBUS_ytilde 0x1001ef9 |
| 1783 | #define IBUS_Ohorn 0x10001a0 |
| 1784 | #define IBUS_ohorn 0x10001a1 |
| 1785 | #define IBUS_Uhorn 0x10001af |
| 1786 | #define IBUS_uhorn 0x10001b0 |
| 1787 | #define IBUS_EcuSign 0x10020a0 |
| 1788 | #define IBUS_ColonSign 0x10020a1 |
| 1789 | #define IBUS_CruzeiroSign 0x10020a2 |
| 1790 | #define IBUS_FFrancSign 0x10020a3 |
| 1791 | #define IBUS_LiraSign 0x10020a4 |
| 1792 | #define IBUS_MillSign 0x10020a5 |
| 1793 | #define IBUS_NairaSign 0x10020a6 |
| 1794 | #define IBUS_PesetaSign 0x10020a7 |
| 1795 | #define IBUS_RupeeSign 0x10020a8 |
| 1796 | #define IBUS_WonSign 0x10020a9 |
| 1797 | #define IBUS_NewSheqelSign 0x10020aa |
| 1798 | #define IBUS_DongSign 0x10020ab |
| 1799 | #define IBUS_EuroSign 0x20ac |
| 1800 | #define IBUS_zerosuperior 0x1002070 |
| 1801 | #define IBUS_foursuperior 0x1002074 |
| 1802 | #define IBUS_fivesuperior 0x1002075 |
| 1803 | #define IBUS_sixsuperior 0x1002076 |
| 1804 | #define IBUS_sevensuperior 0x1002077 |
| 1805 | #define IBUS_eightsuperior 0x1002078 |
| 1806 | #define IBUS_ninesuperior 0x1002079 |
| 1807 | #define IBUS_zerosubscript 0x1002080 |
| 1808 | #define IBUS_onesubscript 0x1002081 |
| 1809 | #define IBUS_twosubscript 0x1002082 |
| 1810 | #define IBUS_threesubscript 0x1002083 |
| 1811 | #define IBUS_foursubscript 0x1002084 |
| 1812 | #define IBUS_fivesubscript 0x1002085 |
| 1813 | #define IBUS_sixsubscript 0x1002086 |
| 1814 | #define IBUS_sevensubscript 0x1002087 |
| 1815 | #define IBUS_eightsubscript 0x1002088 |
| 1816 | #define IBUS_ninesubscript 0x1002089 |
| 1817 | #define IBUS_partdifferential 0x1002202 |
| 1818 | #define IBUS_emptyset 0x1002205 |
| 1819 | #define IBUS_elementof 0x1002208 |
| 1820 | #define IBUS_notelementof 0x1002209 |
| 1821 | #define IBUS_containsas 0x100220b |
| 1822 | #define IBUS_squareroot 0x100221a |
| 1823 | #define IBUS_cuberoot 0x100221b |
| 1824 | #define IBUS_fourthroot 0x100221c |
| 1825 | #define IBUS_dintegral 0x100222c |
| 1826 | #define IBUS_tintegral 0x100222d |
| 1827 | #define IBUS_because 0x1002235 |
| 1828 | #define IBUS_approxeq 0x1002248 |
| 1829 | #define IBUS_notapproxeq 0x1002247 |
| 1830 | #define IBUS_notidentical 0x1002262 |
| 1831 | #define IBUS_stricteq 0x1002263 |
| 1832 | #define IBUS_braille_dot_1 0xfff1 |
| 1833 | #define IBUS_braille_dot_2 0xfff2 |
| 1834 | #define IBUS_braille_dot_3 0xfff3 |
| 1835 | #define IBUS_braille_dot_4 0xfff4 |
| 1836 | #define IBUS_braille_dot_5 0xfff5 |
| 1837 | #define IBUS_braille_dot_6 0xfff6 |
| 1838 | #define IBUS_braille_dot_7 0xfff7 |
| 1839 | #define IBUS_braille_dot_8 0xfff8 |
| 1840 | #define IBUS_braille_dot_9 0xfff9 |
| 1841 | #define IBUS_braille_dot_10 0xfffa |
| 1842 | #define IBUS_braille_blank 0x1002800 |
| 1843 | #define IBUS_braille_dots_1 0x1002801 |
| 1844 | #define IBUS_braille_dots_2 0x1002802 |
| 1845 | #define IBUS_braille_dots_12 0x1002803 |
| 1846 | #define IBUS_braille_dots_3 0x1002804 |
| 1847 | #define IBUS_braille_dots_13 0x1002805 |
| 1848 | #define IBUS_braille_dots_23 0x1002806 |
| 1849 | #define IBUS_braille_dots_123 0x1002807 |
| 1850 | #define IBUS_braille_dots_4 0x1002808 |
| 1851 | #define IBUS_braille_dots_14 0x1002809 |
| 1852 | #define IBUS_braille_dots_24 0x100280a |
| 1853 | #define IBUS_braille_dots_124 0x100280b |
| 1854 | #define IBUS_braille_dots_34 0x100280c |
| 1855 | #define IBUS_braille_dots_134 0x100280d |
| 1856 | #define IBUS_braille_dots_234 0x100280e |
| 1857 | #define IBUS_braille_dots_1234 0x100280f |
| 1858 | #define IBUS_braille_dots_5 0x1002810 |
| 1859 | #define IBUS_braille_dots_15 0x1002811 |
| 1860 | #define IBUS_braille_dots_25 0x1002812 |
| 1861 | #define IBUS_braille_dots_125 0x1002813 |
| 1862 | #define IBUS_braille_dots_35 0x1002814 |
| 1863 | #define IBUS_braille_dots_135 0x1002815 |
| 1864 | #define IBUS_braille_dots_235 0x1002816 |
| 1865 | #define IBUS_braille_dots_1235 0x1002817 |
| 1866 | #define IBUS_braille_dots_45 0x1002818 |
| 1867 | #define IBUS_braille_dots_145 0x1002819 |
| 1868 | #define IBUS_braille_dots_245 0x100281a |
| 1869 | #define IBUS_braille_dots_1245 0x100281b |
| 1870 | #define IBUS_braille_dots_345 0x100281c |
| 1871 | #define IBUS_braille_dots_1345 0x100281d |
| 1872 | #define IBUS_braille_dots_2345 0x100281e |
| 1873 | #define IBUS_braille_dots_12345 0x100281f |
| 1874 | #define IBUS_braille_dots_6 0x1002820 |
| 1875 | #define IBUS_braille_dots_16 0x1002821 |
| 1876 | #define IBUS_braille_dots_26 0x1002822 |
| 1877 | #define IBUS_braille_dots_126 0x1002823 |
| 1878 | #define IBUS_braille_dots_36 0x1002824 |
| 1879 | #define IBUS_braille_dots_136 0x1002825 |
| 1880 | #define IBUS_braille_dots_236 0x1002826 |
| 1881 | #define IBUS_braille_dots_1236 0x1002827 |
| 1882 | #define IBUS_braille_dots_46 0x1002828 |
| 1883 | #define IBUS_braille_dots_146 0x1002829 |
| 1884 | #define IBUS_braille_dots_246 0x100282a |
| 1885 | #define IBUS_braille_dots_1246 0x100282b |
| 1886 | #define IBUS_braille_dots_346 0x100282c |
| 1887 | #define IBUS_braille_dots_1346 0x100282d |
| 1888 | #define IBUS_braille_dots_2346 0x100282e |
| 1889 | #define IBUS_braille_dots_12346 0x100282f |
| 1890 | #define IBUS_braille_dots_56 0x1002830 |
| 1891 | #define IBUS_braille_dots_156 0x1002831 |
| 1892 | #define IBUS_braille_dots_256 0x1002832 |
| 1893 | #define IBUS_braille_dots_1256 0x1002833 |
| 1894 | #define IBUS_braille_dots_356 0x1002834 |
| 1895 | #define IBUS_braille_dots_1356 0x1002835 |
| 1896 | #define IBUS_braille_dots_2356 0x1002836 |
| 1897 | #define IBUS_braille_dots_12356 0x1002837 |
| 1898 | #define IBUS_braille_dots_456 0x1002838 |
| 1899 | #define IBUS_braille_dots_1456 0x1002839 |
| 1900 | #define IBUS_braille_dots_2456 0x100283a |
| 1901 | #define IBUS_braille_dots_12456 0x100283b |
| 1902 | #define IBUS_braille_dots_3456 0x100283c |
| 1903 | #define IBUS_braille_dots_13456 0x100283d |
| 1904 | #define IBUS_braille_dots_23456 0x100283e |
| 1905 | #define IBUS_braille_dots_123456 0x100283f |
| 1906 | #define IBUS_braille_dots_7 0x1002840 |
| 1907 | #define IBUS_braille_dots_17 0x1002841 |
| 1908 | #define IBUS_braille_dots_27 0x1002842 |
| 1909 | #define IBUS_braille_dots_127 0x1002843 |
| 1910 | #define IBUS_braille_dots_37 0x1002844 |
| 1911 | #define IBUS_braille_dots_137 0x1002845 |
| 1912 | #define IBUS_braille_dots_237 0x1002846 |
| 1913 | #define IBUS_braille_dots_1237 0x1002847 |
| 1914 | #define IBUS_braille_dots_47 0x1002848 |
| 1915 | #define IBUS_braille_dots_147 0x1002849 |
| 1916 | #define IBUS_braille_dots_247 0x100284a |
| 1917 | #define IBUS_braille_dots_1247 0x100284b |
| 1918 | #define IBUS_braille_dots_347 0x100284c |
| 1919 | #define IBUS_braille_dots_1347 0x100284d |
| 1920 | #define IBUS_braille_dots_2347 0x100284e |
| 1921 | #define IBUS_braille_dots_12347 0x100284f |
| 1922 | #define IBUS_braille_dots_57 0x1002850 |
| 1923 | #define IBUS_braille_dots_157 0x1002851 |
| 1924 | #define IBUS_braille_dots_257 0x1002852 |
| 1925 | #define IBUS_braille_dots_1257 0x1002853 |
| 1926 | #define IBUS_braille_dots_357 0x1002854 |
| 1927 | #define IBUS_braille_dots_1357 0x1002855 |
| 1928 | #define IBUS_braille_dots_2357 0x1002856 |
| 1929 | #define IBUS_braille_dots_12357 0x1002857 |
| 1930 | #define IBUS_braille_dots_457 0x1002858 |
| 1931 | #define IBUS_braille_dots_1457 0x1002859 |
| 1932 | #define IBUS_braille_dots_2457 0x100285a |
| 1933 | #define IBUS_braille_dots_12457 0x100285b |
| 1934 | #define IBUS_braille_dots_3457 0x100285c |
| 1935 | #define IBUS_braille_dots_13457 0x100285d |
| 1936 | #define IBUS_braille_dots_23457 0x100285e |
| 1937 | #define IBUS_braille_dots_123457 0x100285f |
| 1938 | #define IBUS_braille_dots_67 0x1002860 |
| 1939 | #define IBUS_braille_dots_167 0x1002861 |
| 1940 | #define IBUS_braille_dots_267 0x1002862 |
| 1941 | #define IBUS_braille_dots_1267 0x1002863 |
| 1942 | #define IBUS_braille_dots_367 0x1002864 |
| 1943 | #define IBUS_braille_dots_1367 0x1002865 |
| 1944 | #define IBUS_braille_dots_2367 0x1002866 |
| 1945 | #define IBUS_braille_dots_12367 0x1002867 |
| 1946 | #define IBUS_braille_dots_467 0x1002868 |
| 1947 | #define IBUS_braille_dots_1467 0x1002869 |
| 1948 | #define IBUS_braille_dots_2467 0x100286a |
| 1949 | #define IBUS_braille_dots_12467 0x100286b |
| 1950 | #define IBUS_braille_dots_3467 0x100286c |
| 1951 | #define IBUS_braille_dots_13467 0x100286d |
| 1952 | #define IBUS_braille_dots_23467 0x100286e |
| 1953 | #define IBUS_braille_dots_123467 0x100286f |
| 1954 | #define IBUS_braille_dots_567 0x1002870 |
| 1955 | #define IBUS_braille_dots_1567 0x1002871 |
| 1956 | #define IBUS_braille_dots_2567 0x1002872 |
| 1957 | #define IBUS_braille_dots_12567 0x1002873 |
| 1958 | #define IBUS_braille_dots_3567 0x1002874 |
| 1959 | #define IBUS_braille_dots_13567 0x1002875 |
| 1960 | #define IBUS_braille_dots_23567 0x1002876 |
| 1961 | #define IBUS_braille_dots_123567 0x1002877 |
| 1962 | #define IBUS_braille_dots_4567 0x1002878 |
| 1963 | #define IBUS_braille_dots_14567 0x1002879 |
| 1964 | #define IBUS_braille_dots_24567 0x100287a |
| 1965 | #define IBUS_braille_dots_124567 0x100287b |
| 1966 | #define IBUS_braille_dots_34567 0x100287c |
| 1967 | #define IBUS_braille_dots_134567 0x100287d |
| 1968 | #define IBUS_braille_dots_234567 0x100287e |
| 1969 | #define IBUS_braille_dots_1234567 0x100287f |
| 1970 | #define IBUS_braille_dots_8 0x1002880 |
| 1971 | #define IBUS_braille_dots_18 0x1002881 |
| 1972 | #define IBUS_braille_dots_28 0x1002882 |
| 1973 | #define IBUS_braille_dots_128 0x1002883 |
| 1974 | #define IBUS_braille_dots_38 0x1002884 |
| 1975 | #define IBUS_braille_dots_138 0x1002885 |
| 1976 | #define IBUS_braille_dots_238 0x1002886 |
| 1977 | #define IBUS_braille_dots_1238 0x1002887 |
| 1978 | #define IBUS_braille_dots_48 0x1002888 |
| 1979 | #define IBUS_braille_dots_148 0x1002889 |
| 1980 | #define IBUS_braille_dots_248 0x100288a |
| 1981 | #define IBUS_braille_dots_1248 0x100288b |
| 1982 | #define IBUS_braille_dots_348 0x100288c |
| 1983 | #define IBUS_braille_dots_1348 0x100288d |
| 1984 | #define IBUS_braille_dots_2348 0x100288e |
| 1985 | #define IBUS_braille_dots_12348 0x100288f |
| 1986 | #define IBUS_braille_dots_58 0x1002890 |
| 1987 | #define IBUS_braille_dots_158 0x1002891 |
| 1988 | #define IBUS_braille_dots_258 0x1002892 |
| 1989 | #define IBUS_braille_dots_1258 0x1002893 |
| 1990 | #define IBUS_braille_dots_358 0x1002894 |
| 1991 | #define IBUS_braille_dots_1358 0x1002895 |
| 1992 | #define IBUS_braille_dots_2358 0x1002896 |
| 1993 | #define IBUS_braille_dots_12358 0x1002897 |
| 1994 | #define IBUS_braille_dots_458 0x1002898 |
| 1995 | #define IBUS_braille_dots_1458 0x1002899 |
| 1996 | #define IBUS_braille_dots_2458 0x100289a |
| 1997 | #define IBUS_braille_dots_12458 0x100289b |
| 1998 | #define IBUS_braille_dots_3458 0x100289c |
| 1999 | #define IBUS_braille_dots_13458 0x100289d |
| 2000 | #define IBUS_braille_dots_23458 0x100289e |
| 2001 | #define IBUS_braille_dots_123458 0x100289f |
| 2002 | #define IBUS_braille_dots_68 0x10028a0 |
| 2003 | #define IBUS_braille_dots_168 0x10028a1 |
| 2004 | #define IBUS_braille_dots_268 0x10028a2 |
| 2005 | #define IBUS_braille_dots_1268 0x10028a3 |
| 2006 | #define IBUS_braille_dots_368 0x10028a4 |
| 2007 | #define IBUS_braille_dots_1368 0x10028a5 |
| 2008 | #define IBUS_braille_dots_2368 0x10028a6 |
| 2009 | #define IBUS_braille_dots_12368 0x10028a7 |
| 2010 | #define IBUS_braille_dots_468 0x10028a8 |
| 2011 | #define IBUS_braille_dots_1468 0x10028a9 |
| 2012 | #define IBUS_braille_dots_2468 0x10028aa |
| 2013 | #define IBUS_braille_dots_12468 0x10028ab |
| 2014 | #define IBUS_braille_dots_3468 0x10028ac |
| 2015 | #define IBUS_braille_dots_13468 0x10028ad |
| 2016 | #define IBUS_braille_dots_23468 0x10028ae |
| 2017 | #define IBUS_braille_dots_123468 0x10028af |
| 2018 | #define IBUS_braille_dots_568 0x10028b0 |
| 2019 | #define IBUS_braille_dots_1568 0x10028b1 |
| 2020 | #define IBUS_braille_dots_2568 0x10028b2 |
| 2021 | #define IBUS_braille_dots_12568 0x10028b3 |
| 2022 | #define IBUS_braille_dots_3568 0x10028b4 |
| 2023 | #define IBUS_braille_dots_13568 0x10028b5 |
| 2024 | #define IBUS_braille_dots_23568 0x10028b6 |
| 2025 | #define IBUS_braille_dots_123568 0x10028b7 |
| 2026 | #define IBUS_braille_dots_4568 0x10028b8 |
| 2027 | #define IBUS_braille_dots_14568 0x10028b9 |
| 2028 | #define IBUS_braille_dots_24568 0x10028ba |
| 2029 | #define IBUS_braille_dots_124568 0x10028bb |
| 2030 | #define IBUS_braille_dots_34568 0x10028bc |
| 2031 | #define IBUS_braille_dots_134568 0x10028bd |
| 2032 | #define IBUS_braille_dots_234568 0x10028be |
| 2033 | #define IBUS_braille_dots_1234568 0x10028bf |
| 2034 | #define IBUS_braille_dots_78 0x10028c0 |
| 2035 | #define IBUS_braille_dots_178 0x10028c1 |
| 2036 | #define IBUS_braille_dots_278 0x10028c2 |
| 2037 | #define IBUS_braille_dots_1278 0x10028c3 |
| 2038 | #define IBUS_braille_dots_378 0x10028c4 |
| 2039 | #define IBUS_braille_dots_1378 0x10028c5 |
| 2040 | #define IBUS_braille_dots_2378 0x10028c6 |
| 2041 | #define IBUS_braille_dots_12378 0x10028c7 |
| 2042 | #define IBUS_braille_dots_478 0x10028c8 |
| 2043 | #define IBUS_braille_dots_1478 0x10028c9 |
| 2044 | #define IBUS_braille_dots_2478 0x10028ca |
| 2045 | #define IBUS_braille_dots_12478 0x10028cb |
| 2046 | #define IBUS_braille_dots_3478 0x10028cc |
| 2047 | #define IBUS_braille_dots_13478 0x10028cd |
| 2048 | #define IBUS_braille_dots_23478 0x10028ce |
| 2049 | #define IBUS_braille_dots_123478 0x10028cf |
| 2050 | #define IBUS_braille_dots_578 0x10028d0 |
| 2051 | #define IBUS_braille_dots_1578 0x10028d1 |
| 2052 | #define IBUS_braille_dots_2578 0x10028d2 |
| 2053 | #define IBUS_braille_dots_12578 0x10028d3 |
| 2054 | #define IBUS_braille_dots_3578 0x10028d4 |
| 2055 | #define IBUS_braille_dots_13578 0x10028d5 |
| 2056 | #define IBUS_braille_dots_23578 0x10028d6 |
| 2057 | #define IBUS_braille_dots_123578 0x10028d7 |
| 2058 | #define IBUS_braille_dots_4578 0x10028d8 |
| 2059 | #define IBUS_braille_dots_14578 0x10028d9 |
| 2060 | #define IBUS_braille_dots_24578 0x10028da |
| 2061 | #define IBUS_braille_dots_124578 0x10028db |
| 2062 | #define IBUS_braille_dots_34578 0x10028dc |
| 2063 | #define IBUS_braille_dots_134578 0x10028dd |
| 2064 | #define IBUS_braille_dots_234578 0x10028de |
| 2065 | #define IBUS_braille_dots_1234578 0x10028df |
| 2066 | #define IBUS_braille_dots_678 0x10028e0 |
| 2067 | #define IBUS_braille_dots_1678 0x10028e1 |
| 2068 | #define IBUS_braille_dots_2678 0x10028e2 |
| 2069 | #define IBUS_braille_dots_12678 0x10028e3 |
| 2070 | #define IBUS_braille_dots_3678 0x10028e4 |
| 2071 | #define IBUS_braille_dots_13678 0x10028e5 |
| 2072 | #define IBUS_braille_dots_23678 0x10028e6 |
| 2073 | #define IBUS_braille_dots_123678 0x10028e7 |
| 2074 | #define IBUS_braille_dots_4678 0x10028e8 |
| 2075 | #define IBUS_braille_dots_14678 0x10028e9 |
| 2076 | #define IBUS_braille_dots_24678 0x10028ea |
| 2077 | #define IBUS_braille_dots_124678 0x10028eb |
| 2078 | #define IBUS_braille_dots_34678 0x10028ec |
| 2079 | #define IBUS_braille_dots_134678 0x10028ed |
| 2080 | #define IBUS_braille_dots_234678 0x10028ee |
| 2081 | #define IBUS_braille_dots_1234678 0x10028ef |
| 2082 | #define IBUS_braille_dots_5678 0x10028f0 |
| 2083 | #define IBUS_braille_dots_15678 0x10028f1 |
| 2084 | #define IBUS_braille_dots_25678 0x10028f2 |
| 2085 | #define IBUS_braille_dots_125678 0x10028f3 |
| 2086 | #define IBUS_braille_dots_35678 0x10028f4 |
| 2087 | #define IBUS_braille_dots_135678 0x10028f5 |
| 2088 | #define IBUS_braille_dots_235678 0x10028f6 |
| 2089 | #define IBUS_braille_dots_1235678 0x10028f7 |
| 2090 | #define IBUS_braille_dots_45678 0x10028f8 |
| 2091 | #define IBUS_braille_dots_145678 0x10028f9 |
| 2092 | #define IBUS_braille_dots_245678 0x10028fa |
| 2093 | #define IBUS_braille_dots_1245678 0x10028fb |
| 2094 | #define IBUS_braille_dots_345678 0x10028fc |
| 2095 | #define IBUS_braille_dots_1345678 0x10028fd |
| 2096 | #define IBUS_braille_dots_2345678 0x10028fe |
| 2097 | #define IBUS_braille_dots_12345678 0x10028ff |
| 2098 | |
| 2099 | #endif /* __IBUS_KEYSYMS_COMPAT_H__ */ |
| 2100 | |