ibus-qt-1.3.3-Source/CMakeLists.txt000664 001750 001750 00000006416 12325431066 020643 0ustar00tfujiwartfujiwar000000 000000 cmake_minimum_required(VERSION 2.4) if(COMMAND cmake_policy) cmake_policy(SET CMP0003 NEW) endif(COMMAND cmake_policy) set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") # ====== # Project information project(ibus-qt) set(AUTHORS "Peng Huang") set(MAINTAINER "Peng Huang ") set(VERSION_MAJOR "1") set(VERSION_MINOR "3") set(VERSION_PATCH "3") set(VERSION_SNAPDATE "") set(LIB_VERSION "1.3.0") set(LIB_SOVERSION "1") # ====== # CPack configure set(CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR}) set(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR}) if(NOT VERSION_SNAPDATE) set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH}) else(NOT VERSION_SNAPDATE) set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH}.${VERSION_SNAPDATE}) endif(NOT VERSION_SNAPDATE) set(CPACK_SET_DESTDIR "ON") set(CPACK_INSTALL_PREFIX "/usr") set(CPACK_GENERATOR "TGZ") set(CPACK_SOURCE_GENERATOR "TGZ") set(CPACK_CMAKE_GENERATOR "Unix Makefiles") set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/COPYING) set(CPACK_SOURCE_IGNORE_FILES "/\\\\.git/" "\\\\.gitignore$" "/CMakeFiles/" "/_CPack_Packages/" "cmake_install.cmake" "CMakeCache.txt$" "install_manifest.txt$" "Makefile$" "Source\\\\.tar\\\\.gz$" "Linux\\\\.tar\\\\.gz$" "moc_.*\\\\.cxx$" "\\\\.so$" "\\\\.so\\\\.*" "ibus-test$" "/rpm/" "ibus-qt\\\\.spec$" "CPackSourceConfig\\\\.cmake$" "CPackConfig\\\\.cmake$" "docs/Doxyfile$" "docs/man" "docs/html" "build/" ) include(CPack) configure_file(ibus-qt.spec.in ibus-qt.spec) configure_file(docs/Doxyfile.in docs/Doxyfile) # ====== # Requires # check X11 find_package(X11 REQUIRED) # check qt find_package(Qt4 4.5 COMPONENTS QtCore QtGui QtDBus QtXml REQUIRED) include(${QT_USE_FILE}) # check dbus find_package(PkgConfig REQUIRED) find_package(ICU REQUIRED) pkg_check_modules(DBUS REQUIRED dbus-1) pkg_check_modules(IBUS REQUIRED ibus-1.0>=1.3.7) # check doxygen find_package(Doxygen REQUIRED) # ===== # Define variables if(NOT LIBDIR) if( $ENV{MACHTYPE} MATCHES "64") set(LIBDIR lib64) else() set(LIBDIR lib) endif() endif(NOT LIBDIR) if(NOT MANDIR) set(MANDIR "share/man") endif(NOT MANDIR) # ====== # sub dirs add_subdirectory(src) add_subdirectory(qtim) add_subdirectory(test) add_subdirectory(docs) # ====== # targets add_custom_target(version echo ${CPACK_PACKAGE_VERSION}) add_custom_target(gitclean git clean -f -d -X) add_custom_target(rpm COMMAND make package_source COMMAND rpmbuild -bb --define "_sourcedir ${CMAKE_CURRENT_BINARY_DIR}" --define "_builddir ${CMAKE_CURRENT_BINARY_DIR}/rpm" --define "_srcrpmdir ${CMAKE_CURRENT_BINARY_DIR}/rpm" --define "_rpmdir ${CMAKE_CURRENT_BINARY_DIR}/rpm" --define "_specdir ${CMAKE_CURRENT_BINARY_DIR}/rpm" ibus-qt.spec SOURCES ibus-qt.spec ) add_custom_target(srpm COMMAND make package_source COMMAND rpmbuild -bs --define "_sourcedir ${CMAKE_CURRENT_BINARY_DIR}" --define "_builddir ${CMAKE_CURRENT_BINARY_DIR}/rpm" --define "_srcrpmdir ${CMAKE_CURRENT_BINARY_DIR}/rpm" --define "_rpmdir ${CMAKE_CURRENT_BINARY_DIR}/rpm" --define "_specdir ${CMAKE_CURRENT_BINARY_DIR}/rpm" ibus-qt.spec SOURCES ibus-qt.spec ) ibus-qt-1.3.3-Source/qtim/ibus-plugin.cpp000664 001750 001750 00000005334 12325431066 022015 0ustar00tfujiwartfujiwar000000 000000 /* vim:set et ts=4 sts=4 : */ /* * ibus - The Input Bus * * Copyright (c) 2007-2008 Huang Peng * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA */ #include #include #include "ibus-input-context.h" #define IBUS_IDENTIFIER_NAME "ibus" using namespace IBus; /* The class Definition */ class IBusPlugin: public QInputContextPlugin { private: /** * The language list for SCIM. */ static QStringList ibus_languages; public: IBusPlugin (QObject *parent = 0); ~IBusPlugin (); QStringList keys () const; QStringList languages (const QString &key); QString description (const QString &key); QInputContext *create (const QString &key); QString displayName (const QString &key); private: BusPointer m_bus; }; /* Implementations */ QStringList IBusPlugin::ibus_languages; IBusPlugin::IBusPlugin (QObject *parent) :QInputContextPlugin (parent) { } IBusPlugin::~IBusPlugin () { } QStringList IBusPlugin::keys () const { QStringList identifiers; identifiers.push_back (IBUS_IDENTIFIER_NAME); return identifiers; } QStringList IBusPlugin::languages (const QString & key) { if (key.toLower () != IBUS_IDENTIFIER_NAME) { return QStringList (); } if (ibus_languages.empty ()) { ibus_languages.push_back ("zh"); ibus_languages.push_back ("ja"); ibus_languages.push_back ("ko"); } return ibus_languages; } QString IBusPlugin::description (const QString &key) { if (key.toLower () != IBUS_IDENTIFIER_NAME) { return QString (""); } return QString::fromUtf8 ("Qt immodule plugin for IBus"); } QInputContext * IBusPlugin::create (const QString &key) { if (key.toLower () != IBUS_IDENTIFIER_NAME) { return NULL; } if (m_bus.isNull ()) { m_bus = new Bus (); } return static_cast (new IBusInputContext (m_bus)); } QString IBusPlugin::displayName (const QString &key) { return key; } Q_EXPORT_PLUGIN2 (IBusPlugin, IBusPlugin) ibus-qt-1.3.3-Source/qtim/CMakeLists.txt000664 001750 001750 00000001536 12325431066 021613 0ustar00tfujiwartfujiwar000000 000000 include_directories( ${QT_QTCORE_INCLUDE_DIR} ${QT_QTDBUS_INCLUDE_DIR} ${X11_INCLUDE_DIRS} ${DBUS_INCLUDE_DIRS} ${IBUS_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/../src ) link_directories( ${X11_LIBRARY_DIRS} ${DBUS_LIBRARY_DIRS} ${ICU_LIBRARY_DIRS} ) set( qtim_ibus_SRCS ibus-input-context.cpp ibuskeyuni.cpp ibus-plugin.cpp ) set( qtim_ibus_MOC_HDRS ibus-input-context.h ) QT4_AUTOMOC(${qtim_ibus_SRCS}) QT4_WRAP_CPP( qtim_ibus_MOC_SRCS ${qtim_ibus_MOC_HDRS} ) add_library( qtim-ibus MODULE ${qtim_ibus_SRCS} ${qtim_ibus_MOC_SRCS} ) target_link_libraries( qtim-ibus debug ${QT_QTGUI_LIBRARY_DEBUG} optimized ${QT_QTGUI_LIBRARY_RELEASE} ${ICU_LIBRARIES} ibus-qt ) install( TARGETS qtim-ibus LIBRARY DESTINATION ${QT_PLUGINS_DIR}/inputmethods) ibus-qt-1.3.3-Source/qtim/ibus-input-context.h000664 001750 001750 00000005200 12325431066 022775 0ustar00tfujiwartfujiwar000000 000000 /* vim:set noet ts=4: */ /* * ibus - The Input Bus * * Copyright (c) 2007-2014 Huang Peng * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA */ #ifndef __IBUS_INPUT_CONTEXT_H_ #define __IBUS_INPUT_CONTEXT_H_ #include #include #include #define IBUS_MAX_COMPOSE_LEN 7 typedef struct _IBusComposeTableCompact IBusComposeTableCompact; using namespace IBus; class IBusInputContext : public QInputContext { Q_OBJECT public: IBusInputContext (const BusPointer &bus); ~IBusInputContext (); public: bool filterEvent (const QEvent *event); QFont font (void) const; QString identifierName (void); bool isComposing (void) const; QString language (void); void mouseHandler (int x, QMouseEvent *event); void reset (void); void update (void); void setFocusWidget (QWidget *widget ); void widgetDestroyed (QWidget *widget); #ifdef Q_WS_X11 bool x11FilterEvent (QWidget *keywidget, XEvent *event); #endif private Q_SLOTS: void slotCommitText (const TextPointer &text); void slotUpdatePreeditText (const TextPointer &text, uint cursor_pos, bool visible); void slotShowPreeditText (void); void slotHidePreeditText (void); void slotConnected (void); void slotDisconnected (void); void slotDeleteSurroundingText (int offset, uint nchars); void slotRequireSurroundingText (void); private: void createInputContext (void); void deleteInputContext (void); void displayPreeditText (const TextPointer &text, uint cursor_pos, bool visible); bool processCompose (uint keyval, uint state); bool checkCompactTable (const IBusComposeTableCompact *table); bool checkAlgorithmically (void); private: BusPointer m_bus; InputContextPointer m_context; TextPointer m_preedit; bool m_preedit_visible; uint m_preedit_cursor_pos; bool m_has_focus; bool m_password_mode; uint m_caps; uint m_compose_buffer[IBUS_MAX_COMPOSE_LEN + 1]; int m_n_compose; bool m_needs_surrounding_text; }; #endif //__IBUS_INPUT_CONTEXT_H_ ibus-qt-1.3.3-Source/qtim/ibuskeyuni.cpp000664 001750 001750 00000402411 12325431066 021743 0ustar00tfujiwartfujiwar000000 000000 /* GDK - The GIMP Drawing Kit * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /* * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS * file for a list of people on the GTK+ Team. See the ChangeLog * files for a list of changes. These files are distributed with * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ #include /* Thanks to Markus G. Kuhn for the ksysym<->Unicode * mapping functions, from the xterm sources. */ /* These tables could be compressed by contiguous ranges, but the benefit of doing so * is smallish. It would save about ~1000 bytes total. */ static const struct { unsigned short keysym; unsigned short ucs; } ibus_keysym_to_unicode_tab[] = { { 0x01a1, 0x0104 }, /* Aogonek Ą LATIN CAPITAL LETTER A WITH OGONEK */ { 0x01a2, 0x02d8 }, /* breve ˘ BREVE */ { 0x01a3, 0x0141 }, /* Lstroke Ł LATIN CAPITAL LETTER L WITH STROKE */ { 0x01a5, 0x013d }, /* Lcaron Ľ LATIN CAPITAL LETTER L WITH CARON */ { 0x01a6, 0x015a }, /* Sacute Ś LATIN CAPITAL LETTER S WITH ACUTE */ { 0x01a9, 0x0160 }, /* Scaron Š LATIN CAPITAL LETTER S WITH CARON */ { 0x01aa, 0x015e }, /* Scedilla Ş LATIN CAPITAL LETTER S WITH CEDILLA */ { 0x01ab, 0x0164 }, /* Tcaron Ť LATIN CAPITAL LETTER T WITH CARON */ { 0x01ac, 0x0179 }, /* Zacute Ź LATIN CAPITAL LETTER Z WITH ACUTE */ { 0x01ae, 0x017d }, /* Zcaron Ž LATIN CAPITAL LETTER Z WITH CARON */ { 0x01af, 0x017b }, /* Zabovedot Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE */ { 0x01b1, 0x0105 }, /* aogonek ą LATIN SMALL LETTER A WITH OGONEK */ { 0x01b2, 0x02db }, /* ogonek ˛ OGONEK */ { 0x01b3, 0x0142 }, /* lstroke ł LATIN SMALL LETTER L WITH STROKE */ { 0x01b5, 0x013e }, /* lcaron ľ LATIN SMALL LETTER L WITH CARON */ { 0x01b6, 0x015b }, /* sacute ś LATIN SMALL LETTER S WITH ACUTE */ { 0x01b7, 0x02c7 }, /* caron ˇ CARON */ { 0x01b9, 0x0161 }, /* scaron š LATIN SMALL LETTER S WITH CARON */ { 0x01ba, 0x015f }, /* scedilla ş LATIN SMALL LETTER S WITH CEDILLA */ { 0x01bb, 0x0165 }, /* tcaron ť LATIN SMALL LETTER T WITH CARON */ { 0x01bc, 0x017a }, /* zacute ź LATIN SMALL LETTER Z WITH ACUTE */ { 0x01bd, 0x02dd }, /* doubleacute ˝ DOUBLE ACUTE ACCENT */ { 0x01be, 0x017e }, /* zcaron ž LATIN SMALL LETTER Z WITH CARON */ { 0x01bf, 0x017c }, /* zabovedot ż LATIN SMALL LETTER Z WITH DOT ABOVE */ { 0x01c0, 0x0154 }, /* Racute Ŕ LATIN CAPITAL LETTER R WITH ACUTE */ { 0x01c3, 0x0102 }, /* Abreve Ă LATIN CAPITAL LETTER A WITH BREVE */ { 0x01c5, 0x0139 }, /* Lacute Ĺ LATIN CAPITAL LETTER L WITH ACUTE */ { 0x01c6, 0x0106 }, /* Cacute Ć LATIN CAPITAL LETTER C WITH ACUTE */ { 0x01c8, 0x010c }, /* Ccaron Č LATIN CAPITAL LETTER C WITH CARON */ { 0x01ca, 0x0118 }, /* Eogonek Ę LATIN CAPITAL LETTER E WITH OGONEK */ { 0x01cc, 0x011a }, /* Ecaron Ě LATIN CAPITAL LETTER E WITH CARON */ { 0x01cf, 0x010e }, /* Dcaron Ď LATIN CAPITAL LETTER D WITH CARON */ { 0x01d0, 0x0110 }, /* Dstroke Đ LATIN CAPITAL LETTER D WITH STROKE */ { 0x01d1, 0x0143 }, /* Nacute Ń LATIN CAPITAL LETTER N WITH ACUTE */ { 0x01d2, 0x0147 }, /* Ncaron Ň LATIN CAPITAL LETTER N WITH CARON */ { 0x01d5, 0x0150 }, /* Odoubleacute Ő LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */ { 0x01d8, 0x0158 }, /* Rcaron Ř LATIN CAPITAL LETTER R WITH CARON */ { 0x01d9, 0x016e }, /* Uring Ů LATIN CAPITAL LETTER U WITH RING ABOVE */ { 0x01db, 0x0170 }, /* Udoubleacute Ű LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */ { 0x01de, 0x0162 }, /* Tcedilla Ţ LATIN CAPITAL LETTER T WITH CEDILLA */ { 0x01e0, 0x0155 }, /* racute ŕ LATIN SMALL LETTER R WITH ACUTE */ { 0x01e3, 0x0103 }, /* abreve ă LATIN SMALL LETTER A WITH BREVE */ { 0x01e5, 0x013a }, /* lacute ĺ LATIN SMALL LETTER L WITH ACUTE */ { 0x01e6, 0x0107 }, /* cacute ć LATIN SMALL LETTER C WITH ACUTE */ { 0x01e8, 0x010d }, /* ccaron č LATIN SMALL LETTER C WITH CARON */ { 0x01ea, 0x0119 }, /* eogonek ę LATIN SMALL LETTER E WITH OGONEK */ { 0x01ec, 0x011b }, /* ecaron ě LATIN SMALL LETTER E WITH CARON */ { 0x01ef, 0x010f }, /* dcaron ď LATIN SMALL LETTER D WITH CARON */ { 0x01f0, 0x0111 }, /* dstroke đ LATIN SMALL LETTER D WITH STROKE */ { 0x01f1, 0x0144 }, /* nacute ń LATIN SMALL LETTER N WITH ACUTE */ { 0x01f2, 0x0148 }, /* ncaron ň LATIN SMALL LETTER N WITH CARON */ { 0x01f5, 0x0151 }, /* odoubleacute ő LATIN SMALL LETTER O WITH DOUBLE ACUTE */ { 0x01f8, 0x0159 }, /* rcaron ř LATIN SMALL LETTER R WITH CARON */ { 0x01f9, 0x016f }, /* uring ů LATIN SMALL LETTER U WITH RING ABOVE */ { 0x01fb, 0x0171 }, /* udoubleacute ű LATIN SMALL LETTER U WITH DOUBLE ACUTE */ { 0x01fe, 0x0163 }, /* tcedilla ţ LATIN SMALL LETTER T WITH CEDILLA */ { 0x01ff, 0x02d9 }, /* abovedot ˙ DOT ABOVE */ { 0x02a1, 0x0126 }, /* Hstroke Ħ LATIN CAPITAL LETTER H WITH STROKE */ { 0x02a6, 0x0124 }, /* Hcircumflex Ĥ LATIN CAPITAL LETTER H WITH CIRCUMFLEX */ { 0x02a9, 0x0130 }, /* Iabovedot İ LATIN CAPITAL LETTER I WITH DOT ABOVE */ { 0x02ab, 0x011e }, /* Gbreve Ğ LATIN CAPITAL LETTER G WITH BREVE */ { 0x02ac, 0x0134 }, /* Jcircumflex Ĵ LATIN CAPITAL LETTER J WITH CIRCUMFLEX */ { 0x02b1, 0x0127 }, /* hstroke ħ LATIN SMALL LETTER H WITH STROKE */ { 0x02b6, 0x0125 }, /* hcircumflex ĥ LATIN SMALL LETTER H WITH CIRCUMFLEX */ { 0x02b9, 0x0131 }, /* idotless ı LATIN SMALL LETTER DOTLESS I */ { 0x02bb, 0x011f }, /* gbreve ğ LATIN SMALL LETTER G WITH BREVE */ { 0x02bc, 0x0135 }, /* jcircumflex ĵ LATIN SMALL LETTER J WITH CIRCUMFLEX */ { 0x02c5, 0x010a }, /* Cabovedot Ċ LATIN CAPITAL LETTER C WITH DOT ABOVE */ { 0x02c6, 0x0108 }, /* Ccircumflex Ĉ LATIN CAPITAL LETTER C WITH CIRCUMFLEX */ { 0x02d5, 0x0120 }, /* Gabovedot Ġ LATIN CAPITAL LETTER G WITH DOT ABOVE */ { 0x02d8, 0x011c }, /* Gcircumflex Ĝ LATIN CAPITAL LETTER G WITH CIRCUMFLEX */ { 0x02dd, 0x016c }, /* Ubreve Ŭ LATIN CAPITAL LETTER U WITH BREVE */ { 0x02de, 0x015c }, /* Scircumflex Ŝ LATIN CAPITAL LETTER S WITH CIRCUMFLEX */ { 0x02e5, 0x010b }, /* cabovedot ċ LATIN SMALL LETTER C WITH DOT ABOVE */ { 0x02e6, 0x0109 }, /* ccircumflex ĉ LATIN SMALL LETTER C WITH CIRCUMFLEX */ { 0x02f5, 0x0121 }, /* gabovedot ġ LATIN SMALL LETTER G WITH DOT ABOVE */ { 0x02f8, 0x011d }, /* gcircumflex ĝ LATIN SMALL LETTER G WITH CIRCUMFLEX */ { 0x02fd, 0x016d }, /* ubreve ŭ LATIN SMALL LETTER U WITH BREVE */ { 0x02fe, 0x015d }, /* scircumflex ŝ LATIN SMALL LETTER S WITH CIRCUMFLEX */ { 0x03a2, 0x0138 }, /* kra ĸ LATIN SMALL LETTER KRA */ { 0x03a3, 0x0156 }, /* Rcedilla Ŗ LATIN CAPITAL LETTER R WITH CEDILLA */ { 0x03a5, 0x0128 }, /* Itilde Ĩ LATIN CAPITAL LETTER I WITH TILDE */ { 0x03a6, 0x013b }, /* Lcedilla Ļ LATIN CAPITAL LETTER L WITH CEDILLA */ { 0x03aa, 0x0112 }, /* Emacron Ē LATIN CAPITAL LETTER E WITH MACRON */ { 0x03ab, 0x0122 }, /* Gcedilla Ģ LATIN CAPITAL LETTER G WITH CEDILLA */ { 0x03ac, 0x0166 }, /* Tslash Ŧ LATIN CAPITAL LETTER T WITH STROKE */ { 0x03b3, 0x0157 }, /* rcedilla ŗ LATIN SMALL LETTER R WITH CEDILLA */ { 0x03b5, 0x0129 }, /* itilde ĩ LATIN SMALL LETTER I WITH TILDE */ { 0x03b6, 0x013c }, /* lcedilla ļ LATIN SMALL LETTER L WITH CEDILLA */ { 0x03ba, 0x0113 }, /* emacron ē LATIN SMALL LETTER E WITH MACRON */ { 0x03bb, 0x0123 }, /* gcedilla ģ LATIN SMALL LETTER G WITH CEDILLA */ { 0x03bc, 0x0167 }, /* tslash ŧ LATIN SMALL LETTER T WITH STROKE */ { 0x03bd, 0x014a }, /* ENG Ŋ LATIN CAPITAL LETTER ENG */ { 0x03bf, 0x014b }, /* eng ŋ LATIN SMALL LETTER ENG */ { 0x03c0, 0x0100 }, /* Amacron Ā LATIN CAPITAL LETTER A WITH MACRON */ { 0x03c7, 0x012e }, /* Iogonek Į LATIN CAPITAL LETTER I WITH OGONEK */ { 0x03cc, 0x0116 }, /* Eabovedot Ė LATIN CAPITAL LETTER E WITH DOT ABOVE */ { 0x03cf, 0x012a }, /* Imacron Ī LATIN CAPITAL LETTER I WITH MACRON */ { 0x03d1, 0x0145 }, /* Ncedilla Ņ LATIN CAPITAL LETTER N WITH CEDILLA */ { 0x03d2, 0x014c }, /* Omacron Ō LATIN CAPITAL LETTER O WITH MACRON */ { 0x03d3, 0x0136 }, /* Kcedilla Ķ LATIN CAPITAL LETTER K WITH CEDILLA */ { 0x03d9, 0x0172 }, /* Uogonek Ų LATIN CAPITAL LETTER U WITH OGONEK */ { 0x03dd, 0x0168 }, /* Utilde Ũ LATIN CAPITAL LETTER U WITH TILDE */ { 0x03de, 0x016a }, /* Umacron Ū LATIN CAPITAL LETTER U WITH MACRON */ { 0x03e0, 0x0101 }, /* amacron ā LATIN SMALL LETTER A WITH MACRON */ { 0x03e7, 0x012f }, /* iogonek į LATIN SMALL LETTER I WITH OGONEK */ { 0x03ec, 0x0117 }, /* eabovedot ė LATIN SMALL LETTER E WITH DOT ABOVE */ { 0x03ef, 0x012b }, /* imacron ī LATIN SMALL LETTER I WITH MACRON */ { 0x03f1, 0x0146 }, /* ncedilla ņ LATIN SMALL LETTER N WITH CEDILLA */ { 0x03f2, 0x014d }, /* omacron ō LATIN SMALL LETTER O WITH MACRON */ { 0x03f3, 0x0137 }, /* kcedilla ķ LATIN SMALL LETTER K WITH CEDILLA */ { 0x03f9, 0x0173 }, /* uogonek ų LATIN SMALL LETTER U WITH OGONEK */ { 0x03fd, 0x0169 }, /* utilde ũ LATIN SMALL LETTER U WITH TILDE */ { 0x03fe, 0x016b }, /* umacron ū LATIN SMALL LETTER U WITH MACRON */ { 0x047e, 0x203e }, /* overline ‾ OVERLINE */ { 0x04a1, 0x3002 }, /* kana_fullstop 。 IDEOGRAPHIC FULL STOP */ { 0x04a2, 0x300c }, /* kana_openingbracket 「 LEFT CORNER BRACKET */ { 0x04a3, 0x300d }, /* kana_closingbracket 」 RIGHT CORNER BRACKET */ { 0x04a4, 0x3001 }, /* kana_comma 、 IDEOGRAPHIC COMMA */ { 0x04a5, 0x30fb }, /* kana_conjunctive ・ KATAKANA MIDDLE DOT */ { 0x04a6, 0x30f2 }, /* kana_WO ヲ KATAKANA LETTER WO */ { 0x04a7, 0x30a1 }, /* kana_a ァ KATAKANA LETTER SMALL A */ { 0x04a8, 0x30a3 }, /* kana_i ィ KATAKANA LETTER SMALL I */ { 0x04a9, 0x30a5 }, /* kana_u ゥ KATAKANA LETTER SMALL U */ { 0x04aa, 0x30a7 }, /* kana_e ェ KATAKANA LETTER SMALL E */ { 0x04ab, 0x30a9 }, /* kana_o ォ KATAKANA LETTER SMALL O */ { 0x04ac, 0x30e3 }, /* kana_ya ャ KATAKANA LETTER SMALL YA */ { 0x04ad, 0x30e5 }, /* kana_yu ュ KATAKANA LETTER SMALL YU */ { 0x04ae, 0x30e7 }, /* kana_yo ョ KATAKANA LETTER SMALL YO */ { 0x04af, 0x30c3 }, /* kana_tsu ッ KATAKANA LETTER SMALL TU */ { 0x04b0, 0x30fc }, /* prolongedsound ー KATAKANA-HIRAGANA PROLONGED SOUND MARK */ { 0x04b1, 0x30a2 }, /* kana_A ア KATAKANA LETTER A */ { 0x04b2, 0x30a4 }, /* kana_I イ KATAKANA LETTER I */ { 0x04b3, 0x30a6 }, /* kana_U ウ KATAKANA LETTER U */ { 0x04b4, 0x30a8 }, /* kana_E エ KATAKANA LETTER E */ { 0x04b5, 0x30aa }, /* kana_O オ KATAKANA LETTER O */ { 0x04b6, 0x30ab }, /* kana_KA カ KATAKANA LETTER KA */ { 0x04b7, 0x30ad }, /* kana_KI キ KATAKANA LETTER KI */ { 0x04b8, 0x30af }, /* kana_KU ク KATAKANA LETTER KU */ { 0x04b9, 0x30b1 }, /* kana_KE ケ KATAKANA LETTER KE */ { 0x04ba, 0x30b3 }, /* kana_KO コ KATAKANA LETTER KO */ { 0x04bb, 0x30b5 }, /* kana_SA サ KATAKANA LETTER SA */ { 0x04bc, 0x30b7 }, /* kana_SHI シ KATAKANA LETTER SI */ { 0x04bd, 0x30b9 }, /* kana_SU ス KATAKANA LETTER SU */ { 0x04be, 0x30bb }, /* kana_SE セ KATAKANA LETTER SE */ { 0x04bf, 0x30bd }, /* kana_SO ソ KATAKANA LETTER SO */ { 0x04c0, 0x30bf }, /* kana_TA タ KATAKANA LETTER TA */ { 0x04c1, 0x30c1 }, /* kana_CHI チ KATAKANA LETTER TI */ { 0x04c2, 0x30c4 }, /* kana_TSU ツ KATAKANA LETTER TU */ { 0x04c3, 0x30c6 }, /* kana_TE テ KATAKANA LETTER TE */ { 0x04c4, 0x30c8 }, /* kana_TO ト KATAKANA LETTER TO */ { 0x04c5, 0x30ca }, /* kana_NA ナ KATAKANA LETTER NA */ { 0x04c6, 0x30cb }, /* kana_NI ニ KATAKANA LETTER NI */ { 0x04c7, 0x30cc }, /* kana_NU ヌ KATAKANA LETTER NU */ { 0x04c8, 0x30cd }, /* kana_NE ネ KATAKANA LETTER NE */ { 0x04c9, 0x30ce }, /* kana_NO ノ KATAKANA LETTER NO */ { 0x04ca, 0x30cf }, /* kana_HA ハ KATAKANA LETTER HA */ { 0x04cb, 0x30d2 }, /* kana_HI ヒ KATAKANA LETTER HI */ { 0x04cc, 0x30d5 }, /* kana_FU フ KATAKANA LETTER HU */ { 0x04cd, 0x30d8 }, /* kana_HE ヘ KATAKANA LETTER HE */ { 0x04ce, 0x30db }, /* kana_HO ホ KATAKANA LETTER HO */ { 0x04cf, 0x30de }, /* kana_MA マ KATAKANA LETTER MA */ { 0x04d0, 0x30df }, /* kana_MI ミ KATAKANA LETTER MI */ { 0x04d1, 0x30e0 }, /* kana_MU ム KATAKANA LETTER MU */ { 0x04d2, 0x30e1 }, /* kana_ME メ KATAKANA LETTER ME */ { 0x04d3, 0x30e2 }, /* kana_MO モ KATAKANA LETTER MO */ { 0x04d4, 0x30e4 }, /* kana_YA ヤ KATAKANA LETTER YA */ { 0x04d5, 0x30e6 }, /* kana_YU ユ KATAKANA LETTER YU */ { 0x04d6, 0x30e8 }, /* kana_YO ヨ KATAKANA LETTER YO */ { 0x04d7, 0x30e9 }, /* kana_RA ラ KATAKANA LETTER RA */ { 0x04d8, 0x30ea }, /* kana_RI リ KATAKANA LETTER RI */ { 0x04d9, 0x30eb }, /* kana_RU ル KATAKANA LETTER RU */ { 0x04da, 0x30ec }, /* kana_RE レ KATAKANA LETTER RE */ { 0x04db, 0x30ed }, /* kana_RO ロ KATAKANA LETTER RO */ { 0x04dc, 0x30ef }, /* kana_WA ワ KATAKANA LETTER WA */ { 0x04dd, 0x30f3 }, /* kana_N ン KATAKANA LETTER N */ { 0x04de, 0x309b }, /* voicedsound ゛ KATAKANA-HIRAGANA VOICED SOUND MARK */ { 0x04df, 0x309c }, /* semivoicedsound ゜ KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */ { 0x05ac, 0x060c }, /* Arabic_comma ، ARABIC COMMA */ { 0x05bb, 0x061b }, /* Arabic_semicolon ؛ ARABIC SEMICOLON */ { 0x05bf, 0x061f }, /* Arabic_question_mark ؟ ARABIC QUESTION MARK */ { 0x05c1, 0x0621 }, /* Arabic_hamza ء ARABIC LETTER HAMZA */ { 0x05c2, 0x0622 }, /* Arabic_maddaonalef آ ARABIC LETTER ALEF WITH MADDA ABOVE */ { 0x05c3, 0x0623 }, /* Arabic_hamzaonalef أ ARABIC LETTER ALEF WITH HAMZA ABOVE */ { 0x05c4, 0x0624 }, /* Arabic_hamzaonwaw ؤ ARABIC LETTER WAW WITH HAMZA ABOVE */ { 0x05c5, 0x0625 }, /* Arabic_hamzaunderalef إ ARABIC LETTER ALEF WITH HAMZA BELOW */ { 0x05c6, 0x0626 }, /* Arabic_hamzaonyeh ئ ARABIC LETTER YEH WITH HAMZA ABOVE */ { 0x05c7, 0x0627 }, /* Arabic_alef ا ARABIC LETTER ALEF */ { 0x05c8, 0x0628 }, /* Arabic_beh ب ARABIC LETTER BEH */ { 0x05c9, 0x0629 }, /* Arabic_tehmarbuta ة ARABIC LETTER TEH MARBUTA */ { 0x05ca, 0x062a }, /* Arabic_teh ت ARABIC LETTER TEH */ { 0x05cb, 0x062b }, /* Arabic_theh ث ARABIC LETTER THEH */ { 0x05cc, 0x062c }, /* Arabic_jeem ج ARABIC LETTER JEEM */ { 0x05cd, 0x062d }, /* Arabic_hah ح ARABIC LETTER HAH */ { 0x05ce, 0x062e }, /* Arabic_khah خ ARABIC LETTER KHAH */ { 0x05cf, 0x062f }, /* Arabic_dal د ARABIC LETTER DAL */ { 0x05d0, 0x0630 }, /* Arabic_thal ذ ARABIC LETTER THAL */ { 0x05d1, 0x0631 }, /* Arabic_ra ر ARABIC LETTER REH */ { 0x05d2, 0x0632 }, /* Arabic_zain ز ARABIC LETTER ZAIN */ { 0x05d3, 0x0633 }, /* Arabic_seen س ARABIC LETTER SEEN */ { 0x05d4, 0x0634 }, /* Arabic_sheen ش ARABIC LETTER SHEEN */ { 0x05d5, 0x0635 }, /* Arabic_sad ص ARABIC LETTER SAD */ { 0x05d6, 0x0636 }, /* Arabic_dad ض ARABIC LETTER DAD */ { 0x05d7, 0x0637 }, /* Arabic_tah ط ARABIC LETTER TAH */ { 0x05d8, 0x0638 }, /* Arabic_zah ظ ARABIC LETTER ZAH */ { 0x05d9, 0x0639 }, /* Arabic_ain ع ARABIC LETTER AIN */ { 0x05da, 0x063a }, /* Arabic_ghain غ ARABIC LETTER GHAIN */ { 0x05e0, 0x0640 }, /* Arabic_tatweel ـ ARABIC TATWEEL */ { 0x05e1, 0x0641 }, /* Arabic_feh ف ARABIC LETTER FEH */ { 0x05e2, 0x0642 }, /* Arabic_qaf ق ARABIC LETTER QAF */ { 0x05e3, 0x0643 }, /* Arabic_kaf ك ARABIC LETTER KAF */ { 0x05e4, 0x0644 }, /* Arabic_lam ل ARABIC LETTER LAM */ { 0x05e5, 0x0645 }, /* Arabic_meem م ARABIC LETTER MEEM */ { 0x05e6, 0x0646 }, /* Arabic_noon ن ARABIC LETTER NOON */ { 0x05e7, 0x0647 }, /* Arabic_ha ه ARABIC LETTER HEH */ { 0x05e8, 0x0648 }, /* Arabic_waw و ARABIC LETTER WAW */ { 0x05e9, 0x0649 }, /* Arabic_alefmaksura ى ARABIC LETTER ALEF MAKSURA */ { 0x05ea, 0x064a }, /* Arabic_yeh ي ARABIC LETTER YEH */ { 0x05eb, 0x064b }, /* Arabic_fathatan ً ARABIC FATHATAN */ { 0x05ec, 0x064c }, /* Arabic_dammatan ٌ ARABIC DAMMATAN */ { 0x05ed, 0x064d }, /* Arabic_kasratan ٍ ARABIC KASRATAN */ { 0x05ee, 0x064e }, /* Arabic_fatha َ ARABIC FATHA */ { 0x05ef, 0x064f }, /* Arabic_damma ُ ARABIC DAMMA */ { 0x05f0, 0x0650 }, /* Arabic_kasra ِ ARABIC KASRA */ { 0x05f1, 0x0651 }, /* Arabic_shadda ّ ARABIC SHADDA */ { 0x05f2, 0x0652 }, /* Arabic_sukun ْ ARABIC SUKUN */ { 0x06a1, 0x0452 }, /* Serbian_dje ђ CYRILLIC SMALL LETTER DJE */ { 0x06a2, 0x0453 }, /* Macedonia_gje ѓ CYRILLIC SMALL LETTER GJE */ { 0x06a3, 0x0451 }, /* Cyrillic_io ё CYRILLIC SMALL LETTER IO */ { 0x06a4, 0x0454 }, /* Ukrainian_ie є CYRILLIC SMALL LETTER UKRAINIAN IE */ { 0x06a5, 0x0455 }, /* Macedonia_dse ѕ CYRILLIC SMALL LETTER DZE */ { 0x06a6, 0x0456 }, /* Ukrainian_i і CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */ { 0x06a7, 0x0457 }, /* Ukrainian_yi ї CYRILLIC SMALL LETTER YI */ { 0x06a8, 0x0458 }, /* Cyrillic_je ј CYRILLIC SMALL LETTER JE */ { 0x06a9, 0x0459 }, /* Cyrillic_lje љ CYRILLIC SMALL LETTER LJE */ { 0x06aa, 0x045a }, /* Cyrillic_nje њ CYRILLIC SMALL LETTER NJE */ { 0x06ab, 0x045b }, /* Serbian_tshe ћ CYRILLIC SMALL LETTER TSHE */ { 0x06ac, 0x045c }, /* Macedonia_kje ќ CYRILLIC SMALL LETTER KJE */ { 0x06ad, 0x0491 }, /* Ukrainian_ghe_with_upturn ґ CYRILLIC SMALL LETTER GHE WITH UPTURN */ { 0x06ae, 0x045e }, /* Byelorussian_shortu ў CYRILLIC SMALL LETTER SHORT U */ { 0x06af, 0x045f }, /* Cyrillic_dzhe џ CYRILLIC SMALL LETTER DZHE */ { 0x06b0, 0x2116 }, /* numerosign № NUMERO SIGN */ { 0x06b1, 0x0402 }, /* Serbian_DJE Ђ CYRILLIC CAPITAL LETTER DJE */ { 0x06b2, 0x0403 }, /* Macedonia_GJE Ѓ CYRILLIC CAPITAL LETTER GJE */ { 0x06b3, 0x0401 }, /* Cyrillic_IO Ё CYRILLIC CAPITAL LETTER IO */ { 0x06b4, 0x0404 }, /* Ukrainian_IE Є CYRILLIC CAPITAL LETTER UKRAINIAN IE */ { 0x06b5, 0x0405 }, /* Macedonia_DSE Ѕ CYRILLIC CAPITAL LETTER DZE */ { 0x06b6, 0x0406 }, /* Ukrainian_I І CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */ { 0x06b7, 0x0407 }, /* Ukrainian_YI Ї CYRILLIC CAPITAL LETTER YI */ { 0x06b8, 0x0408 }, /* Cyrillic_JE Ј CYRILLIC CAPITAL LETTER JE */ { 0x06b9, 0x0409 }, /* Cyrillic_LJE Љ CYRILLIC CAPITAL LETTER LJE */ { 0x06ba, 0x040a }, /* Cyrillic_NJE Њ CYRILLIC CAPITAL LETTER NJE */ { 0x06bb, 0x040b }, /* Serbian_TSHE Ћ CYRILLIC CAPITAL LETTER TSHE */ { 0x06bc, 0x040c }, /* Macedonia_KJE Ќ CYRILLIC CAPITAL LETTER KJE */ { 0x06bd, 0x0490 }, /* Ukrainian_GHE_WITH_UPTURN Ґ CYRILLIC CAPITAL LETTER GHE WITH UPTURN */ { 0x06be, 0x040e }, /* Byelorussian_SHORTU Ў CYRILLIC CAPITAL LETTER SHORT U */ { 0x06bf, 0x040f }, /* Cyrillic_DZHE Џ CYRILLIC CAPITAL LETTER DZHE */ { 0x06c0, 0x044e }, /* Cyrillic_yu ю CYRILLIC SMALL LETTER YU */ { 0x06c1, 0x0430 }, /* Cyrillic_a а CYRILLIC SMALL LETTER A */ { 0x06c2, 0x0431 }, /* Cyrillic_be б CYRILLIC SMALL LETTER BE */ { 0x06c3, 0x0446 }, /* Cyrillic_tse ц CYRILLIC SMALL LETTER TSE */ { 0x06c4, 0x0434 }, /* Cyrillic_de д CYRILLIC SMALL LETTER DE */ { 0x06c5, 0x0435 }, /* Cyrillic_ie е CYRILLIC SMALL LETTER IE */ { 0x06c6, 0x0444 }, /* Cyrillic_ef ф CYRILLIC SMALL LETTER EF */ { 0x06c7, 0x0433 }, /* Cyrillic_ghe г CYRILLIC SMALL LETTER GHE */ { 0x06c8, 0x0445 }, /* Cyrillic_ha х CYRILLIC SMALL LETTER HA */ { 0x06c9, 0x0438 }, /* Cyrillic_i и CYRILLIC SMALL LETTER I */ { 0x06ca, 0x0439 }, /* Cyrillic_shorti й CYRILLIC SMALL LETTER SHORT I */ { 0x06cb, 0x043a }, /* Cyrillic_ka к CYRILLIC SMALL LETTER KA */ { 0x06cc, 0x043b }, /* Cyrillic_el л CYRILLIC SMALL LETTER EL */ { 0x06cd, 0x043c }, /* Cyrillic_em м CYRILLIC SMALL LETTER EM */ { 0x06ce, 0x043d }, /* Cyrillic_en н CYRILLIC SMALL LETTER EN */ { 0x06cf, 0x043e }, /* Cyrillic_o о CYRILLIC SMALL LETTER O */ { 0x06d0, 0x043f }, /* Cyrillic_pe п CYRILLIC SMALL LETTER PE */ { 0x06d1, 0x044f }, /* Cyrillic_ya я CYRILLIC SMALL LETTER YA */ { 0x06d2, 0x0440 }, /* Cyrillic_er р CYRILLIC SMALL LETTER ER */ { 0x06d3, 0x0441 }, /* Cyrillic_es с CYRILLIC SMALL LETTER ES */ { 0x06d4, 0x0442 }, /* Cyrillic_te т CYRILLIC SMALL LETTER TE */ { 0x06d5, 0x0443 }, /* Cyrillic_u у CYRILLIC SMALL LETTER U */ { 0x06d6, 0x0436 }, /* Cyrillic_zhe ж CYRILLIC SMALL LETTER ZHE */ { 0x06d7, 0x0432 }, /* Cyrillic_ve в CYRILLIC SMALL LETTER VE */ { 0x06d8, 0x044c }, /* Cyrillic_softsign ь CYRILLIC SMALL LETTER SOFT SIGN */ { 0x06d9, 0x044b }, /* Cyrillic_yeru ы CYRILLIC SMALL LETTER YERU */ { 0x06da, 0x0437 }, /* Cyrillic_ze з CYRILLIC SMALL LETTER ZE */ { 0x06db, 0x0448 }, /* Cyrillic_sha ш CYRILLIC SMALL LETTER SHA */ { 0x06dc, 0x044d }, /* Cyrillic_e э CYRILLIC SMALL LETTER E */ { 0x06dd, 0x0449 }, /* Cyrillic_shcha щ CYRILLIC SMALL LETTER SHCHA */ { 0x06de, 0x0447 }, /* Cyrillic_che ч CYRILLIC SMALL LETTER CHE */ { 0x06df, 0x044a }, /* Cyrillic_hardsign ъ CYRILLIC SMALL LETTER HARD SIGN */ { 0x06e0, 0x042e }, /* Cyrillic_YU Ю CYRILLIC CAPITAL LETTER YU */ { 0x06e1, 0x0410 }, /* Cyrillic_A А CYRILLIC CAPITAL LETTER A */ { 0x06e2, 0x0411 }, /* Cyrillic_BE Б CYRILLIC CAPITAL LETTER BE */ { 0x06e3, 0x0426 }, /* Cyrillic_TSE Ц CYRILLIC CAPITAL LETTER TSE */ { 0x06e4, 0x0414 }, /* Cyrillic_DE Д CYRILLIC CAPITAL LETTER DE */ { 0x06e5, 0x0415 }, /* Cyrillic_IE Е CYRILLIC CAPITAL LETTER IE */ { 0x06e6, 0x0424 }, /* Cyrillic_EF Ф CYRILLIC CAPITAL LETTER EF */ { 0x06e7, 0x0413 }, /* Cyrillic_GHE Г CYRILLIC CAPITAL LETTER GHE */ { 0x06e8, 0x0425 }, /* Cyrillic_HA Х CYRILLIC CAPITAL LETTER HA */ { 0x06e9, 0x0418 }, /* Cyrillic_I И CYRILLIC CAPITAL LETTER I */ { 0x06ea, 0x0419 }, /* Cyrillic_SHORTI Й CYRILLIC CAPITAL LETTER SHORT I */ { 0x06eb, 0x041a }, /* Cyrillic_KA К CYRILLIC CAPITAL LETTER KA */ { 0x06ec, 0x041b }, /* Cyrillic_EL Л CYRILLIC CAPITAL LETTER EL */ { 0x06ed, 0x041c }, /* Cyrillic_EM М CYRILLIC CAPITAL LETTER EM */ { 0x06ee, 0x041d }, /* Cyrillic_EN Н CYRILLIC CAPITAL LETTER EN */ { 0x06ef, 0x041e }, /* Cyrillic_O О CYRILLIC CAPITAL LETTER O */ { 0x06f0, 0x041f }, /* Cyrillic_PE П CYRILLIC CAPITAL LETTER PE */ { 0x06f1, 0x042f }, /* Cyrillic_YA Я CYRILLIC CAPITAL LETTER YA */ { 0x06f2, 0x0420 }, /* Cyrillic_ER Р CYRILLIC CAPITAL LETTER ER */ { 0x06f3, 0x0421 }, /* Cyrillic_ES С CYRILLIC CAPITAL LETTER ES */ { 0x06f4, 0x0422 }, /* Cyrillic_TE Т CYRILLIC CAPITAL LETTER TE */ { 0x06f5, 0x0423 }, /* Cyrillic_U У CYRILLIC CAPITAL LETTER U */ { 0x06f6, 0x0416 }, /* Cyrillic_ZHE Ж CYRILLIC CAPITAL LETTER ZHE */ { 0x06f7, 0x0412 }, /* Cyrillic_VE В CYRILLIC CAPITAL LETTER VE */ { 0x06f8, 0x042c }, /* Cyrillic_SOFTSIGN Ь CYRILLIC CAPITAL LETTER SOFT SIGN */ { 0x06f9, 0x042b }, /* Cyrillic_YERU Ы CYRILLIC CAPITAL LETTER YERU */ { 0x06fa, 0x0417 }, /* Cyrillic_ZE З CYRILLIC CAPITAL LETTER ZE */ { 0x06fb, 0x0428 }, /* Cyrillic_SHA Ш CYRILLIC CAPITAL LETTER SHA */ { 0x06fc, 0x042d }, /* Cyrillic_E Э CYRILLIC CAPITAL LETTER E */ { 0x06fd, 0x0429 }, /* Cyrillic_SHCHA Щ CYRILLIC CAPITAL LETTER SHCHA */ { 0x06fe, 0x0427 }, /* Cyrillic_CHE Ч CYRILLIC CAPITAL LETTER CHE */ { 0x06ff, 0x042a }, /* Cyrillic_HARDSIGN Ъ CYRILLIC CAPITAL LETTER HARD SIGN */ { 0x07a1, 0x0386 }, /* Greek_ALPHAaccent Ά GREEK CAPITAL LETTER ALPHA WITH TONOS */ { 0x07a2, 0x0388 }, /* Greek_EPSILONaccent Έ GREEK CAPITAL LETTER EPSILON WITH TONOS */ { 0x07a3, 0x0389 }, /* Greek_ETAaccent Ή GREEK CAPITAL LETTER ETA WITH TONOS */ { 0x07a4, 0x038a }, /* Greek_IOTAaccent Ί GREEK CAPITAL LETTER IOTA WITH TONOS */ { 0x07a5, 0x03aa }, /* Greek_IOTAdieresis Ϊ GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */ { 0x07a7, 0x038c }, /* Greek_OMICRONaccent Ό GREEK CAPITAL LETTER OMICRON WITH TONOS */ { 0x07a8, 0x038e }, /* Greek_UPSILONaccent Ύ GREEK CAPITAL LETTER UPSILON WITH TONOS */ { 0x07a9, 0x03ab }, /* Greek_UPSILONdieresis Ϋ GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */ { 0x07ab, 0x038f }, /* Greek_OMEGAaccent Ώ GREEK CAPITAL LETTER OMEGA WITH TONOS */ { 0x07ae, 0x0385 }, /* Greek_accentdieresis ΅ GREEK DIALYTIKA TONOS */ { 0x07af, 0x2015 }, /* Greek_horizbar ― HORIZONTAL BAR */ { 0x07b1, 0x03ac }, /* Greek_alphaaccent ά GREEK SMALL LETTER ALPHA WITH TONOS */ { 0x07b2, 0x03ad }, /* Greek_epsilonaccent έ GREEK SMALL LETTER EPSILON WITH TONOS */ { 0x07b3, 0x03ae }, /* Greek_etaaccent ή GREEK SMALL LETTER ETA WITH TONOS */ { 0x07b4, 0x03af }, /* Greek_iotaaccent ί GREEK SMALL LETTER IOTA WITH TONOS */ { 0x07b5, 0x03ca }, /* Greek_iotadieresis ϊ GREEK SMALL LETTER IOTA WITH DIALYTIKA */ { 0x07b6, 0x0390 }, /* Greek_iotaaccentdieresis ΐ GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */ { 0x07b7, 0x03cc }, /* Greek_omicronaccent ό GREEK SMALL LETTER OMICRON WITH TONOS */ { 0x07b8, 0x03cd }, /* Greek_upsilonaccent ύ GREEK SMALL LETTER UPSILON WITH TONOS */ { 0x07b9, 0x03cb }, /* Greek_upsilondieresis ϋ GREEK SMALL LETTER UPSILON WITH DIALYTIKA */ { 0x07ba, 0x03b0 }, /* Greek_upsilonaccentdieresis ΰ GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */ { 0x07bb, 0x03ce }, /* Greek_omegaaccent ώ GREEK SMALL LETTER OMEGA WITH TONOS */ { 0x07c1, 0x0391 }, /* Greek_ALPHA Α GREEK CAPITAL LETTER ALPHA */ { 0x07c2, 0x0392 }, /* Greek_BETA Β GREEK CAPITAL LETTER BETA */ { 0x07c3, 0x0393 }, /* Greek_GAMMA Γ GREEK CAPITAL LETTER GAMMA */ { 0x07c4, 0x0394 }, /* Greek_DELTA Δ GREEK CAPITAL LETTER DELTA */ { 0x07c5, 0x0395 }, /* Greek_EPSILON Ε GREEK CAPITAL LETTER EPSILON */ { 0x07c6, 0x0396 }, /* Greek_ZETA Ζ GREEK CAPITAL LETTER ZETA */ { 0x07c7, 0x0397 }, /* Greek_ETA Η GREEK CAPITAL LETTER ETA */ { 0x07c8, 0x0398 }, /* Greek_THETA Θ GREEK CAPITAL LETTER THETA */ { 0x07c9, 0x0399 }, /* Greek_IOTA Ι GREEK CAPITAL LETTER IOTA */ { 0x07ca, 0x039a }, /* Greek_KAPPA Κ GREEK CAPITAL LETTER KAPPA */ { 0x07cb, 0x039b }, /* Greek_LAMBDA Λ GREEK CAPITAL LETTER LAMDA */ { 0x07cc, 0x039c }, /* Greek_MU Μ GREEK CAPITAL LETTER MU */ { 0x07cd, 0x039d }, /* Greek_NU Ν GREEK CAPITAL LETTER NU */ { 0x07ce, 0x039e }, /* Greek_XI Ξ GREEK CAPITAL LETTER XI */ { 0x07cf, 0x039f }, /* Greek_OMICRON Ο GREEK CAPITAL LETTER OMICRON */ { 0x07d0, 0x03a0 }, /* Greek_PI Π GREEK CAPITAL LETTER PI */ { 0x07d1, 0x03a1 }, /* Greek_RHO Ρ GREEK CAPITAL LETTER RHO */ { 0x07d2, 0x03a3 }, /* Greek_SIGMA Σ GREEK CAPITAL LETTER SIGMA */ { 0x07d4, 0x03a4 }, /* Greek_TAU Τ GREEK CAPITAL LETTER TAU */ { 0x07d5, 0x03a5 }, /* Greek_UPSILON Υ GREEK CAPITAL LETTER UPSILON */ { 0x07d6, 0x03a6 }, /* Greek_PHI Φ GREEK CAPITAL LETTER PHI */ { 0x07d7, 0x03a7 }, /* Greek_CHI Χ GREEK CAPITAL LETTER CHI */ { 0x07d8, 0x03a8 }, /* Greek_PSI Ψ GREEK CAPITAL LETTER PSI */ { 0x07d9, 0x03a9 }, /* Greek_OMEGA Ω GREEK CAPITAL LETTER OMEGA */ { 0x07e1, 0x03b1 }, /* Greek_alpha α GREEK SMALL LETTER ALPHA */ { 0x07e2, 0x03b2 }, /* Greek_beta β GREEK SMALL LETTER BETA */ { 0x07e3, 0x03b3 }, /* Greek_gamma γ GREEK SMALL LETTER GAMMA */ { 0x07e4, 0x03b4 }, /* Greek_delta δ GREEK SMALL LETTER DELTA */ { 0x07e5, 0x03b5 }, /* Greek_epsilon ε GREEK SMALL LETTER EPSILON */ { 0x07e6, 0x03b6 }, /* Greek_zeta ζ GREEK SMALL LETTER ZETA */ { 0x07e7, 0x03b7 }, /* Greek_eta η GREEK SMALL LETTER ETA */ { 0x07e8, 0x03b8 }, /* Greek_theta θ GREEK SMALL LETTER THETA */ { 0x07e9, 0x03b9 }, /* Greek_iota ι GREEK SMALL LETTER IOTA */ { 0x07ea, 0x03ba }, /* Greek_kappa κ GREEK SMALL LETTER KAPPA */ { 0x07eb, 0x03bb }, /* Greek_lambda λ GREEK SMALL LETTER LAMDA */ { 0x07ec, 0x03bc }, /* Greek_mu μ GREEK SMALL LETTER MU */ { 0x07ed, 0x03bd }, /* Greek_nu ν GREEK SMALL LETTER NU */ { 0x07ee, 0x03be }, /* Greek_xi ξ GREEK SMALL LETTER XI */ { 0x07ef, 0x03bf }, /* Greek_omicron ο GREEK SMALL LETTER OMICRON */ { 0x07f0, 0x03c0 }, /* Greek_pi π GREEK SMALL LETTER PI */ { 0x07f1, 0x03c1 }, /* Greek_rho ρ GREEK SMALL LETTER RHO */ { 0x07f2, 0x03c3 }, /* Greek_sigma σ GREEK SMALL LETTER SIGMA */ { 0x07f3, 0x03c2 }, /* Greek_finalsmallsigma ς GREEK SMALL LETTER FINAL SIGMA */ { 0x07f4, 0x03c4 }, /* Greek_tau τ GREEK SMALL LETTER TAU */ { 0x07f5, 0x03c5 }, /* Greek_upsilon υ GREEK SMALL LETTER UPSILON */ { 0x07f6, 0x03c6 }, /* Greek_phi φ GREEK SMALL LETTER PHI */ { 0x07f7, 0x03c7 }, /* Greek_chi χ GREEK SMALL LETTER CHI */ { 0x07f8, 0x03c8 }, /* Greek_psi ψ GREEK SMALL LETTER PSI */ { 0x07f9, 0x03c9 }, /* Greek_omega ω GREEK SMALL LETTER OMEGA */ /* 0x08a1 leftradical ? ??? */ /* 0x08a2 topleftradical ? ??? */ /* 0x08a3 horizconnector ? ??? */ { 0x08a4, 0x2320 }, /* topintegral ⌠ TOP HALF INTEGRAL */ { 0x08a5, 0x2321 }, /* botintegral ⌡ BOTTOM HALF INTEGRAL */ { 0x08a6, 0x2502 }, /* vertconnector │ BOX DRAWINGS LIGHT VERTICAL */ /* 0x08a7 topleftsqbracket ? ??? */ /* 0x08a8 botleftsqbracket ? ??? */ /* 0x08a9 toprightsqbracket ? ??? */ /* 0x08aa botrightsqbracket ? ??? */ /* 0x08ab topleftparens ? ??? */ /* 0x08ac botleftparens ? ??? */ /* 0x08ad toprightparens ? ??? */ /* 0x08ae botrightparens ? ??? */ /* 0x08af leftmiddlecurlybrace ? ??? */ /* 0x08b0 rightmiddlecurlybrace ? ??? */ /* 0x08b1 topleftsummation ? ??? */ /* 0x08b2 botleftsummation ? ??? */ /* 0x08b3 topvertsummationconnector ? ??? */ /* 0x08b4 botvertsummationconnector ? ??? */ /* 0x08b5 toprightsummation ? ??? */ /* 0x08b6 botrightsummation ? ??? */ /* 0x08b7 rightmiddlesummation ? ??? */ { 0x08bc, 0x2264 }, /* lessthanequal ≤ LESS-THAN OR EQUAL TO */ { 0x08bd, 0x2260 }, /* notequal ≠ NOT EQUAL TO */ { 0x08be, 0x2265 }, /* greaterthanequal ≥ GREATER-THAN OR EQUAL TO */ { 0x08bf, 0x222b }, /* integral ∫ INTEGRAL */ { 0x08c0, 0x2234 }, /* therefore ∴ THEREFORE */ { 0x08c1, 0x221d }, /* variation ∝ PROPORTIONAL TO */ { 0x08c2, 0x221e }, /* infinity ∞ INFINITY */ { 0x08c5, 0x2207 }, /* nabla ∇ NABLA */ { 0x08c8, 0x2245 }, /* approximate ≅ APPROXIMATELY EQUAL TO */ /* 0x08c9 similarequal ? ??? */ { 0x08cd, 0x21d4 }, /* ifonlyif ⇔ LEFT RIGHT DOUBLE ARROW */ { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS DOUBLE ARROW */ { 0x08cf, 0x2261 }, /* identical ≡ IDENTICAL TO */ { 0x08d6, 0x221a }, /* radical √ SQUARE ROOT */ { 0x08da, 0x2282 }, /* includedin ⊂ SUBSET OF */ { 0x08db, 0x2283 }, /* includes ⊃ SUPERSET OF */ { 0x08dc, 0x2229 }, /* intersection ∩ INTERSECTION */ { 0x08dd, 0x222a }, /* union ∪ UNION */ { 0x08de, 0x2227 }, /* logicaland ∧ LOGICAL AND */ { 0x08df, 0x2228 }, /* logicalor ∨ LOGICAL OR */ { 0x08ef, 0x2202 }, /* partialderivative ∂ PARTIAL DIFFERENTIAL */ { 0x08f6, 0x0192 }, /* function ƒ LATIN SMALL LETTER F WITH HOOK */ { 0x08fb, 0x2190 }, /* leftarrow ← LEFTWARDS ARROW */ { 0x08fc, 0x2191 }, /* uparrow ↑ UPWARDS ARROW */ { 0x08fd, 0x2192 }, /* rightarrow → RIGHTWARDS ARROW */ { 0x08fe, 0x2193 }, /* downarrow ↓ DOWNWARDS ARROW */ { 0x09df, 0x2422 }, /* blank ␢ BLANK SYMBOL */ { 0x09e0, 0x25c6 }, /* soliddiamond ◆ BLACK DIAMOND */ { 0x09e1, 0x2592 }, /* checkerboard ▒ MEDIUM SHADE */ { 0x09e2, 0x2409 }, /* ht ␉ SYMBOL FOR HORIZONTAL TABULATION */ { 0x09e3, 0x240c }, /* ff ␌ SYMBOL FOR FORM FEED */ { 0x09e4, 0x240d }, /* cr ␍ SYMBOL FOR CARRIAGE RETURN */ { 0x09e5, 0x240a }, /* lf ␊ SYMBOL FOR LINE FEED */ { 0x09e8, 0x2424 }, /* nl ␤ SYMBOL FOR NEWLINE */ { 0x09e9, 0x240b }, /* vt ␋ SYMBOL FOR VERTICAL TABULATION */ { 0x09ea, 0x2518 }, /* lowrightcorner ┘ BOX DRAWINGS LIGHT UP AND LEFT */ { 0x09eb, 0x2510 }, /* uprightcorner ┐ BOX DRAWINGS LIGHT DOWN AND LEFT */ { 0x09ec, 0x250c }, /* upleftcorner ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */ { 0x09ed, 0x2514 }, /* lowleftcorner └ BOX DRAWINGS LIGHT UP AND RIGHT */ { 0x09ee, 0x253c }, /* crossinglines ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */ /* 0x09ef horizlinescan1 ? ??? */ /* 0x09f0 horizlinescan3 ? ??? */ { 0x09f1, 0x2500 }, /* horizlinescan5 ─ BOX DRAWINGS LIGHT HORIZONTAL */ /* 0x09f2 horizlinescan7 ? ??? */ /* 0x09f3 horizlinescan9 ? ??? */ { 0x09f4, 0x251c }, /* leftt ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT */ { 0x09f5, 0x2524 }, /* rightt ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT */ { 0x09f6, 0x2534 }, /* bott ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL */ { 0x09f7, 0x252c }, /* topt ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */ { 0x09f8, 0x2502 }, /* vertbar │ BOX DRAWINGS LIGHT VERTICAL */ { 0x0aa1, 0x2003 }, /* emspace   EM SPACE */ { 0x0aa2, 0x2002 }, /* enspace   EN SPACE */ { 0x0aa3, 0x2004 }, /* em3space   THREE-PER-EM SPACE */ { 0x0aa4, 0x2005 }, /* em4space   FOUR-PER-EM SPACE */ { 0x0aa5, 0x2007 }, /* digitspace   FIGURE SPACE */ { 0x0aa6, 0x2008 }, /* punctspace   PUNCTUATION SPACE */ { 0x0aa7, 0x2009 }, /* thinspace   THIN SPACE */ { 0x0aa8, 0x200a }, /* hairspace   HAIR SPACE */ { 0x0aa9, 0x2014 }, /* emdash — EM DASH */ { 0x0aaa, 0x2013 }, /* endash – EN DASH */ /* 0x0aac signifblank ? ??? */ { 0x0aae, 0x2026 }, /* ellipsis … HORIZONTAL ELLIPSIS */ /* 0x0aaf doubbaselinedot ? ??? */ { 0x0ab0, 0x2153 }, /* onethird ⅓ VULGAR FRACTION ONE THIRD */ { 0x0ab1, 0x2154 }, /* twothirds ⅔ VULGAR FRACTION TWO THIRDS */ { 0x0ab2, 0x2155 }, /* onefifth ⅕ VULGAR FRACTION ONE FIFTH */ { 0x0ab3, 0x2156 }, /* twofifths ⅖ VULGAR FRACTION TWO FIFTHS */ { 0x0ab4, 0x2157 }, /* threefifths ⅗ VULGAR FRACTION THREE FIFTHS */ { 0x0ab5, 0x2158 }, /* fourfifths ⅘ VULGAR FRACTION FOUR FIFTHS */ { 0x0ab6, 0x2159 }, /* onesixth ⅙ VULGAR FRACTION ONE SIXTH */ { 0x0ab7, 0x215a }, /* fivesixths ⅚ VULGAR FRACTION FIVE SIXTHS */ { 0x0ab8, 0x2105 }, /* careof ℅ CARE OF */ { 0x0abb, 0x2012 }, /* figdash ‒ FIGURE DASH */ { 0x0abc, 0x2329 }, /* leftanglebracket 〈 LEFT-POINTING ANGLE BRACKET */ { 0x0abd, 0x002e }, /* decimalpoint . FULL STOP */ { 0x0abe, 0x232a }, /* rightanglebracket 〉 RIGHT-POINTING ANGLE BRACKET */ /* 0x0abf marker ? ??? */ { 0x0ac3, 0x215b }, /* oneeighth ⅛ VULGAR FRACTION ONE EIGHTH */ { 0x0ac4, 0x215c }, /* threeeighths ⅜ VULGAR FRACTION THREE EIGHTHS */ { 0x0ac5, 0x215d }, /* fiveeighths ⅝ VULGAR FRACTION FIVE EIGHTHS */ { 0x0ac6, 0x215e }, /* seveneighths ⅞ VULGAR FRACTION SEVEN EIGHTHS */ { 0x0ac9, 0x2122 }, /* trademark ™ TRADE MARK SIGN */ { 0x0aca, 0x2613 }, /* signaturemark ☓ SALTIRE */ /* 0x0acb trademarkincircle ? ??? */ { 0x0acc, 0x25c1 }, /* leftopentriangle ◁ WHITE LEFT-POINTING TRIANGLE */ { 0x0acd, 0x25b7 }, /* rightopentriangle ▷ WHITE RIGHT-POINTING TRIANGLE */ { 0x0ace, 0x25cb }, /* emopencircle ○ WHITE CIRCLE */ { 0x0acf, 0x25a1 }, /* emopenrectangle □ WHITE SQUARE */ { 0x0ad0, 0x2018 }, /* leftsinglequotemark ‘ LEFT SINGLE QUOTATION MARK */ { 0x0ad1, 0x2019 }, /* rightsinglequotemark ’ RIGHT SINGLE QUOTATION MARK */ { 0x0ad2, 0x201c }, /* leftdoublequotemark “ LEFT DOUBLE QUOTATION MARK */ { 0x0ad3, 0x201d }, /* rightdoublequotemark ” RIGHT DOUBLE QUOTATION MARK */ { 0x0ad4, 0x211e }, /* prescription ℞ PRESCRIPTION TAKE */ { 0x0ad6, 0x2032 }, /* minutes ′ PRIME */ { 0x0ad7, 0x2033 }, /* seconds ″ DOUBLE PRIME */ { 0x0ad9, 0x271d }, /* latincross ✝ LATIN CROSS */ /* 0x0ada hexagram ? ??? */ { 0x0adb, 0x25ac }, /* filledrectbullet ▬ BLACK RECTANGLE */ { 0x0adc, 0x25c0 }, /* filledlefttribullet ◀ BLACK LEFT-POINTING TRIANGLE */ { 0x0add, 0x25b6 }, /* filledrighttribullet ▶ BLACK RIGHT-POINTING TRIANGLE */ { 0x0ade, 0x25cf }, /* emfilledcircle ● BLACK CIRCLE */ { 0x0adf, 0x25a0 }, /* emfilledrect ■ BLACK SQUARE */ { 0x0ae0, 0x25e6 }, /* enopencircbullet ◦ WHITE BULLET */ { 0x0ae1, 0x25ab }, /* enopensquarebullet ▫ WHITE SMALL SQUARE */ { 0x0ae2, 0x25ad }, /* openrectbullet ▭ WHITE RECTANGLE */ { 0x0ae3, 0x25b3 }, /* opentribulletup △ WHITE UP-POINTING TRIANGLE */ { 0x0ae4, 0x25bd }, /* opentribulletdown ▽ WHITE DOWN-POINTING TRIANGLE */ { 0x0ae5, 0x2606 }, /* openstar ☆ WHITE STAR */ { 0x0ae6, 0x2022 }, /* enfilledcircbullet • BULLET */ { 0x0ae7, 0x25aa }, /* enfilledsqbullet ▪ BLACK SMALL SQUARE */ { 0x0ae8, 0x25b2 }, /* filledtribulletup ▲ BLACK UP-POINTING TRIANGLE */ { 0x0ae9, 0x25bc }, /* filledtribulletdown ▼ BLACK DOWN-POINTING TRIANGLE */ { 0x0aea, 0x261c }, /* leftpointer ☜ WHITE LEFT POINTING INDEX */ { 0x0aeb, 0x261e }, /* rightpointer ☞ WHITE RIGHT POINTING INDEX */ { 0x0aec, 0x2663 }, /* club ♣ BLACK CLUB SUIT */ { 0x0aed, 0x2666 }, /* diamond ♦ BLACK DIAMOND SUIT */ { 0x0aee, 0x2665 }, /* heart ♥ BLACK HEART SUIT */ { 0x0af0, 0x2720 }, /* maltesecross ✠ MALTESE CROSS */ { 0x0af1, 0x2020 }, /* dagger † DAGGER */ { 0x0af2, 0x2021 }, /* doubledagger ‡ DOUBLE DAGGER */ { 0x0af3, 0x2713 }, /* checkmark ✓ CHECK MARK */ { 0x0af4, 0x2717 }, /* ballotcross ✗ BALLOT X */ { 0x0af5, 0x266f }, /* musicalsharp ♯ MUSIC SHARP SIGN */ { 0x0af6, 0x266d }, /* musicalflat ♭ MUSIC FLAT SIGN */ { 0x0af7, 0x2642 }, /* malesymbol ♂ MALE SIGN */ { 0x0af8, 0x2640 }, /* femalesymbol ♀ FEMALE SIGN */ { 0x0af9, 0x260e }, /* telephone ☎ BLACK TELEPHONE */ { 0x0afa, 0x2315 }, /* telephonerecorder ⌕ TELEPHONE RECORDER */ { 0x0afb, 0x2117 }, /* phonographcopyright ℗ SOUND RECORDING COPYRIGHT */ { 0x0afc, 0x2038 }, /* caret ‸ CARET */ { 0x0afd, 0x201a }, /* singlelowquotemark ‚ SINGLE LOW-9 QUOTATION MARK */ { 0x0afe, 0x201e }, /* doublelowquotemark „ DOUBLE LOW-9 QUOTATION MARK */ /* 0x0aff cursor ? ??? */ { 0x0ba3, 0x003c }, /* leftcaret < LESS-THAN SIGN */ { 0x0ba6, 0x003e }, /* rightcaret > GREATER-THAN SIGN */ { 0x0ba8, 0x2228 }, /* downcaret ∨ LOGICAL OR */ { 0x0ba9, 0x2227 }, /* upcaret ∧ LOGICAL AND */ { 0x0bc0, 0x00af }, /* overbar ¯ MACRON */ { 0x0bc2, 0x22a4 }, /* downtack ⊤ DOWN TACK */ { 0x0bc3, 0x2229 }, /* upshoe ∩ INTERSECTION */ { 0x0bc4, 0x230a }, /* downstile ⌊ LEFT FLOOR */ { 0x0bc6, 0x005f }, /* underbar _ LOW LINE */ { 0x0bca, 0x2218 }, /* jot ∘ RING OPERATOR */ { 0x0bcc, 0x2395 }, /* quad ⎕ APL FUNCTIONAL SYMBOL QUAD (Unicode 3.0) */ { 0x0bce, 0x22a5 }, /* uptack ⊥ UP TACK */ { 0x0bcf, 0x25cb }, /* circle ○ WHITE CIRCLE */ { 0x0bd3, 0x2308 }, /* upstile ⌈ LEFT CEILING */ { 0x0bd6, 0x222a }, /* downshoe ∪ UNION */ { 0x0bd8, 0x2283 }, /* rightshoe ⊃ SUPERSET OF */ { 0x0bda, 0x2282 }, /* leftshoe ⊂ SUBSET OF */ { 0x0bdc, 0x22a3 }, /* lefttack ⊣ LEFT TACK */ { 0x0bfc, 0x22a2 }, /* righttack ⊢ RIGHT TACK */ { 0x0cdf, 0x2017 }, /* hebrew_doublelowline ‗ DOUBLE LOW LINE */ { 0x0ce0, 0x05d0 }, /* hebrew_aleph א HEBREW LETTER ALEF */ { 0x0ce1, 0x05d1 }, /* hebrew_bet ב HEBREW LETTER BET */ { 0x0ce2, 0x05d2 }, /* hebrew_gimel ג HEBREW LETTER GIMEL */ { 0x0ce3, 0x05d3 }, /* hebrew_dalet ד HEBREW LETTER DALET */ { 0x0ce4, 0x05d4 }, /* hebrew_he ה HEBREW LETTER HE */ { 0x0ce5, 0x05d5 }, /* hebrew_waw ו HEBREW LETTER VAV */ { 0x0ce6, 0x05d6 }, /* hebrew_zain ז HEBREW LETTER ZAYIN */ { 0x0ce7, 0x05d7 }, /* hebrew_chet ח HEBREW LETTER HET */ { 0x0ce8, 0x05d8 }, /* hebrew_tet ט HEBREW LETTER TET */ { 0x0ce9, 0x05d9 }, /* hebrew_yod י HEBREW LETTER YOD */ { 0x0cea, 0x05da }, /* hebrew_finalkaph ך HEBREW LETTER FINAL KAF */ { 0x0ceb, 0x05db }, /* hebrew_kaph כ HEBREW LETTER KAF */ { 0x0cec, 0x05dc }, /* hebrew_lamed ל HEBREW LETTER LAMED */ { 0x0ced, 0x05dd }, /* hebrew_finalmem ם HEBREW LETTER FINAL MEM */ { 0x0cee, 0x05de }, /* hebrew_mem מ HEBREW LETTER MEM */ { 0x0cef, 0x05df }, /* hebrew_finalnun ן HEBREW LETTER FINAL NUN */ { 0x0cf0, 0x05e0 }, /* hebrew_nun נ HEBREW LETTER NUN */ { 0x0cf1, 0x05e1 }, /* hebrew_samech ס HEBREW LETTER SAMEKH */ { 0x0cf2, 0x05e2 }, /* hebrew_ayin ע HEBREW LETTER AYIN */ { 0x0cf3, 0x05e3 }, /* hebrew_finalpe ף HEBREW LETTER FINAL PE */ { 0x0cf4, 0x05e4 }, /* hebrew_pe פ HEBREW LETTER PE */ { 0x0cf5, 0x05e5 }, /* hebrew_finalzade ץ HEBREW LETTER FINAL TSADI */ { 0x0cf6, 0x05e6 }, /* hebrew_zade צ HEBREW LETTER TSADI */ { 0x0cf7, 0x05e7 }, /* hebrew_qoph ק HEBREW LETTER QOF */ { 0x0cf8, 0x05e8 }, /* hebrew_resh ר HEBREW LETTER RESH */ { 0x0cf9, 0x05e9 }, /* hebrew_shin ש HEBREW LETTER SHIN */ { 0x0cfa, 0x05ea }, /* hebrew_taw ת HEBREW LETTER TAV */ { 0x0da1, 0x0e01 }, /* Thai_kokai ก THAI CHARACTER KO KAI */ { 0x0da2, 0x0e02 }, /* Thai_khokhai ข THAI CHARACTER KHO KHAI */ { 0x0da3, 0x0e03 }, /* Thai_khokhuat ฃ THAI CHARACTER KHO KHUAT */ { 0x0da4, 0x0e04 }, /* Thai_khokhwai ค THAI CHARACTER KHO KHWAI */ { 0x0da5, 0x0e05 }, /* Thai_khokhon ฅ THAI CHARACTER KHO KHON */ { 0x0da6, 0x0e06 }, /* Thai_khorakhang ฆ THAI CHARACTER KHO RAKHANG */ { 0x0da7, 0x0e07 }, /* Thai_ngongu ง THAI CHARACTER NGO NGU */ { 0x0da8, 0x0e08 }, /* Thai_chochan จ THAI CHARACTER CHO CHAN */ { 0x0da9, 0x0e09 }, /* Thai_choching ฉ THAI CHARACTER CHO CHING */ { 0x0daa, 0x0e0a }, /* Thai_chochang ช THAI CHARACTER CHO CHANG */ { 0x0dab, 0x0e0b }, /* Thai_soso ซ THAI CHARACTER SO SO */ { 0x0dac, 0x0e0c }, /* Thai_chochoe ฌ THAI CHARACTER CHO CHOE */ { 0x0dad, 0x0e0d }, /* Thai_yoying ญ THAI CHARACTER YO YING */ { 0x0dae, 0x0e0e }, /* Thai_dochada ฎ THAI CHARACTER DO CHADA */ { 0x0daf, 0x0e0f }, /* Thai_topatak ฏ THAI CHARACTER TO PATAK */ { 0x0db0, 0x0e10 }, /* Thai_thothan ฐ THAI CHARACTER THO THAN */ { 0x0db1, 0x0e11 }, /* Thai_thonangmontho ฑ THAI CHARACTER THO NANGMONTHO */ { 0x0db2, 0x0e12 }, /* Thai_thophuthao ฒ THAI CHARACTER THO PHUTHAO */ { 0x0db3, 0x0e13 }, /* Thai_nonen ณ THAI CHARACTER NO NEN */ { 0x0db4, 0x0e14 }, /* Thai_dodek ด THAI CHARACTER DO DEK */ { 0x0db5, 0x0e15 }, /* Thai_totao ต THAI CHARACTER TO TAO */ { 0x0db6, 0x0e16 }, /* Thai_thothung ถ THAI CHARACTER THO THUNG */ { 0x0db7, 0x0e17 }, /* Thai_thothahan ท THAI CHARACTER THO THAHAN */ { 0x0db8, 0x0e18 }, /* Thai_thothong ธ THAI CHARACTER THO THONG */ { 0x0db9, 0x0e19 }, /* Thai_nonu น THAI CHARACTER NO NU */ { 0x0dba, 0x0e1a }, /* Thai_bobaimai บ THAI CHARACTER BO BAIMAI */ { 0x0dbb, 0x0e1b }, /* Thai_popla ป THAI CHARACTER PO PLA */ { 0x0dbc, 0x0e1c }, /* Thai_phophung ผ THAI CHARACTER PHO PHUNG */ { 0x0dbd, 0x0e1d }, /* Thai_fofa ฝ THAI CHARACTER FO FA */ { 0x0dbe, 0x0e1e }, /* Thai_phophan พ THAI CHARACTER PHO PHAN */ { 0x0dbf, 0x0e1f }, /* Thai_fofan ฟ THAI CHARACTER FO FAN */ { 0x0dc0, 0x0e20 }, /* Thai_phosamphao ภ THAI CHARACTER PHO SAMPHAO */ { 0x0dc1, 0x0e21 }, /* Thai_moma ม THAI CHARACTER MO MA */ { 0x0dc2, 0x0e22 }, /* Thai_yoyak ย THAI CHARACTER YO YAK */ { 0x0dc3, 0x0e23 }, /* Thai_rorua ร THAI CHARACTER RO RUA */ { 0x0dc4, 0x0e24 }, /* Thai_ru ฤ THAI CHARACTER RU */ { 0x0dc5, 0x0e25 }, /* Thai_loling ล THAI CHARACTER LO LING */ { 0x0dc6, 0x0e26 }, /* Thai_lu ฦ THAI CHARACTER LU */ { 0x0dc7, 0x0e27 }, /* Thai_wowaen ว THAI CHARACTER WO WAEN */ { 0x0dc8, 0x0e28 }, /* Thai_sosala ศ THAI CHARACTER SO SALA */ { 0x0dc9, 0x0e29 }, /* Thai_sorusi ษ THAI CHARACTER SO RUSI */ { 0x0dca, 0x0e2a }, /* Thai_sosua ส THAI CHARACTER SO SUA */ { 0x0dcb, 0x0e2b }, /* Thai_hohip ห THAI CHARACTER HO HIP */ { 0x0dcc, 0x0e2c }, /* Thai_lochula ฬ THAI CHARACTER LO CHULA */ { 0x0dcd, 0x0e2d }, /* Thai_oang อ THAI CHARACTER O ANG */ { 0x0dce, 0x0e2e }, /* Thai_honokhuk ฮ THAI CHARACTER HO NOKHUK */ { 0x0dcf, 0x0e2f }, /* Thai_paiyannoi ฯ THAI CHARACTER PAIYANNOI */ { 0x0dd0, 0x0e30 }, /* Thai_saraa ะ THAI CHARACTER SARA A */ { 0x0dd1, 0x0e31 }, /* Thai_maihanakat ั THAI CHARACTER MAI HAN-AKAT */ { 0x0dd2, 0x0e32 }, /* Thai_saraaa า THAI CHARACTER SARA AA */ { 0x0dd3, 0x0e33 }, /* Thai_saraam ำ THAI CHARACTER SARA AM */ { 0x0dd4, 0x0e34 }, /* Thai_sarai ิ THAI CHARACTER SARA I */ { 0x0dd5, 0x0e35 }, /* Thai_saraii ี THAI CHARACTER SARA II */ { 0x0dd6, 0x0e36 }, /* Thai_saraue ึ THAI CHARACTER SARA UE */ { 0x0dd7, 0x0e37 }, /* Thai_sarauee ื THAI CHARACTER SARA UEE */ { 0x0dd8, 0x0e38 }, /* Thai_sarau ุ THAI CHARACTER SARA U */ { 0x0dd9, 0x0e39 }, /* Thai_sarauu ู THAI CHARACTER SARA UU */ { 0x0dda, 0x0e3a }, /* Thai_phinthu ฺ THAI CHARACTER PHINTHU */ { 0x0dde, 0x0e3e }, /* Thai_maihanakat_maitho ฾ ??? */ { 0x0ddf, 0x0e3f }, /* Thai_baht ฿ THAI CURRENCY SYMBOL BAHT */ { 0x0de0, 0x0e40 }, /* Thai_sarae เ THAI CHARACTER SARA E */ { 0x0de1, 0x0e41 }, /* Thai_saraae แ THAI CHARACTER SARA AE */ { 0x0de2, 0x0e42 }, /* Thai_sarao โ THAI CHARACTER SARA O */ { 0x0de3, 0x0e43 }, /* Thai_saraaimaimuan ใ THAI CHARACTER SARA AI MAIMUAN */ { 0x0de4, 0x0e44 }, /* Thai_saraaimaimalai ไ THAI CHARACTER SARA AI MAIMALAI */ { 0x0de5, 0x0e45 }, /* Thai_lakkhangyao ๅ THAI CHARACTER LAKKHANGYAO */ { 0x0de6, 0x0e46 }, /* Thai_maiyamok ๆ THAI CHARACTER MAIYAMOK */ { 0x0de7, 0x0e47 }, /* Thai_maitaikhu ็ THAI CHARACTER MAITAIKHU */ { 0x0de8, 0x0e48 }, /* Thai_maiek ่ THAI CHARACTER MAI EK */ { 0x0de9, 0x0e49 }, /* Thai_maitho ้ THAI CHARACTER MAI THO */ { 0x0dea, 0x0e4a }, /* Thai_maitri ๊ THAI CHARACTER MAI TRI */ { 0x0deb, 0x0e4b }, /* Thai_maichattawa ๋ THAI CHARACTER MAI CHATTAWA */ { 0x0dec, 0x0e4c }, /* Thai_thanthakhat ์ THAI CHARACTER THANTHAKHAT */ { 0x0ded, 0x0e4d }, /* Thai_nikhahit ํ THAI CHARACTER NIKHAHIT */ { 0x0df0, 0x0e50 }, /* Thai_leksun ๐ THAI DIGIT ZERO */ { 0x0df1, 0x0e51 }, /* Thai_leknung ๑ THAI DIGIT ONE */ { 0x0df2, 0x0e52 }, /* Thai_leksong ๒ THAI DIGIT TWO */ { 0x0df3, 0x0e53 }, /* Thai_leksam ๓ THAI DIGIT THREE */ { 0x0df4, 0x0e54 }, /* Thai_leksi ๔ THAI DIGIT FOUR */ { 0x0df5, 0x0e55 }, /* Thai_lekha ๕ THAI DIGIT FIVE */ { 0x0df6, 0x0e56 }, /* Thai_lekhok ๖ THAI DIGIT SIX */ { 0x0df7, 0x0e57 }, /* Thai_lekchet ๗ THAI DIGIT SEVEN */ { 0x0df8, 0x0e58 }, /* Thai_lekpaet ๘ THAI DIGIT EIGHT */ { 0x0df9, 0x0e59 }, /* Thai_lekkao ๙ THAI DIGIT NINE */ { 0x0ea1, 0x3131 }, /* Hangul_Kiyeog ㄱ HANGUL LETTER KIYEOK */ { 0x0ea2, 0x3132 }, /* Hangul_SsangKiyeog ㄲ HANGUL LETTER SSANGKIYEOK */ { 0x0ea3, 0x3133 }, /* Hangul_KiyeogSios ㄳ HANGUL LETTER KIYEOK-SIOS */ { 0x0ea4, 0x3134 }, /* Hangul_Nieun ㄴ HANGUL LETTER NIEUN */ { 0x0ea5, 0x3135 }, /* Hangul_NieunJieuj ㄵ HANGUL LETTER NIEUN-CIEUC */ { 0x0ea6, 0x3136 }, /* Hangul_NieunHieuh ㄶ HANGUL LETTER NIEUN-HIEUH */ { 0x0ea7, 0x3137 }, /* Hangul_Dikeud ㄷ HANGUL LETTER TIKEUT */ { 0x0ea8, 0x3138 }, /* Hangul_SsangDikeud ㄸ HANGUL LETTER SSANGTIKEUT */ { 0x0ea9, 0x3139 }, /* Hangul_Rieul ㄹ HANGUL LETTER RIEUL */ { 0x0eaa, 0x313a }, /* Hangul_RieulKiyeog ㄺ HANGUL LETTER RIEUL-KIYEOK */ { 0x0eab, 0x313b }, /* Hangul_RieulMieum ㄻ HANGUL LETTER RIEUL-MIEUM */ { 0x0eac, 0x313c }, /* Hangul_RieulPieub ㄼ HANGUL LETTER RIEUL-PIEUP */ { 0x0ead, 0x313d }, /* Hangul_RieulSios ㄽ HANGUL LETTER RIEUL-SIOS */ { 0x0eae, 0x313e }, /* Hangul_RieulTieut ㄾ HANGUL LETTER RIEUL-THIEUTH */ { 0x0eaf, 0x313f }, /* Hangul_RieulPhieuf ㄿ HANGUL LETTER RIEUL-PHIEUPH */ { 0x0eb0, 0x3140 }, /* Hangul_RieulHieuh ㅀ HANGUL LETTER RIEUL-HIEUH */ { 0x0eb1, 0x3141 }, /* Hangul_Mieum ㅁ HANGUL LETTER MIEUM */ { 0x0eb2, 0x3142 }, /* Hangul_Pieub ㅂ HANGUL LETTER PIEUP */ { 0x0eb3, 0x3143 }, /* Hangul_SsangPieub ㅃ HANGUL LETTER SSANGPIEUP */ { 0x0eb4, 0x3144 }, /* Hangul_PieubSios ㅄ HANGUL LETTER PIEUP-SIOS */ { 0x0eb5, 0x3145 }, /* Hangul_Sios ㅅ HANGUL LETTER SIOS */ { 0x0eb6, 0x3146 }, /* Hangul_SsangSios ㅆ HANGUL LETTER SSANGSIOS */ { 0x0eb7, 0x3147 }, /* Hangul_Ieung ㅇ HANGUL LETTER IEUNG */ { 0x0eb8, 0x3148 }, /* Hangul_Jieuj ㅈ HANGUL LETTER CIEUC */ { 0x0eb9, 0x3149 }, /* Hangul_SsangJieuj ㅉ HANGUL LETTER SSANGCIEUC */ { 0x0eba, 0x314a }, /* Hangul_Cieuc ㅊ HANGUL LETTER CHIEUCH */ { 0x0ebb, 0x314b }, /* Hangul_Khieuq ㅋ HANGUL LETTER KHIEUKH */ { 0x0ebc, 0x314c }, /* Hangul_Tieut ㅌ HANGUL LETTER THIEUTH */ { 0x0ebd, 0x314d }, /* Hangul_Phieuf ㅍ HANGUL LETTER PHIEUPH */ { 0x0ebe, 0x314e }, /* Hangul_Hieuh ㅎ HANGUL LETTER HIEUH */ { 0x0ebf, 0x314f }, /* Hangul_A ㅏ HANGUL LETTER A */ { 0x0ec0, 0x3150 }, /* Hangul_AE ㅐ HANGUL LETTER AE */ { 0x0ec1, 0x3151 }, /* Hangul_YA ㅑ HANGUL LETTER YA */ { 0x0ec2, 0x3152 }, /* Hangul_YAE ㅒ HANGUL LETTER YAE */ { 0x0ec3, 0x3153 }, /* Hangul_EO ㅓ HANGUL LETTER EO */ { 0x0ec4, 0x3154 }, /* Hangul_E ㅔ HANGUL LETTER E */ { 0x0ec5, 0x3155 }, /* Hangul_YEO ㅕ HANGUL LETTER YEO */ { 0x0ec6, 0x3156 }, /* Hangul_YE ㅖ HANGUL LETTER YE */ { 0x0ec7, 0x3157 }, /* Hangul_O ㅗ HANGUL LETTER O */ { 0x0ec8, 0x3158 }, /* Hangul_WA ㅘ HANGUL LETTER WA */ { 0x0ec9, 0x3159 }, /* Hangul_WAE ㅙ HANGUL LETTER WAE */ { 0x0eca, 0x315a }, /* Hangul_OE ㅚ HANGUL LETTER OE */ { 0x0ecb, 0x315b }, /* Hangul_YO ㅛ HANGUL LETTER YO */ { 0x0ecc, 0x315c }, /* Hangul_U ㅜ HANGUL LETTER U */ { 0x0ecd, 0x315d }, /* Hangul_WEO ㅝ HANGUL LETTER WEO */ { 0x0ece, 0x315e }, /* Hangul_WE ㅞ HANGUL LETTER WE */ { 0x0ecf, 0x315f }, /* Hangul_WI ㅟ HANGUL LETTER WI */ { 0x0ed0, 0x3160 }, /* Hangul_YU ㅠ HANGUL LETTER YU */ { 0x0ed1, 0x3161 }, /* Hangul_EU ㅡ HANGUL LETTER EU */ { 0x0ed2, 0x3162 }, /* Hangul_YI ㅢ HANGUL LETTER YI */ { 0x0ed3, 0x3163 }, /* Hangul_I ㅣ HANGUL LETTER I */ { 0x0ed4, 0x11a8 }, /* Hangul_J_Kiyeog ᆨ HANGUL JONGSEONG KIYEOK */ { 0x0ed5, 0x11a9 }, /* Hangul_J_SsangKiyeog ᆩ HANGUL JONGSEONG SSANGKIYEOK */ { 0x0ed6, 0x11aa }, /* Hangul_J_KiyeogSios ᆪ HANGUL JONGSEONG KIYEOK-SIOS */ { 0x0ed7, 0x11ab }, /* Hangul_J_Nieun ᆫ HANGUL JONGSEONG NIEUN */ { 0x0ed8, 0x11ac }, /* Hangul_J_NieunJieuj ᆬ HANGUL JONGSEONG NIEUN-CIEUC */ { 0x0ed9, 0x11ad }, /* Hangul_J_NieunHieuh ᆭ HANGUL JONGSEONG NIEUN-HIEUH */ { 0x0eda, 0x11ae }, /* Hangul_J_Dikeud ᆮ HANGUL JONGSEONG TIKEUT */ { 0x0edb, 0x11af }, /* Hangul_J_Rieul ᆯ HANGUL JONGSEONG RIEUL */ { 0x0edc, 0x11b0 }, /* Hangul_J_RieulKiyeog ᆰ HANGUL JONGSEONG RIEUL-KIYEOK */ { 0x0edd, 0x11b1 }, /* Hangul_J_RieulMieum ᆱ HANGUL JONGSEONG RIEUL-MIEUM */ { 0x0ede, 0x11b2 }, /* Hangul_J_RieulPieub ᆲ HANGUL JONGSEONG RIEUL-PIEUP */ { 0x0edf, 0x11b3 }, /* Hangul_J_RieulSios ᆳ HANGUL JONGSEONG RIEUL-SIOS */ { 0x0ee0, 0x11b4 }, /* Hangul_J_RieulTieut ᆴ HANGUL JONGSEONG RIEUL-THIEUTH */ { 0x0ee1, 0x11b5 }, /* Hangul_J_RieulPhieuf ᆵ HANGUL JONGSEONG RIEUL-PHIEUPH */ { 0x0ee2, 0x11b6 }, /* Hangul_J_RieulHieuh ᆶ HANGUL JONGSEONG RIEUL-HIEUH */ { 0x0ee3, 0x11b7 }, /* Hangul_J_Mieum ᆷ HANGUL JONGSEONG MIEUM */ { 0x0ee4, 0x11b8 }, /* Hangul_J_Pieub ᆸ HANGUL JONGSEONG PIEUP */ { 0x0ee5, 0x11b9 }, /* Hangul_J_PieubSios ᆹ HANGUL JONGSEONG PIEUP-SIOS */ { 0x0ee6, 0x11ba }, /* Hangul_J_Sios ᆺ HANGUL JONGSEONG SIOS */ { 0x0ee7, 0x11bb }, /* Hangul_J_SsangSios ᆻ HANGUL JONGSEONG SSANGSIOS */ { 0x0ee8, 0x11bc }, /* Hangul_J_Ieung ᆼ HANGUL JONGSEONG IEUNG */ { 0x0ee9, 0x11bd }, /* Hangul_J_Jieuj ᆽ HANGUL JONGSEONG CIEUC */ { 0x0eea, 0x11be }, /* Hangul_J_Cieuc ᆾ HANGUL JONGSEONG CHIEUCH */ { 0x0eeb, 0x11bf }, /* Hangul_J_Khieuq ᆿ HANGUL JONGSEONG KHIEUKH */ { 0x0eec, 0x11c0 }, /* Hangul_J_Tieut ᇀ HANGUL JONGSEONG THIEUTH */ { 0x0eed, 0x11c1 }, /* Hangul_J_Phieuf ᇁ HANGUL JONGSEONG PHIEUPH */ { 0x0eee, 0x11c2 }, /* Hangul_J_Hieuh ᇂ HANGUL JONGSEONG HIEUH */ { 0x0eef, 0x316d }, /* Hangul_RieulYeorinHieuh ㅭ HANGUL LETTER RIEUL-YEORINHIEUH */ { 0x0ef0, 0x3171 }, /* Hangul_SunkyeongeumMieum ㅱ HANGUL LETTER KAPYEOUNMIEUM */ { 0x0ef1, 0x3178 }, /* Hangul_SunkyeongeumPieub ㅸ HANGUL LETTER KAPYEOUNPIEUP */ { 0x0ef2, 0x317f }, /* Hangul_PanSios ㅿ HANGUL LETTER PANSIOS */ /* 0x0ef3 Hangul_KkogjiDalrinIeung ? ??? */ { 0x0ef4, 0x3184 }, /* Hangul_SunkyeongeumPhieuf ㆄ HANGUL LETTER KAPYEOUNPHIEUPH */ { 0x0ef5, 0x3186 }, /* Hangul_YeorinHieuh ㆆ HANGUL LETTER YEORINHIEUH */ { 0x0ef6, 0x318d }, /* Hangul_AraeA ㆍ HANGUL LETTER ARAEA */ { 0x0ef7, 0x318e }, /* Hangul_AraeAE ㆎ HANGUL LETTER ARAEAE */ { 0x0ef8, 0x11eb }, /* Hangul_J_PanSios ᇫ HANGUL JONGSEONG PANSIOS */ /* 0x0ef9 Hangul_J_KkogjiDalrinIeung ? ??? */ { 0x0efa, 0x11f9 }, /* Hangul_J_YeorinHieuh ᇹ HANGUL JONGSEONG YEORINHIEUH */ { 0x0eff, 0x20a9 }, /* Korean_Won ₩ WON SIGN */ { 0x13bc, 0x0152 }, /* OE Œ LATIN CAPITAL LIGATURE OE */ { 0x13bd, 0x0153 }, /* oe œ LATIN SMALL LIGATURE OE */ { 0x13be, 0x0178 }, /* Ydiaeresis Ÿ LATIN CAPITAL LETTER Y WITH DIAERESIS */ { 0x20a0, 0x20a0 }, /* EcuSign ₠ EURO-CURRENCY SIGN */ { 0x20a1, 0x20a1 }, /* ColonSign ₡ COLON SIGN */ { 0x20a2, 0x20a2 }, /* CruzeiroSign ₢ CRUZEIRO SIGN */ { 0x20a3, 0x20a3 }, /* FFrancSign ₣ FRENCH FRANC SIGN */ { 0x20a4, 0x20a4 }, /* LiraSign ₤ LIRA SIGN */ { 0x20a5, 0x20a5 }, /* MillSign ₥ MILL SIGN */ { 0x20a6, 0x20a6 }, /* NairaSign ₦ NAIRA SIGN */ { 0x20a7, 0x20a7 }, /* PesetaSign ₧ PESETA SIGN */ { 0x20a8, 0x20a8 }, /* RupeeSign ₨ RUPEE SIGN */ { 0x20a9, 0x20a9 }, /* WonSign ₩ WON SIGN */ { 0x20aa, 0x20aa }, /* NewSheqelSign ₪ NEW SHEQEL SIGN */ { 0x20ab, 0x20ab }, /* DongSign ₫ DONG SIGN */ { 0x20ac, 0x20ac }, /* EuroSign € EURO SIGN */ /* Following items added to GTK, not in the xterm table */ /* Numeric keypad */ { 0xFF80 /* Space */, ' ' }, { 0xFFAA /* Multiply */, '*' }, { 0xFFAB /* Add */, '+' }, { 0xFFAC /* Separator */, ',' }, { 0xFFAD /* Subtract */, '-' }, { 0xFFAE /* Decimal */, '.' }, { 0xFFAF /* Divide */, '/' }, { 0xFFB0 /* 0 */, '0' }, { 0xFFB1 /* 1 */, '1' }, { 0xFFB2 /* 2 */, '2' }, { 0xFFB3 /* 3 */, '3' }, { 0xFFB4 /* 4 */, '4' }, { 0xFFB5 /* 5 */, '5' }, { 0xFFB6 /* 6 */, '6' }, { 0xFFB7 /* 7 */, '7' }, { 0xFFB8 /* 8 */, '8' }, { 0xFFB9 /* 9 */, '9' }, { 0xFFBD /* Equal */, '=' }, /* End numeric keypad */ }; /** * ibus_keyval_to_unicode: * @keyval: a GDK key symbol * * Convert from a GDK key symbol to the corresponding ISO10646 (Unicode) * character. * * Return value: the corresponding unicode character, or 0 if there * is no corresponding character. **/ quint32 ibus_keyval_to_unicode (uint keyval) { int min = 0; int max = sizeof (ibus_keysym_to_unicode_tab) / sizeof (ibus_keysym_to_unicode_tab[0]) - 1; int mid; /* First check for Latin-1 characters (1:1 mapping) */ if ((keyval >= 0x0020 && keyval <= 0x007e) || (keyval >= 0x00a0 && keyval <= 0x00ff)) return keyval; /* Also check for directly encoded 24-bit UCS characters: */ if ((keyval & 0xff000000) == 0x01000000) return keyval & 0x00ffffff; /* binary search in table */ while (max >= min) { mid = (min + max) / 2; if (ibus_keysym_to_unicode_tab[mid].keysym < keyval) min = mid + 1; else if (ibus_keysym_to_unicode_tab[mid].keysym > keyval) max = mid - 1; else { /* found it */ return ibus_keysym_to_unicode_tab[mid].ucs; } } /* No matching Unicode value found */ return 0; } static const struct { unsigned short keysym; unsigned short ucs; } ibus_unicode_to_keysym_tab[] = { { 0x0abd, 0x002e }, /* decimalpoint . FULL STOP */ { 0x0ba3, 0x003c }, /* leftcaret < LESS-THAN SIGN */ { 0x0ba6, 0x003e }, /* rightcaret > GREATER-THAN SIGN */ { 0x0bc6, 0x005f }, /* underbar _ LOW LINE */ { 0x0bc0, 0x00af }, /* overbar ¯ MACRON */ { 0x03c0, 0x0100 }, /* Amacron Ā LATIN CAPITAL LETTER A WITH MACRON */ { 0x03e0, 0x0101 }, /* amacron ā LATIN SMALL LETTER A WITH MACRON */ { 0x01c3, 0x0102 }, /* Abreve Ă LATIN CAPITAL LETTER A WITH BREVE */ { 0x01e3, 0x0103 }, /* abreve ă LATIN SMALL LETTER A WITH BREVE */ { 0x01a1, 0x0104 }, /* Aogonek Ą LATIN CAPITAL LETTER A WITH OGONEK */ { 0x01b1, 0x0105 }, /* aogonek ą LATIN SMALL LETTER A WITH OGONEK */ { 0x01c6, 0x0106 }, /* Cacute Ć LATIN CAPITAL LETTER C WITH ACUTE */ { 0x01e6, 0x0107 }, /* cacute ć LATIN SMALL LETTER C WITH ACUTE */ { 0x02c6, 0x0108 }, /* Ccircumflex Ĉ LATIN CAPITAL LETTER C WITH CIRCUMFLEX */ { 0x02e6, 0x0109 }, /* ccircumflex ĉ LATIN SMALL LETTER C WITH CIRCUMFLEX */ { 0x02c5, 0x010a }, /* Cabovedot Ċ LATIN CAPITAL LETTER C WITH DOT ABOVE */ { 0x02e5, 0x010b }, /* cabovedot ċ LATIN SMALL LETTER C WITH DOT ABOVE */ { 0x01c8, 0x010c }, /* Ccaron Č LATIN CAPITAL LETTER C WITH CARON */ { 0x01e8, 0x010d }, /* ccaron č LATIN SMALL LETTER C WITH CARON */ { 0x01cf, 0x010e }, /* Dcaron Ď LATIN CAPITAL LETTER D WITH CARON */ { 0x01ef, 0x010f }, /* dcaron ď LATIN SMALL LETTER D WITH CARON */ { 0x01d0, 0x0110 }, /* Dstroke Đ LATIN CAPITAL LETTER D WITH STROKE */ { 0x01f0, 0x0111 }, /* dstroke đ LATIN SMALL LETTER D WITH STROKE */ { 0x03aa, 0x0112 }, /* Emacron Ē LATIN CAPITAL LETTER E WITH MACRON */ { 0x03ba, 0x0113 }, /* emacron ē LATIN SMALL LETTER E WITH MACRON */ { 0x03cc, 0x0116 }, /* Eabovedot Ė LATIN CAPITAL LETTER E WITH DOT ABOVE */ { 0x03ec, 0x0117 }, /* eabovedot ė LATIN SMALL LETTER E WITH DOT ABOVE */ { 0x01ca, 0x0118 }, /* Eogonek Ę LATIN CAPITAL LETTER E WITH OGONEK */ { 0x01ea, 0x0119 }, /* eogonek ę LATIN SMALL LETTER E WITH OGONEK */ { 0x01cc, 0x011a }, /* Ecaron Ě LATIN CAPITAL LETTER E WITH CARON */ { 0x01ec, 0x011b }, /* ecaron ě LATIN SMALL LETTER E WITH CARON */ { 0x02d8, 0x011c }, /* Gcircumflex Ĝ LATIN CAPITAL LETTER G WITH CIRCUMFLEX */ { 0x02f8, 0x011d }, /* gcircumflex ĝ LATIN SMALL LETTER G WITH CIRCUMFLEX */ { 0x02ab, 0x011e }, /* Gbreve Ğ LATIN CAPITAL LETTER G WITH BREVE */ { 0x02bb, 0x011f }, /* gbreve ğ LATIN SMALL LETTER G WITH BREVE */ { 0x02d5, 0x0120 }, /* Gabovedot Ġ LATIN CAPITAL LETTER G WITH DOT ABOVE */ { 0x02f5, 0x0121 }, /* gabovedot ġ LATIN SMALL LETTER G WITH DOT ABOVE */ { 0x03ab, 0x0122 }, /* Gcedilla Ģ LATIN CAPITAL LETTER G WITH CEDILLA */ { 0x03bb, 0x0123 }, /* gcedilla ģ LATIN SMALL LETTER G WITH CEDILLA */ { 0x02a6, 0x0124 }, /* Hcircumflex Ĥ LATIN CAPITAL LETTER H WITH CIRCUMFLEX */ { 0x02b6, 0x0125 }, /* hcircumflex ĥ LATIN SMALL LETTER H WITH CIRCUMFLEX */ { 0x02a1, 0x0126 }, /* Hstroke Ħ LATIN CAPITAL LETTER H WITH STROKE */ { 0x02b1, 0x0127 }, /* hstroke ħ LATIN SMALL LETTER H WITH STROKE */ { 0x03a5, 0x0128 }, /* Itilde Ĩ LATIN CAPITAL LETTER I WITH TILDE */ { 0x03b5, 0x0129 }, /* itilde ĩ LATIN SMALL LETTER I WITH TILDE */ { 0x03cf, 0x012a }, /* Imacron Ī LATIN CAPITAL LETTER I WITH MACRON */ { 0x03ef, 0x012b }, /* imacron ī LATIN SMALL LETTER I WITH MACRON */ { 0x03c7, 0x012e }, /* Iogonek Į LATIN CAPITAL LETTER I WITH OGONEK */ { 0x03e7, 0x012f }, /* iogonek į LATIN SMALL LETTER I WITH OGONEK */ { 0x02a9, 0x0130 }, /* Iabovedot İ LATIN CAPITAL LETTER I WITH DOT ABOVE */ { 0x02b9, 0x0131 }, /* idotless ı LATIN SMALL LETTER DOTLESS I */ { 0x02ac, 0x0134 }, /* Jcircumflex Ĵ LATIN CAPITAL LETTER J WITH CIRCUMFLEX */ { 0x02bc, 0x0135 }, /* jcircumflex ĵ LATIN SMALL LETTER J WITH CIRCUMFLEX */ { 0x03d3, 0x0136 }, /* Kcedilla Ķ LATIN CAPITAL LETTER K WITH CEDILLA */ { 0x03f3, 0x0137 }, /* kcedilla ķ LATIN SMALL LETTER K WITH CEDILLA */ { 0x03a2, 0x0138 }, /* kra ĸ LATIN SMALL LETTER KRA */ { 0x01c5, 0x0139 }, /* Lacute Ĺ LATIN CAPITAL LETTER L WITH ACUTE */ { 0x01e5, 0x013a }, /* lacute ĺ LATIN SMALL LETTER L WITH ACUTE */ { 0x03a6, 0x013b }, /* Lcedilla Ļ LATIN CAPITAL LETTER L WITH CEDILLA */ { 0x03b6, 0x013c }, /* lcedilla ļ LATIN SMALL LETTER L WITH CEDILLA */ { 0x01a5, 0x013d }, /* Lcaron Ľ LATIN CAPITAL LETTER L WITH CARON */ { 0x01b5, 0x013e }, /* lcaron ľ LATIN SMALL LETTER L WITH CARON */ { 0x01a3, 0x0141 }, /* Lstroke Ł LATIN CAPITAL LETTER L WITH STROKE */ { 0x01b3, 0x0142 }, /* lstroke ł LATIN SMALL LETTER L WITH STROKE */ { 0x01d1, 0x0143 }, /* Nacute Ń LATIN CAPITAL LETTER N WITH ACUTE */ { 0x01f1, 0x0144 }, /* nacute ń LATIN SMALL LETTER N WITH ACUTE */ { 0x03d1, 0x0145 }, /* Ncedilla Ņ LATIN CAPITAL LETTER N WITH CEDILLA */ { 0x03f1, 0x0146 }, /* ncedilla ņ LATIN SMALL LETTER N WITH CEDILLA */ { 0x01d2, 0x0147 }, /* Ncaron Ň LATIN CAPITAL LETTER N WITH CARON */ { 0x01f2, 0x0148 }, /* ncaron ň LATIN SMALL LETTER N WITH CARON */ { 0x03bd, 0x014a }, /* ENG Ŋ LATIN CAPITAL LETTER ENG */ { 0x03bf, 0x014b }, /* eng ŋ LATIN SMALL LETTER ENG */ { 0x03d2, 0x014c }, /* Omacron Ō LATIN CAPITAL LETTER O WITH MACRON */ { 0x03f2, 0x014d }, /* omacron ō LATIN SMALL LETTER O WITH MACRON */ { 0x01d5, 0x0150 }, /* Odoubleacute Ő LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */ { 0x01f5, 0x0151 }, /* odoubleacute ő LATIN SMALL LETTER O WITH DOUBLE ACUTE */ { 0x13bc, 0x0152 }, /* OE Œ LATIN CAPITAL LIGATURE OE */ { 0x13bd, 0x0153 }, /* oe œ LATIN SMALL LIGATURE OE */ { 0x01c0, 0x0154 }, /* Racute Ŕ LATIN CAPITAL LETTER R WITH ACUTE */ { 0x01e0, 0x0155 }, /* racute ŕ LATIN SMALL LETTER R WITH ACUTE */ { 0x03a3, 0x0156 }, /* Rcedilla Ŗ LATIN CAPITAL LETTER R WITH CEDILLA */ { 0x03b3, 0x0157 }, /* rcedilla ŗ LATIN SMALL LETTER R WITH CEDILLA */ { 0x01d8, 0x0158 }, /* Rcaron Ř LATIN CAPITAL LETTER R WITH CARON */ { 0x01f8, 0x0159 }, /* rcaron ř LATIN SMALL LETTER R WITH CARON */ { 0x01a6, 0x015a }, /* Sacute Ś LATIN CAPITAL LETTER S WITH ACUTE */ { 0x01b6, 0x015b }, /* sacute ś LATIN SMALL LETTER S WITH ACUTE */ { 0x02de, 0x015c }, /* Scircumflex Ŝ LATIN CAPITAL LETTER S WITH CIRCUMFLEX */ { 0x02fe, 0x015d }, /* scircumflex ŝ LATIN SMALL LETTER S WITH CIRCUMFLEX */ { 0x01aa, 0x015e }, /* Scedilla Ş LATIN CAPITAL LETTER S WITH CEDILLA */ { 0x01ba, 0x015f }, /* scedilla ş LATIN SMALL LETTER S WITH CEDILLA */ { 0x01a9, 0x0160 }, /* Scaron Š LATIN CAPITAL LETTER S WITH CARON */ { 0x01b9, 0x0161 }, /* scaron š LATIN SMALL LETTER S WITH CARON */ { 0x01de, 0x0162 }, /* Tcedilla Ţ LATIN CAPITAL LETTER T WITH CEDILLA */ { 0x01fe, 0x0163 }, /* tcedilla ţ LATIN SMALL LETTER T WITH CEDILLA */ { 0x01ab, 0x0164 }, /* Tcaron Ť LATIN CAPITAL LETTER T WITH CARON */ { 0x01bb, 0x0165 }, /* tcaron ť LATIN SMALL LETTER T WITH CARON */ { 0x03ac, 0x0166 }, /* Tslash Ŧ LATIN CAPITAL LETTER T WITH STROKE */ { 0x03bc, 0x0167 }, /* tslash ŧ LATIN SMALL LETTER T WITH STROKE */ { 0x03dd, 0x0168 }, /* Utilde Ũ LATIN CAPITAL LETTER U WITH TILDE */ { 0x03fd, 0x0169 }, /* utilde ũ LATIN SMALL LETTER U WITH TILDE */ { 0x03de, 0x016a }, /* Umacron Ū LATIN CAPITAL LETTER U WITH MACRON */ { 0x03fe, 0x016b }, /* umacron ū LATIN SMALL LETTER U WITH MACRON */ { 0x02dd, 0x016c }, /* Ubreve Ŭ LATIN CAPITAL LETTER U WITH BREVE */ { 0x02fd, 0x016d }, /* ubreve ŭ LATIN SMALL LETTER U WITH BREVE */ { 0x01d9, 0x016e }, /* Uring Ů LATIN CAPITAL LETTER U WITH RING ABOVE */ { 0x01f9, 0x016f }, /* uring ů LATIN SMALL LETTER U WITH RING ABOVE */ { 0x01db, 0x0170 }, /* Udoubleacute Ű LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */ { 0x01fb, 0x0171 }, /* udoubleacute ű LATIN SMALL LETTER U WITH DOUBLE ACUTE */ { 0x03d9, 0x0172 }, /* Uogonek Ų LATIN CAPITAL LETTER U WITH OGONEK */ { 0x03f9, 0x0173 }, /* uogonek ų LATIN SMALL LETTER U WITH OGONEK */ { 0x13be, 0x0178 }, /* Ydiaeresis Ÿ LATIN CAPITAL LETTER Y WITH DIAERESIS */ { 0x01ac, 0x0179 }, /* Zacute Ź LATIN CAPITAL LETTER Z WITH ACUTE */ { 0x01bc, 0x017a }, /* zacute ź LATIN SMALL LETTER Z WITH ACUTE */ { 0x01af, 0x017b }, /* Zabovedot Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE */ { 0x01bf, 0x017c }, /* zabovedot ż LATIN SMALL LETTER Z WITH DOT ABOVE */ { 0x01ae, 0x017d }, /* Zcaron Ž LATIN CAPITAL LETTER Z WITH CARON */ { 0x01be, 0x017e }, /* zcaron ž LATIN SMALL LETTER Z WITH CARON */ { 0x08f6, 0x0192 }, /* function ƒ LATIN SMALL LETTER F WITH HOOK */ { 0x01b7, 0x02c7 }, /* caron ˇ CARON */ { 0x01a2, 0x02d8 }, /* breve ˘ BREVE */ { 0x01ff, 0x02d9 }, /* abovedot ˙ DOT ABOVE */ { 0x01b2, 0x02db }, /* ogonek ˛ OGONEK */ { 0x01bd, 0x02dd }, /* doubleacute ˝ DOUBLE ACUTE ACCENT */ { 0x07ae, 0x0385 }, /* Greek_accentdieresis ΅ GREEK DIALYTIKA TONOS */ { 0x07a1, 0x0386 }, /* Greek_ALPHAaccent Ά GREEK CAPITAL LETTER ALPHA WITH TONOS */ { 0x07a2, 0x0388 }, /* Greek_EPSILONaccent Έ GREEK CAPITAL LETTER EPSILON WITH TONOS */ { 0x07a3, 0x0389 }, /* Greek_ETAaccent Ή GREEK CAPITAL LETTER ETA WITH TONOS */ { 0x07a4, 0x038a }, /* Greek_IOTAaccent Ί GREEK CAPITAL LETTER IOTA WITH TONOS */ { 0x07a7, 0x038c }, /* Greek_OMICRONaccent Ό GREEK CAPITAL LETTER OMICRON WITH TONOS */ { 0x07a8, 0x038e }, /* Greek_UPSILONaccent Ύ GREEK CAPITAL LETTER UPSILON WITH TONOS */ { 0x07ab, 0x038f }, /* Greek_OMEGAaccent Ώ GREEK CAPITAL LETTER OMEGA WITH TONOS */ { 0x07b6, 0x0390 }, /* Greek_iotaaccentdieresis ΐ GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */ { 0x07c1, 0x0391 }, /* Greek_ALPHA Α GREEK CAPITAL LETTER ALPHA */ { 0x07c2, 0x0392 }, /* Greek_BETA Β GREEK CAPITAL LETTER BETA */ { 0x07c3, 0x0393 }, /* Greek_GAMMA Γ GREEK CAPITAL LETTER GAMMA */ { 0x07c4, 0x0394 }, /* Greek_DELTA Δ GREEK CAPITAL LETTER DELTA */ { 0x07c5, 0x0395 }, /* Greek_EPSILON Ε GREEK CAPITAL LETTER EPSILON */ { 0x07c6, 0x0396 }, /* Greek_ZETA Ζ GREEK CAPITAL LETTER ZETA */ { 0x07c7, 0x0397 }, /* Greek_ETA Η GREEK CAPITAL LETTER ETA */ { 0x07c8, 0x0398 }, /* Greek_THETA Θ GREEK CAPITAL LETTER THETA */ { 0x07c9, 0x0399 }, /* Greek_IOTA Ι GREEK CAPITAL LETTER IOTA */ { 0x07ca, 0x039a }, /* Greek_KAPPA Κ GREEK CAPITAL LETTER KAPPA */ { 0x07cb, 0x039b }, /* Greek_LAMBDA Λ GREEK CAPITAL LETTER LAMDA */ { 0x07cc, 0x039c }, /* Greek_MU Μ GREEK CAPITAL LETTER MU */ { 0x07cd, 0x039d }, /* Greek_NU Ν GREEK CAPITAL LETTER NU */ { 0x07ce, 0x039e }, /* Greek_XI Ξ GREEK CAPITAL LETTER XI */ { 0x07cf, 0x039f }, /* Greek_OMICRON Ο GREEK CAPITAL LETTER OMICRON */ { 0x07d0, 0x03a0 }, /* Greek_PI Π GREEK CAPITAL LETTER PI */ { 0x07d1, 0x03a1 }, /* Greek_RHO Ρ GREEK CAPITAL LETTER RHO */ { 0x07d2, 0x03a3 }, /* Greek_SIGMA Σ GREEK CAPITAL LETTER SIGMA */ { 0x07d4, 0x03a4 }, /* Greek_TAU Τ GREEK CAPITAL LETTER TAU */ { 0x07d5, 0x03a5 }, /* Greek_UPSILON Υ GREEK CAPITAL LETTER UPSILON */ { 0x07d6, 0x03a6 }, /* Greek_PHI Φ GREEK CAPITAL LETTER PHI */ { 0x07d7, 0x03a7 }, /* Greek_CHI Χ GREEK CAPITAL LETTER CHI */ { 0x07d8, 0x03a8 }, /* Greek_PSI Ψ GREEK CAPITAL LETTER PSI */ { 0x07d9, 0x03a9 }, /* Greek_OMEGA Ω GREEK CAPITAL LETTER OMEGA */ { 0x07a5, 0x03aa }, /* Greek_IOTAdieresis Ϊ GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */ { 0x07a9, 0x03ab }, /* Greek_UPSILONdieresis Ϋ GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */ { 0x07b1, 0x03ac }, /* Greek_alphaaccent ά GREEK SMALL LETTER ALPHA WITH TONOS */ { 0x07b2, 0x03ad }, /* Greek_epsilonaccent έ GREEK SMALL LETTER EPSILON WITH TONOS */ { 0x07b3, 0x03ae }, /* Greek_etaaccent ή GREEK SMALL LETTER ETA WITH TONOS */ { 0x07b4, 0x03af }, /* Greek_iotaaccent ί GREEK SMALL LETTER IOTA WITH TONOS */ { 0x07ba, 0x03b0 }, /* Greek_upsilonaccentdieresis ΰ GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */ { 0x07e1, 0x03b1 }, /* Greek_alpha α GREEK SMALL LETTER ALPHA */ { 0x07e2, 0x03b2 }, /* Greek_beta β GREEK SMALL LETTER BETA */ { 0x07e3, 0x03b3 }, /* Greek_gamma γ GREEK SMALL LETTER GAMMA */ { 0x07e4, 0x03b4 }, /* Greek_delta δ GREEK SMALL LETTER DELTA */ { 0x07e5, 0x03b5 }, /* Greek_epsilon ε GREEK SMALL LETTER EPSILON */ { 0x07e6, 0x03b6 }, /* Greek_zeta ζ GREEK SMALL LETTER ZETA */ { 0x07e7, 0x03b7 }, /* Greek_eta η GREEK SMALL LETTER ETA */ { 0x07e8, 0x03b8 }, /* Greek_theta θ GREEK SMALL LETTER THETA */ { 0x07e9, 0x03b9 }, /* Greek_iota ι GREEK SMALL LETTER IOTA */ { 0x07ea, 0x03ba }, /* Greek_kappa κ GREEK SMALL LETTER KAPPA */ { 0x07eb, 0x03bb }, /* Greek_lambda λ GREEK SMALL LETTER LAMDA */ { 0x07ec, 0x03bc }, /* Greek_mu μ GREEK SMALL LETTER MU */ { 0x07ed, 0x03bd }, /* Greek_nu ν GREEK SMALL LETTER NU */ { 0x07ee, 0x03be }, /* Greek_xi ξ GREEK SMALL LETTER XI */ { 0x07ef, 0x03bf }, /* Greek_omicron ο GREEK SMALL LETTER OMICRON */ { 0x07f0, 0x03c0 }, /* Greek_pi π GREEK SMALL LETTER PI */ { 0x07f1, 0x03c1 }, /* Greek_rho ρ GREEK SMALL LETTER RHO */ { 0x07f3, 0x03c2 }, /* Greek_finalsmallsigma ς GREEK SMALL LETTER FINAL SIGMA */ { 0x07f2, 0x03c3 }, /* Greek_sigma σ GREEK SMALL LETTER SIGMA */ { 0x07f4, 0x03c4 }, /* Greek_tau τ GREEK SMALL LETTER TAU */ { 0x07f5, 0x03c5 }, /* Greek_upsilon υ GREEK SMALL LETTER UPSILON */ { 0x07f6, 0x03c6 }, /* Greek_phi φ GREEK SMALL LETTER PHI */ { 0x07f7, 0x03c7 }, /* Greek_chi χ GREEK SMALL LETTER CHI */ { 0x07f8, 0x03c8 }, /* Greek_psi ψ GREEK SMALL LETTER PSI */ { 0x07f9, 0x03c9 }, /* Greek_omega ω GREEK SMALL LETTER OMEGA */ { 0x07b5, 0x03ca }, /* Greek_iotadieresis ϊ GREEK SMALL LETTER IOTA WITH DIALYTIKA */ { 0x07b9, 0x03cb }, /* Greek_upsilondieresis ϋ GREEK SMALL LETTER UPSILON WITH DIALYTIKA */ { 0x07b7, 0x03cc }, /* Greek_omicronaccent ό GREEK SMALL LETTER OMICRON WITH TONOS */ { 0x07b8, 0x03cd }, /* Greek_upsilonaccent ύ GREEK SMALL LETTER UPSILON WITH TONOS */ { 0x07bb, 0x03ce }, /* Greek_omegaaccent ώ GREEK SMALL LETTER OMEGA WITH TONOS */ { 0x06b3, 0x0401 }, /* Cyrillic_IO Ё CYRILLIC CAPITAL LETTER IO */ { 0x06b1, 0x0402 }, /* Serbian_DJE Ђ CYRILLIC CAPITAL LETTER DJE */ { 0x06b2, 0x0403 }, /* Macedonia_GJE Ѓ CYRILLIC CAPITAL LETTER GJE */ { 0x06b4, 0x0404 }, /* Ukrainian_IE Є CYRILLIC CAPITAL LETTER UKRAINIAN IE */ { 0x06b5, 0x0405 }, /* Macedonia_DSE Ѕ CYRILLIC CAPITAL LETTER DZE */ { 0x06b6, 0x0406 }, /* Ukrainian_I І CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */ { 0x06b7, 0x0407 }, /* Ukrainian_YI Ї CYRILLIC CAPITAL LETTER YI */ { 0x06b8, 0x0408 }, /* Cyrillic_JE Ј CYRILLIC CAPITAL LETTER JE */ { 0x06b9, 0x0409 }, /* Cyrillic_LJE Љ CYRILLIC CAPITAL LETTER LJE */ { 0x06ba, 0x040a }, /* Cyrillic_NJE Њ CYRILLIC CAPITAL LETTER NJE */ { 0x06bb, 0x040b }, /* Serbian_TSHE Ћ CYRILLIC CAPITAL LETTER TSHE */ { 0x06bc, 0x040c }, /* Macedonia_KJE Ќ CYRILLIC CAPITAL LETTER KJE */ { 0x06be, 0x040e }, /* Byelorussian_SHORTU Ў CYRILLIC CAPITAL LETTER SHORT U */ { 0x06bf, 0x040f }, /* Cyrillic_DZHE Џ CYRILLIC CAPITAL LETTER DZHE */ { 0x06e1, 0x0410 }, /* Cyrillic_A А CYRILLIC CAPITAL LETTER A */ { 0x06e2, 0x0411 }, /* Cyrillic_BE Б CYRILLIC CAPITAL LETTER BE */ { 0x06f7, 0x0412 }, /* Cyrillic_VE В CYRILLIC CAPITAL LETTER VE */ { 0x06e7, 0x0413 }, /* Cyrillic_GHE Г CYRILLIC CAPITAL LETTER GHE */ { 0x06e4, 0x0414 }, /* Cyrillic_DE Д CYRILLIC CAPITAL LETTER DE */ { 0x06e5, 0x0415 }, /* Cyrillic_IE Е CYRILLIC CAPITAL LETTER IE */ { 0x06f6, 0x0416 }, /* Cyrillic_ZHE Ж CYRILLIC CAPITAL LETTER ZHE */ { 0x06fa, 0x0417 }, /* Cyrillic_ZE З CYRILLIC CAPITAL LETTER ZE */ { 0x06e9, 0x0418 }, /* Cyrillic_I И CYRILLIC CAPITAL LETTER I */ { 0x06ea, 0x0419 }, /* Cyrillic_SHORTI Й CYRILLIC CAPITAL LETTER SHORT I */ { 0x06eb, 0x041a }, /* Cyrillic_KA К CYRILLIC CAPITAL LETTER KA */ { 0x06ec, 0x041b }, /* Cyrillic_EL Л CYRILLIC CAPITAL LETTER EL */ { 0x06ed, 0x041c }, /* Cyrillic_EM М CYRILLIC CAPITAL LETTER EM */ { 0x06ee, 0x041d }, /* Cyrillic_EN Н CYRILLIC CAPITAL LETTER EN */ { 0x06ef, 0x041e }, /* Cyrillic_O О CYRILLIC CAPITAL LETTER O */ { 0x06f0, 0x041f }, /* Cyrillic_PE П CYRILLIC CAPITAL LETTER PE */ { 0x06f2, 0x0420 }, /* Cyrillic_ER Р CYRILLIC CAPITAL LETTER ER */ { 0x06f3, 0x0421 }, /* Cyrillic_ES С CYRILLIC CAPITAL LETTER ES */ { 0x06f4, 0x0422 }, /* Cyrillic_TE Т CYRILLIC CAPITAL LETTER TE */ { 0x06f5, 0x0423 }, /* Cyrillic_U У CYRILLIC CAPITAL LETTER U */ { 0x06e6, 0x0424 }, /* Cyrillic_EF Ф CYRILLIC CAPITAL LETTER EF */ { 0x06e8, 0x0425 }, /* Cyrillic_HA Х CYRILLIC CAPITAL LETTER HA */ { 0x06e3, 0x0426 }, /* Cyrillic_TSE Ц CYRILLIC CAPITAL LETTER TSE */ { 0x06fe, 0x0427 }, /* Cyrillic_CHE Ч CYRILLIC CAPITAL LETTER CHE */ { 0x06fb, 0x0428 }, /* Cyrillic_SHA Ш CYRILLIC CAPITAL LETTER SHA */ { 0x06fd, 0x0429 }, /* Cyrillic_SHCHA Щ CYRILLIC CAPITAL LETTER SHCHA */ { 0x06ff, 0x042a }, /* Cyrillic_HARDSIGN Ъ CYRILLIC CAPITAL LETTER HARD SIGN */ { 0x06f9, 0x042b }, /* Cyrillic_YERU Ы CYRILLIC CAPITAL LETTER YERU */ { 0x06f8, 0x042c }, /* Cyrillic_SOFTSIGN Ь CYRILLIC CAPITAL LETTER SOFT SIGN */ { 0x06fc, 0x042d }, /* Cyrillic_E Э CYRILLIC CAPITAL LETTER E */ { 0x06e0, 0x042e }, /* Cyrillic_YU Ю CYRILLIC CAPITAL LETTER YU */ { 0x06f1, 0x042f }, /* Cyrillic_YA Я CYRILLIC CAPITAL LETTER YA */ { 0x06c1, 0x0430 }, /* Cyrillic_a а CYRILLIC SMALL LETTER A */ { 0x06c2, 0x0431 }, /* Cyrillic_be б CYRILLIC SMALL LETTER BE */ { 0x06d7, 0x0432 }, /* Cyrillic_ve в CYRILLIC SMALL LETTER VE */ { 0x06c7, 0x0433 }, /* Cyrillic_ghe г CYRILLIC SMALL LETTER GHE */ { 0x06c4, 0x0434 }, /* Cyrillic_de д CYRILLIC SMALL LETTER DE */ { 0x06c5, 0x0435 }, /* Cyrillic_ie е CYRILLIC SMALL LETTER IE */ { 0x06d6, 0x0436 }, /* Cyrillic_zhe ж CYRILLIC SMALL LETTER ZHE */ { 0x06da, 0x0437 }, /* Cyrillic_ze з CYRILLIC SMALL LETTER ZE */ { 0x06c9, 0x0438 }, /* Cyrillic_i и CYRILLIC SMALL LETTER I */ { 0x06ca, 0x0439 }, /* Cyrillic_shorti й CYRILLIC SMALL LETTER SHORT I */ { 0x06cb, 0x043a }, /* Cyrillic_ka к CYRILLIC SMALL LETTER KA */ { 0x06cc, 0x043b }, /* Cyrillic_el л CYRILLIC SMALL LETTER EL */ { 0x06cd, 0x043c }, /* Cyrillic_em м CYRILLIC SMALL LETTER EM */ { 0x06ce, 0x043d }, /* Cyrillic_en н CYRILLIC SMALL LETTER EN */ { 0x06cf, 0x043e }, /* Cyrillic_o о CYRILLIC SMALL LETTER O */ { 0x06d0, 0x043f }, /* Cyrillic_pe п CYRILLIC SMALL LETTER PE */ { 0x06d2, 0x0440 }, /* Cyrillic_er р CYRILLIC SMALL LETTER ER */ { 0x06d3, 0x0441 }, /* Cyrillic_es с CYRILLIC SMALL LETTER ES */ { 0x06d4, 0x0442 }, /* Cyrillic_te т CYRILLIC SMALL LETTER TE */ { 0x06d5, 0x0443 }, /* Cyrillic_u у CYRILLIC SMALL LETTER U */ { 0x06c6, 0x0444 }, /* Cyrillic_ef ф CYRILLIC SMALL LETTER EF */ { 0x06c8, 0x0445 }, /* Cyrillic_ha х CYRILLIC SMALL LETTER HA */ { 0x06c3, 0x0446 }, /* Cyrillic_tse ц CYRILLIC SMALL LETTER TSE */ { 0x06de, 0x0447 }, /* Cyrillic_che ч CYRILLIC SMALL LETTER CHE */ { 0x06db, 0x0448 }, /* Cyrillic_sha ш CYRILLIC SMALL LETTER SHA */ { 0x06dd, 0x0449 }, /* Cyrillic_shcha щ CYRILLIC SMALL LETTER SHCHA */ { 0x06df, 0x044a }, /* Cyrillic_hardsign ъ CYRILLIC SMALL LETTER HARD SIGN */ { 0x06d9, 0x044b }, /* Cyrillic_yeru ы CYRILLIC SMALL LETTER YERU */ { 0x06d8, 0x044c }, /* Cyrillic_softsign ь CYRILLIC SMALL LETTER SOFT SIGN */ { 0x06dc, 0x044d }, /* Cyrillic_e э CYRILLIC SMALL LETTER E */ { 0x06c0, 0x044e }, /* Cyrillic_yu ю CYRILLIC SMALL LETTER YU */ { 0x06d1, 0x044f }, /* Cyrillic_ya я CYRILLIC SMALL LETTER YA */ { 0x06a3, 0x0451 }, /* Cyrillic_io ё CYRILLIC SMALL LETTER IO */ { 0x06a1, 0x0452 }, /* Serbian_dje ђ CYRILLIC SMALL LETTER DJE */ { 0x06a2, 0x0453 }, /* Macedonia_gje ѓ CYRILLIC SMALL LETTER GJE */ { 0x06a4, 0x0454 }, /* Ukrainian_ie є CYRILLIC SMALL LETTER UKRAINIAN IE */ { 0x06a5, 0x0455 }, /* Macedonia_dse ѕ CYRILLIC SMALL LETTER DZE */ { 0x06a6, 0x0456 }, /* Ukrainian_i і CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */ { 0x06a7, 0x0457 }, /* Ukrainian_yi ї CYRILLIC SMALL LETTER YI */ { 0x06a8, 0x0458 }, /* Cyrillic_je ј CYRILLIC SMALL LETTER JE */ { 0x06a9, 0x0459 }, /* Cyrillic_lje љ CYRILLIC SMALL LETTER LJE */ { 0x06aa, 0x045a }, /* Cyrillic_nje њ CYRILLIC SMALL LETTER NJE */ { 0x06ab, 0x045b }, /* Serbian_tshe ћ CYRILLIC SMALL LETTER TSHE */ { 0x06ac, 0x045c }, /* Macedonia_kje ќ CYRILLIC SMALL LETTER KJE */ { 0x06ae, 0x045e }, /* Byelorussian_shortu ў CYRILLIC SMALL LETTER SHORT U */ { 0x06af, 0x045f }, /* Cyrillic_dzhe џ CYRILLIC SMALL LETTER DZHE */ { 0x0ce0, 0x05d0 }, /* hebrew_aleph א HEBREW LETTER ALEF */ { 0x0ce1, 0x05d1 }, /* hebrew_bet ב HEBREW LETTER BET */ { 0x0ce2, 0x05d2 }, /* hebrew_gimel ג HEBREW LETTER GIMEL */ { 0x0ce3, 0x05d3 }, /* hebrew_dalet ד HEBREW LETTER DALET */ { 0x0ce4, 0x05d4 }, /* hebrew_he ה HEBREW LETTER HE */ { 0x0ce5, 0x05d5 }, /* hebrew_waw ו HEBREW LETTER VAV */ { 0x0ce6, 0x05d6 }, /* hebrew_zain ז HEBREW LETTER ZAYIN */ { 0x0ce7, 0x05d7 }, /* hebrew_chet ח HEBREW LETTER HET */ { 0x0ce8, 0x05d8 }, /* hebrew_tet ט HEBREW LETTER TET */ { 0x0ce9, 0x05d9 }, /* hebrew_yod י HEBREW LETTER YOD */ { 0x0cea, 0x05da }, /* hebrew_finalkaph ך HEBREW LETTER FINAL KAF */ { 0x0ceb, 0x05db }, /* hebrew_kaph כ HEBREW LETTER KAF */ { 0x0cec, 0x05dc }, /* hebrew_lamed ל HEBREW LETTER LAMED */ { 0x0ced, 0x05dd }, /* hebrew_finalmem ם HEBREW LETTER FINAL MEM */ { 0x0cee, 0x05de }, /* hebrew_mem מ HEBREW LETTER MEM */ { 0x0cef, 0x05df }, /* hebrew_finalnun ן HEBREW LETTER FINAL NUN */ { 0x0cf0, 0x05e0 }, /* hebrew_nun נ HEBREW LETTER NUN */ { 0x0cf1, 0x05e1 }, /* hebrew_samech ס HEBREW LETTER SAMEKH */ { 0x0cf2, 0x05e2 }, /* hebrew_ayin ע HEBREW LETTER AYIN */ { 0x0cf3, 0x05e3 }, /* hebrew_finalpe ף HEBREW LETTER FINAL PE */ { 0x0cf4, 0x05e4 }, /* hebrew_pe פ HEBREW LETTER PE */ { 0x0cf5, 0x05e5 }, /* hebrew_finalzade ץ HEBREW LETTER FINAL TSADI */ { 0x0cf6, 0x05e6 }, /* hebrew_zade צ HEBREW LETTER TSADI */ { 0x0cf7, 0x05e7 }, /* hebrew_qoph ק HEBREW LETTER QOF */ { 0x0cf8, 0x05e8 }, /* hebrew_resh ר HEBREW LETTER RESH */ { 0x0cf9, 0x05e9 }, /* hebrew_shin ש HEBREW LETTER SHIN */ { 0x0cfa, 0x05ea }, /* hebrew_taw ת HEBREW LETTER TAV */ { 0x05ac, 0x060c }, /* Arabic_comma ، ARABIC COMMA */ { 0x05bb, 0x061b }, /* Arabic_semicolon ؛ ARABIC SEMICOLON */ { 0x05bf, 0x061f }, /* Arabic_question_mark ؟ ARABIC QUESTION MARK */ { 0x05c1, 0x0621 }, /* Arabic_hamza ء ARABIC LETTER HAMZA */ { 0x05c2, 0x0622 }, /* Arabic_maddaonalef آ ARABIC LETTER ALEF WITH MADDA ABOVE */ { 0x05c3, 0x0623 }, /* Arabic_hamzaonalef أ ARABIC LETTER ALEF WITH HAMZA ABOVE */ { 0x05c4, 0x0624 }, /* Arabic_hamzaonwaw ؤ ARABIC LETTER WAW WITH HAMZA ABOVE */ { 0x05c5, 0x0625 }, /* Arabic_hamzaunderalef إ ARABIC LETTER ALEF WITH HAMZA BELOW */ { 0x05c6, 0x0626 }, /* Arabic_hamzaonyeh ئ ARABIC LETTER YEH WITH HAMZA ABOVE */ { 0x05c7, 0x0627 }, /* Arabic_alef ا ARABIC LETTER ALEF */ { 0x05c8, 0x0628 }, /* Arabic_beh ب ARABIC LETTER BEH */ { 0x05c9, 0x0629 }, /* Arabic_tehmarbuta ة ARABIC LETTER TEH MARBUTA */ { 0x05ca, 0x062a }, /* Arabic_teh ت ARABIC LETTER TEH */ { 0x05cb, 0x062b }, /* Arabic_theh ث ARABIC LETTER THEH */ { 0x05cc, 0x062c }, /* Arabic_jeem ج ARABIC LETTER JEEM */ { 0x05cd, 0x062d }, /* Arabic_hah ح ARABIC LETTER HAH */ { 0x05ce, 0x062e }, /* Arabic_khah خ ARABIC LETTER KHAH */ { 0x05cf, 0x062f }, /* Arabic_dal د ARABIC LETTER DAL */ { 0x05d0, 0x0630 }, /* Arabic_thal ذ ARABIC LETTER THAL */ { 0x05d1, 0x0631 }, /* Arabic_ra ر ARABIC LETTER REH */ { 0x05d2, 0x0632 }, /* Arabic_zain ز ARABIC LETTER ZAIN */ { 0x05d3, 0x0633 }, /* Arabic_seen س ARABIC LETTER SEEN */ { 0x05d4, 0x0634 }, /* Arabic_sheen ش ARABIC LETTER SHEEN */ { 0x05d5, 0x0635 }, /* Arabic_sad ص ARABIC LETTER SAD */ { 0x05d6, 0x0636 }, /* Arabic_dad ض ARABIC LETTER DAD */ { 0x05d7, 0x0637 }, /* Arabic_tah ط ARABIC LETTER TAH */ { 0x05d8, 0x0638 }, /* Arabic_zah ظ ARABIC LETTER ZAH */ { 0x05d9, 0x0639 }, /* Arabic_ain ع ARABIC LETTER AIN */ { 0x05da, 0x063a }, /* Arabic_ghain غ ARABIC LETTER GHAIN */ { 0x05e0, 0x0640 }, /* Arabic_tatweel ـ ARABIC TATWEEL */ { 0x05e1, 0x0641 }, /* Arabic_feh ف ARABIC LETTER FEH */ { 0x05e2, 0x0642 }, /* Arabic_qaf ق ARABIC LETTER QAF */ { 0x05e3, 0x0643 }, /* Arabic_kaf ك ARABIC LETTER KAF */ { 0x05e4, 0x0644 }, /* Arabic_lam ل ARABIC LETTER LAM */ { 0x05e5, 0x0645 }, /* Arabic_meem م ARABIC LETTER MEEM */ { 0x05e6, 0x0646 }, /* Arabic_noon ن ARABIC LETTER NOON */ { 0x05e7, 0x0647 }, /* Arabic_ha ه ARABIC LETTER HEH */ { 0x05e8, 0x0648 }, /* Arabic_waw و ARABIC LETTER WAW */ { 0x05e9, 0x0649 }, /* Arabic_alefmaksura ى ARABIC LETTER ALEF MAKSURA */ { 0x05ea, 0x064a }, /* Arabic_yeh ي ARABIC LETTER YEH */ { 0x05eb, 0x064b }, /* Arabic_fathatan ً ARABIC FATHATAN */ { 0x05ec, 0x064c }, /* Arabic_dammatan ٌ ARABIC DAMMATAN */ { 0x05ed, 0x064d }, /* Arabic_kasratan ٍ ARABIC KASRATAN */ { 0x05ee, 0x064e }, /* Arabic_fatha َ ARABIC FATHA */ { 0x05ef, 0x064f }, /* Arabic_damma ُ ARABIC DAMMA */ { 0x05f0, 0x0650 }, /* Arabic_kasra ِ ARABIC KASRA */ { 0x05f1, 0x0651 }, /* Arabic_shadda ّ ARABIC SHADDA */ { 0x05f2, 0x0652 }, /* Arabic_sukun ْ ARABIC SUKUN */ { 0x0da1, 0x0e01 }, /* Thai_kokai ก THAI CHARACTER KO KAI */ { 0x0da2, 0x0e02 }, /* Thai_khokhai ข THAI CHARACTER KHO KHAI */ { 0x0da3, 0x0e03 }, /* Thai_khokhuat ฃ THAI CHARACTER KHO KHUAT */ { 0x0da4, 0x0e04 }, /* Thai_khokhwai ค THAI CHARACTER KHO KHWAI */ { 0x0da5, 0x0e05 }, /* Thai_khokhon ฅ THAI CHARACTER KHO KHON */ { 0x0da6, 0x0e06 }, /* Thai_khorakhang ฆ THAI CHARACTER KHO RAKHANG */ { 0x0da7, 0x0e07 }, /* Thai_ngongu ง THAI CHARACTER NGO NGU */ { 0x0da8, 0x0e08 }, /* Thai_chochan จ THAI CHARACTER CHO CHAN */ { 0x0da9, 0x0e09 }, /* Thai_choching ฉ THAI CHARACTER CHO CHING */ { 0x0daa, 0x0e0a }, /* Thai_chochang ช THAI CHARACTER CHO CHANG */ { 0x0dab, 0x0e0b }, /* Thai_soso ซ THAI CHARACTER SO SO */ { 0x0dac, 0x0e0c }, /* Thai_chochoe ฌ THAI CHARACTER CHO CHOE */ { 0x0dad, 0x0e0d }, /* Thai_yoying ญ THAI CHARACTER YO YING */ { 0x0dae, 0x0e0e }, /* Thai_dochada ฎ THAI CHARACTER DO CHADA */ { 0x0daf, 0x0e0f }, /* Thai_topatak ฏ THAI CHARACTER TO PATAK */ { 0x0db0, 0x0e10 }, /* Thai_thothan ฐ THAI CHARACTER THO THAN */ { 0x0db1, 0x0e11 }, /* Thai_thonangmontho ฑ THAI CHARACTER THO NANGMONTHO */ { 0x0db2, 0x0e12 }, /* Thai_thophuthao ฒ THAI CHARACTER THO PHUTHAO */ { 0x0db3, 0x0e13 }, /* Thai_nonen ณ THAI CHARACTER NO NEN */ { 0x0db4, 0x0e14 }, /* Thai_dodek ด THAI CHARACTER DO DEK */ { 0x0db5, 0x0e15 }, /* Thai_totao ต THAI CHARACTER TO TAO */ { 0x0db6, 0x0e16 }, /* Thai_thothung ถ THAI CHARACTER THO THUNG */ { 0x0db7, 0x0e17 }, /* Thai_thothahan ท THAI CHARACTER THO THAHAN */ { 0x0db8, 0x0e18 }, /* Thai_thothong ธ THAI CHARACTER THO THONG */ { 0x0db9, 0x0e19 }, /* Thai_nonu น THAI CHARACTER NO NU */ { 0x0dba, 0x0e1a }, /* Thai_bobaimai บ THAI CHARACTER BO BAIMAI */ { 0x0dbb, 0x0e1b }, /* Thai_popla ป THAI CHARACTER PO PLA */ { 0x0dbc, 0x0e1c }, /* Thai_phophung ผ THAI CHARACTER PHO PHUNG */ { 0x0dbd, 0x0e1d }, /* Thai_fofa ฝ THAI CHARACTER FO FA */ { 0x0dbe, 0x0e1e }, /* Thai_phophan พ THAI CHARACTER PHO PHAN */ { 0x0dbf, 0x0e1f }, /* Thai_fofan ฟ THAI CHARACTER FO FAN */ { 0x0dc0, 0x0e20 }, /* Thai_phosamphao ภ THAI CHARACTER PHO SAMPHAO */ { 0x0dc1, 0x0e21 }, /* Thai_moma ม THAI CHARACTER MO MA */ { 0x0dc2, 0x0e22 }, /* Thai_yoyak ย THAI CHARACTER YO YAK */ { 0x0dc3, 0x0e23 }, /* Thai_rorua ร THAI CHARACTER RO RUA */ { 0x0dc4, 0x0e24 }, /* Thai_ru ฤ THAI CHARACTER RU */ { 0x0dc5, 0x0e25 }, /* Thai_loling ล THAI CHARACTER LO LING */ { 0x0dc6, 0x0e26 }, /* Thai_lu ฦ THAI CHARACTER LU */ { 0x0dc7, 0x0e27 }, /* Thai_wowaen ว THAI CHARACTER WO WAEN */ { 0x0dc8, 0x0e28 }, /* Thai_sosala ศ THAI CHARACTER SO SALA */ { 0x0dc9, 0x0e29 }, /* Thai_sorusi ษ THAI CHARACTER SO RUSI */ { 0x0dca, 0x0e2a }, /* Thai_sosua ส THAI CHARACTER SO SUA */ { 0x0dcb, 0x0e2b }, /* Thai_hohip ห THAI CHARACTER HO HIP */ { 0x0dcc, 0x0e2c }, /* Thai_lochula ฬ THAI CHARACTER LO CHULA */ { 0x0dcd, 0x0e2d }, /* Thai_oang อ THAI CHARACTER O ANG */ { 0x0dce, 0x0e2e }, /* Thai_honokhuk ฮ THAI CHARACTER HO NOKHUK */ { 0x0dcf, 0x0e2f }, /* Thai_paiyannoi ฯ THAI CHARACTER PAIYANNOI */ { 0x0dd0, 0x0e30 }, /* Thai_saraa ะ THAI CHARACTER SARA A */ { 0x0dd1, 0x0e31 }, /* Thai_maihanakat ั THAI CHARACTER MAI HAN-AKAT */ { 0x0dd2, 0x0e32 }, /* Thai_saraaa า THAI CHARACTER SARA AA */ { 0x0dd3, 0x0e33 }, /* Thai_saraam ำ THAI CHARACTER SARA AM */ { 0x0dd4, 0x0e34 }, /* Thai_sarai ิ THAI CHARACTER SARA I */ { 0x0dd5, 0x0e35 }, /* Thai_saraii ี THAI CHARACTER SARA II */ { 0x0dd6, 0x0e36 }, /* Thai_saraue ึ THAI CHARACTER SARA UE */ { 0x0dd7, 0x0e37 }, /* Thai_sarauee ื THAI CHARACTER SARA UEE */ { 0x0dd8, 0x0e38 }, /* Thai_sarau ุ THAI CHARACTER SARA U */ { 0x0dd9, 0x0e39 }, /* Thai_sarauu ู THAI CHARACTER SARA UU */ { 0x0dda, 0x0e3a }, /* Thai_phinthu ฺ THAI CHARACTER PHINTHU */ { 0x0ddf, 0x0e3f }, /* Thai_baht ฿ THAI CURRENCY SYMBOL BAHT */ { 0x0de0, 0x0e40 }, /* Thai_sarae เ THAI CHARACTER SARA E */ { 0x0de1, 0x0e41 }, /* Thai_saraae แ THAI CHARACTER SARA AE */ { 0x0de2, 0x0e42 }, /* Thai_sarao โ THAI CHARACTER SARA O */ { 0x0de3, 0x0e43 }, /* Thai_saraaimaimuan ใ THAI CHARACTER SARA AI MAIMUAN */ { 0x0de4, 0x0e44 }, /* Thai_saraaimaimalai ไ THAI CHARACTER SARA AI MAIMALAI */ { 0x0de5, 0x0e45 }, /* Thai_lakkhangyao ๅ THAI CHARACTER LAKKHANGYAO */ { 0x0de6, 0x0e46 }, /* Thai_maiyamok ๆ THAI CHARACTER MAIYAMOK */ { 0x0de7, 0x0e47 }, /* Thai_maitaikhu ็ THAI CHARACTER MAITAIKHU */ { 0x0de8, 0x0e48 }, /* Thai_maiek ่ THAI CHARACTER MAI EK */ { 0x0de9, 0x0e49 }, /* Thai_maitho ้ THAI CHARACTER MAI THO */ { 0x0dea, 0x0e4a }, /* Thai_maitri ๊ THAI CHARACTER MAI TRI */ { 0x0deb, 0x0e4b }, /* Thai_maichattawa ๋ THAI CHARACTER MAI CHATTAWA */ { 0x0dec, 0x0e4c }, /* Thai_thanthakhat ์ THAI CHARACTER THANTHAKHAT */ { 0x0ded, 0x0e4d }, /* Thai_nikhahit ํ THAI CHARACTER NIKHAHIT */ { 0x0df0, 0x0e50 }, /* Thai_leksun ๐ THAI DIGIT ZERO */ { 0x0df1, 0x0e51 }, /* Thai_leknung ๑ THAI DIGIT ONE */ { 0x0df2, 0x0e52 }, /* Thai_leksong ๒ THAI DIGIT TWO */ { 0x0df3, 0x0e53 }, /* Thai_leksam ๓ THAI DIGIT THREE */ { 0x0df4, 0x0e54 }, /* Thai_leksi ๔ THAI DIGIT FOUR */ { 0x0df5, 0x0e55 }, /* Thai_lekha ๕ THAI DIGIT FIVE */ { 0x0df6, 0x0e56 }, /* Thai_lekhok ๖ THAI DIGIT SIX */ { 0x0df7, 0x0e57 }, /* Thai_lekchet ๗ THAI DIGIT SEVEN */ { 0x0df8, 0x0e58 }, /* Thai_lekpaet ๘ THAI DIGIT EIGHT */ { 0x0df9, 0x0e59 }, /* Thai_lekkao ๙ THAI DIGIT NINE */ { 0x0ed4, 0x11a8 }, /* Hangul_J_Kiyeog ᆨ HANGUL JONGSEONG KIYEOK */ { 0x0ed5, 0x11a9 }, /* Hangul_J_SsangKiyeog ᆩ HANGUL JONGSEONG SSANGKIYEOK */ { 0x0ed6, 0x11aa }, /* Hangul_J_KiyeogSios ᆪ HANGUL JONGSEONG KIYEOK-SIOS */ { 0x0ed7, 0x11ab }, /* Hangul_J_Nieun ᆫ HANGUL JONGSEONG NIEUN */ { 0x0ed8, 0x11ac }, /* Hangul_J_NieunJieuj ᆬ HANGUL JONGSEONG NIEUN-CIEUC */ { 0x0ed9, 0x11ad }, /* Hangul_J_NieunHieuh ᆭ HANGUL JONGSEONG NIEUN-HIEUH */ { 0x0eda, 0x11ae }, /* Hangul_J_Dikeud ᆮ HANGUL JONGSEONG TIKEUT */ { 0x0edb, 0x11af }, /* Hangul_J_Rieul ᆯ HANGUL JONGSEONG RIEUL */ { 0x0edc, 0x11b0 }, /* Hangul_J_RieulKiyeog ᆰ HANGUL JONGSEONG RIEUL-KIYEOK */ { 0x0edd, 0x11b1 }, /* Hangul_J_RieulMieum ᆱ HANGUL JONGSEONG RIEUL-MIEUM */ { 0x0ede, 0x11b2 }, /* Hangul_J_RieulPieub ᆲ HANGUL JONGSEONG RIEUL-PIEUP */ { 0x0edf, 0x11b3 }, /* Hangul_J_RieulSios ᆳ HANGUL JONGSEONG RIEUL-SIOS */ { 0x0ee0, 0x11b4 }, /* Hangul_J_RieulTieut ᆴ HANGUL JONGSEONG RIEUL-THIEUTH */ { 0x0ee1, 0x11b5 }, /* Hangul_J_RieulPhieuf ᆵ HANGUL JONGSEONG RIEUL-PHIEUPH */ { 0x0ee2, 0x11b6 }, /* Hangul_J_RieulHieuh ᆶ HANGUL JONGSEONG RIEUL-HIEUH */ { 0x0ee3, 0x11b7 }, /* Hangul_J_Mieum ᆷ HANGUL JONGSEONG MIEUM */ { 0x0ee4, 0x11b8 }, /* Hangul_J_Pieub ᆸ HANGUL JONGSEONG PIEUP */ { 0x0ee5, 0x11b9 }, /* Hangul_J_PieubSios ᆹ HANGUL JONGSEONG PIEUP-SIOS */ { 0x0ee6, 0x11ba }, /* Hangul_J_Sios ᆺ HANGUL JONGSEONG SIOS */ { 0x0ee7, 0x11bb }, /* Hangul_J_SsangSios ᆻ HANGUL JONGSEONG SSANGSIOS */ { 0x0ee8, 0x11bc }, /* Hangul_J_Ieung ᆼ HANGUL JONGSEONG IEUNG */ { 0x0ee9, 0x11bd }, /* Hangul_J_Jieuj ᆽ HANGUL JONGSEONG CIEUC */ { 0x0eea, 0x11be }, /* Hangul_J_Cieuc ᆾ HANGUL JONGSEONG CHIEUCH */ { 0x0eeb, 0x11bf }, /* Hangul_J_Khieuq ᆿ HANGUL JONGSEONG KHIEUKH */ { 0x0eec, 0x11c0 }, /* Hangul_J_Tieut ᇀ HANGUL JONGSEONG THIEUTH */ { 0x0eed, 0x11c1 }, /* Hangul_J_Phieuf ᇁ HANGUL JONGSEONG PHIEUPH */ { 0x0eee, 0x11c2 }, /* Hangul_J_Hieuh ᇂ HANGUL JONGSEONG HIEUH */ { 0x0ef8, 0x11eb }, /* Hangul_J_PanSios ᇫ HANGUL JONGSEONG PANSIOS */ { 0x0efa, 0x11f9 }, /* Hangul_J_YeorinHieuh ᇹ HANGUL JONGSEONG YEORINHIEUH */ { 0x0aa2, 0x2002 }, /* enspace   EN SPACE */ { 0x0aa1, 0x2003 }, /* emspace   EM SPACE */ { 0x0aa3, 0x2004 }, /* em3space   THREE-PER-EM SPACE */ { 0x0aa4, 0x2005 }, /* em4space   FOUR-PER-EM SPACE */ { 0x0aa5, 0x2007 }, /* digitspace   FIGURE SPACE */ { 0x0aa6, 0x2008 }, /* punctspace   PUNCTUATION SPACE */ { 0x0aa7, 0x2009 }, /* thinspace   THIN SPACE */ { 0x0aa8, 0x200a }, /* hairspace   HAIR SPACE */ { 0x0abb, 0x2012 }, /* figdash ‒ FIGURE DASH */ { 0x0aaa, 0x2013 }, /* endash – EN DASH */ { 0x0aa9, 0x2014 }, /* emdash — EM DASH */ { 0x07af, 0x2015 }, /* Greek_horizbar ― HORIZONTAL BAR */ { 0x0cdf, 0x2017 }, /* hebrew_doublelowline ‗ DOUBLE LOW LINE */ { 0x0ad0, 0x2018 }, /* leftsinglequotemark ‘ LEFT SINGLE QUOTATION MARK */ { 0x0ad1, 0x2019 }, /* rightsinglequotemark ’ RIGHT SINGLE QUOTATION MARK */ { 0x0afd, 0x201a }, /* singlelowquotemark ‚ SINGLE LOW-9 QUOTATION MARK */ { 0x0ad2, 0x201c }, /* leftdoublequotemark “ LEFT DOUBLE QUOTATION MARK */ { 0x0ad3, 0x201d }, /* rightdoublequotemark ” RIGHT DOUBLE QUOTATION MARK */ { 0x0afe, 0x201e }, /* doublelowquotemark „ DOUBLE LOW-9 QUOTATION MARK */ { 0x0af1, 0x2020 }, /* dagger † DAGGER */ { 0x0af2, 0x2021 }, /* doubledagger ‡ DOUBLE DAGGER */ { 0x0ae6, 0x2022 }, /* enfilledcircbullet • BULLET */ { 0x0aae, 0x2026 }, /* ellipsis … HORIZONTAL ELLIPSIS */ { 0x0ad6, 0x2032 }, /* minutes ′ PRIME */ { 0x0ad7, 0x2033 }, /* seconds ″ DOUBLE PRIME */ { 0x0afc, 0x2038 }, /* caret ‸ CARET */ { 0x047e, 0x203e }, /* overline ‾ OVERLINE */ { 0x20a0, 0x20a0 }, /* EcuSign ₠ EURO-CURRENCY SIGN */ { 0x20a1, 0x20a1 }, /* ColonSign ₡ COLON SIGN */ { 0x20a2, 0x20a2 }, /* CruzeiroSign ₢ CRUZEIRO SIGN */ { 0x20a3, 0x20a3 }, /* FFrancSign ₣ FRENCH FRANC SIGN */ { 0x20a4, 0x20a4 }, /* LiraSign ₤ LIRA SIGN */ { 0x20a5, 0x20a5 }, /* MillSign ₥ MILL SIGN */ { 0x20a6, 0x20a6 }, /* NairaSign ₦ NAIRA SIGN */ { 0x20a7, 0x20a7 }, /* PesetaSign ₧ PESETA SIGN */ { 0x20a8, 0x20a8 }, /* RupeeSign ₨ RUPEE SIGN */ { 0x0eff, 0x20a9 }, /* Korean_Won ₩ WON SIGN */ { 0x20a9, 0x20a9 }, /* WonSign ₩ WON SIGN */ { 0x20aa, 0x20aa }, /* NewSheqelSign ₪ NEW SHEQEL SIGN */ { 0x20ab, 0x20ab }, /* DongSign ₫ DONG SIGN */ { 0x20ac, 0x20ac }, /* EuroSign € EURO SIGN */ { 0x0ab8, 0x2105 }, /* careof ℅ CARE OF */ { 0x06b0, 0x2116 }, /* numerosign № NUMERO SIGN */ { 0x0afb, 0x2117 }, /* phonographcopyright ℗ SOUND RECORDING COPYRIGHT */ { 0x0ad4, 0x211e }, /* prescription ℞ PRESCRIPTION TAKE */ { 0x0ac9, 0x2122 }, /* trademark ™ TRADE MARK SIGN */ { 0x0ab0, 0x2153 }, /* onethird ⅓ VULGAR FRACTION ONE THIRD */ { 0x0ab1, 0x2154 }, /* twothirds ⅔ VULGAR FRACTION TWO THIRDS */ { 0x0ab2, 0x2155 }, /* onefifth ⅕ VULGAR FRACTION ONE FIFTH */ { 0x0ab3, 0x2156 }, /* twofifths ⅖ VULGAR FRACTION TWO FIFTHS */ { 0x0ab4, 0x2157 }, /* threefifths ⅗ VULGAR FRACTION THREE FIFTHS */ { 0x0ab5, 0x2158 }, /* fourfifths ⅘ VULGAR FRACTION FOUR FIFTHS */ { 0x0ab6, 0x2159 }, /* onesixth ⅙ VULGAR FRACTION ONE SIXTH */ { 0x0ab7, 0x215a }, /* fivesixths ⅚ VULGAR FRACTION FIVE SIXTHS */ { 0x0ac3, 0x215b }, /* oneeighth ⅛ VULGAR FRACTION ONE EIGHTH */ { 0x0ac4, 0x215c }, /* threeeighths ⅜ VULGAR FRACTION THREE EIGHTHS */ { 0x0ac5, 0x215d }, /* fiveeighths ⅝ VULGAR FRACTION FIVE EIGHTHS */ { 0x0ac6, 0x215e }, /* seveneighths ⅞ VULGAR FRACTION SEVEN EIGHTHS */ { 0x08fb, 0x2190 }, /* leftarrow ← LEFTWARDS ARROW */ { 0x08fc, 0x2191 }, /* uparrow ↑ UPWARDS ARROW */ { 0x08fd, 0x2192 }, /* rightarrow → RIGHTWARDS ARROW */ { 0x08fe, 0x2193 }, /* downarrow ↓ DOWNWARDS ARROW */ { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS DOUBLE ARROW */ { 0x08cd, 0x21d4 }, /* ifonlyif ⇔ LEFT RIGHT DOUBLE ARROW */ { 0x08ef, 0x2202 }, /* partialderivative ∂ PARTIAL DIFFERENTIAL */ { 0x08c5, 0x2207 }, /* nabla ∇ NABLA */ { 0x0bca, 0x2218 }, /* jot ∘ RING OPERATOR */ { 0x08d6, 0x221a }, /* radical √ SQUARE ROOT */ { 0x08c1, 0x221d }, /* variation ∝ PROPORTIONAL TO */ { 0x08c2, 0x221e }, /* infinity ∞ INFINITY */ { 0x08de, 0x2227 }, /* logicaland ∧ LOGICAL AND */ { 0x0ba9, 0x2227 }, /* upcaret ∧ LOGICAL AND */ { 0x08df, 0x2228 }, /* logicalor ∨ LOGICAL OR */ { 0x0ba8, 0x2228 }, /* downcaret ∨ LOGICAL OR */ { 0x08dc, 0x2229 }, /* intersection ∩ INTERSECTION */ { 0x0bc3, 0x2229 }, /* upshoe ∩ INTERSECTION */ { 0x08dd, 0x222a }, /* union ∪ UNION */ { 0x0bd6, 0x222a }, /* downshoe ∪ UNION */ { 0x08bf, 0x222b }, /* integral ∫ INTEGRAL */ { 0x08c0, 0x2234 }, /* therefore ∴ THEREFORE */ { 0x08c8, 0x2245 }, /* approximate ≅ APPROXIMATELY EQUAL TO */ { 0x08bd, 0x2260 }, /* notequal ≠ NOT EQUAL TO */ { 0x08cf, 0x2261 }, /* identical ≡ IDENTICAL TO */ { 0x08bc, 0x2264 }, /* lessthanequal ≤ LESS-THAN OR EQUAL TO */ { 0x08be, 0x2265 }, /* greaterthanequal ≥ GREATER-THAN OR EQUAL TO */ { 0x08da, 0x2282 }, /* includedin ⊂ SUBSET OF */ { 0x0bda, 0x2282 }, /* leftshoe ⊂ SUBSET OF */ { 0x08db, 0x2283 }, /* includes ⊃ SUPERSET OF */ { 0x0bd8, 0x2283 }, /* rightshoe ⊃ SUPERSET OF */ { 0x0bfc, 0x22a2 }, /* righttack ⊢ RIGHT TACK */ { 0x0bdc, 0x22a3 }, /* lefttack ⊣ LEFT TACK */ { 0x0bc2, 0x22a4 }, /* downtack ⊤ DOWN TACK */ { 0x0bce, 0x22a5 }, /* uptack ⊥ UP TACK */ { 0x0bd3, 0x2308 }, /* upstile ⌈ LEFT CEILING */ { 0x0bc4, 0x230a }, /* downstile ⌊ LEFT FLOOR */ { 0x0afa, 0x2315 }, /* telephonerecorder ⌕ TELEPHONE RECORDER */ { 0x08a4, 0x2320 }, /* topintegral ⌠ TOP HALF INTEGRAL */ { 0x08a5, 0x2321 }, /* botintegral ⌡ BOTTOM HALF INTEGRAL */ { 0x0abc, 0x2329 }, /* leftanglebracket 〈 LEFT-POINTING ANGLE BRACKET */ { 0x0abe, 0x232a }, /* rightanglebracket 〉 RIGHT-POINTING ANGLE BRACKET */ { 0x0bcc, 0x2395 }, /* quad ⎕ APL FUNCTIONAL SYMBOL QUAD (Unicode 3.0) */ { 0x09e2, 0x2409 }, /* ht ␉ SYMBOL FOR HORIZONTAL TABULATION */ { 0x09e5, 0x240a }, /* lf ␊ SYMBOL FOR LINE FEED */ { 0x09e9, 0x240b }, /* vt ␋ SYMBOL FOR VERTICAL TABULATION */ { 0x09e3, 0x240c }, /* ff ␌ SYMBOL FOR FORM FEED */ { 0x09e4, 0x240d }, /* cr ␍ SYMBOL FOR CARRIAGE RETURN */ { 0x09df, 0x2422 }, /* blank ␢ BLANK SYMBOL */ { 0x09e8, 0x2424 }, /* nl ␤ SYMBOL FOR NEWLINE */ { 0x09f1, 0x2500 }, /* horizlinescan5 ─ BOX DRAWINGS LIGHT HORIZONTAL */ { 0x08a6, 0x2502 }, /* vertconnector │ BOX DRAWINGS LIGHT VERTICAL */ { 0x09f8, 0x2502 }, /* vertbar │ BOX DRAWINGS LIGHT VERTICAL */ { 0x09ec, 0x250c }, /* upleftcorner ┌ BOX DRAWINGS LIGHT DOWN AND RIGHT */ { 0x09eb, 0x2510 }, /* uprightcorner ┐ BOX DRAWINGS LIGHT DOWN AND LEFT */ { 0x09ed, 0x2514 }, /* lowleftcorner └ BOX DRAWINGS LIGHT UP AND RIGHT */ { 0x09ea, 0x2518 }, /* lowrightcorner ┘ BOX DRAWINGS LIGHT UP AND LEFT */ { 0x09f4, 0x251c }, /* leftt ├ BOX DRAWINGS LIGHT VERTICAL AND RIGHT */ { 0x09f5, 0x2524 }, /* rightt ┤ BOX DRAWINGS LIGHT VERTICAL AND LEFT */ { 0x09f7, 0x252c }, /* topt ┬ BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */ { 0x09f6, 0x2534 }, /* bott ┴ BOX DRAWINGS LIGHT UP AND HORIZONTAL */ { 0x09ee, 0x253c }, /* crossinglines ┼ BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */ { 0x09e1, 0x2592 }, /* checkerboard ▒ MEDIUM SHADE */ { 0x0adf, 0x25a0 }, /* emfilledrect ■ BLACK SQUARE */ { 0x0acf, 0x25a1 }, /* emopenrectangle □ WHITE SQUARE */ { 0x0ae7, 0x25aa }, /* enfilledsqbullet ▪ BLACK SMALL SQUARE */ { 0x0ae1, 0x25ab }, /* enopensquarebullet ▫ WHITE SMALL SQUARE */ { 0x0adb, 0x25ac }, /* filledrectbullet ▬ BLACK RECTANGLE */ { 0x0ae2, 0x25ad }, /* openrectbullet ▭ WHITE RECTANGLE */ { 0x0ae8, 0x25b2 }, /* filledtribulletup ▲ BLACK UP-POINTING TRIANGLE */ { 0x0ae3, 0x25b3 }, /* opentribulletup △ WHITE UP-POINTING TRIANGLE */ { 0x0add, 0x25b6 }, /* filledrighttribullet ▶ BLACK RIGHT-POINTING TRIANGLE */ { 0x0acd, 0x25b7 }, /* rightopentriangle ▷ WHITE RIGHT-POINTING TRIANGLE */ { 0x0ae9, 0x25bc }, /* filledtribulletdown ▼ BLACK DOWN-POINTING TRIANGLE */ { 0x0ae4, 0x25bd }, /* opentribulletdown ▽ WHITE DOWN-POINTING TRIANGLE */ { 0x0adc, 0x25c0 }, /* filledlefttribullet ◀ BLACK LEFT-POINTING TRIANGLE */ { 0x0acc, 0x25c1 }, /* leftopentriangle ◁ WHITE LEFT-POINTING TRIANGLE */ { 0x09e0, 0x25c6 }, /* soliddiamond ◆ BLACK DIAMOND */ { 0x0ace, 0x25cb }, /* emopencircle ○ WHITE CIRCLE */ { 0x0bcf, 0x25cb }, /* circle ○ WHITE CIRCLE */ { 0x0ade, 0x25cf }, /* emfilledcircle ● BLACK CIRCLE */ { 0x0ae0, 0x25e6 }, /* enopencircbullet ◦ WHITE BULLET */ { 0x0ae5, 0x2606 }, /* openstar ☆ WHITE STAR */ { 0x0af9, 0x260e }, /* telephone ☎ BLACK TELEPHONE */ { 0x0aca, 0x2613 }, /* signaturemark ☓ SALTIRE */ { 0x0aea, 0x261c }, /* leftpointer ☜ WHITE LEFT POINTING INDEX */ { 0x0aeb, 0x261e }, /* rightpointer ☞ WHITE RIGHT POINTING INDEX */ { 0x0af8, 0x2640 }, /* femalesymbol ♀ FEMALE SIGN */ { 0x0af7, 0x2642 }, /* malesymbol ♂ MALE SIGN */ { 0x0aec, 0x2663 }, /* club ♣ BLACK CLUB SUIT */ { 0x0aee, 0x2665 }, /* heart ♥ BLACK HEART SUIT */ { 0x0aed, 0x2666 }, /* diamond ♦ BLACK DIAMOND SUIT */ { 0x0af6, 0x266d }, /* musicalflat ♭ MUSIC FLAT SIGN */ { 0x0af5, 0x266f }, /* musicalsharp ♯ MUSIC SHARP SIGN */ { 0x0af3, 0x2713 }, /* checkmark ✓ CHECK MARK */ { 0x0af4, 0x2717 }, /* ballotcross ✗ BALLOT X */ { 0x0ad9, 0x271d }, /* latincross ✝ LATIN CROSS */ { 0x0af0, 0x2720 }, /* maltesecross ✠ MALTESE CROSS */ { 0x04a4, 0x3001 }, /* kana_comma 、 IDEOGRAPHIC COMMA */ { 0x04a1, 0x3002 }, /* kana_fullstop 。 IDEOGRAPHIC FULL STOP */ { 0x04a2, 0x300c }, /* kana_openingbracket 「 LEFT CORNER BRACKET */ { 0x04a3, 0x300d }, /* kana_closingbracket 」 RIGHT CORNER BRACKET */ { 0x04de, 0x309b }, /* voicedsound ゛ KATAKANA-HIRAGANA VOICED SOUND MARK */ { 0x04df, 0x309c }, /* semivoicedsound ゜ KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */ { 0x04a7, 0x30a1 }, /* kana_a ァ KATAKANA LETTER SMALL A */ { 0x04b1, 0x30a2 }, /* kana_A ア KATAKANA LETTER A */ { 0x04a8, 0x30a3 }, /* kana_i ィ KATAKANA LETTER SMALL I */ { 0x04b2, 0x30a4 }, /* kana_I イ KATAKANA LETTER I */ { 0x04a9, 0x30a5 }, /* kana_u ゥ KATAKANA LETTER SMALL U */ { 0x04b3, 0x30a6 }, /* kana_U ウ KATAKANA LETTER U */ { 0x04aa, 0x30a7 }, /* kana_e ェ KATAKANA LETTER SMALL E */ { 0x04b4, 0x30a8 }, /* kana_E エ KATAKANA LETTER E */ { 0x04ab, 0x30a9 }, /* kana_o ォ KATAKANA LETTER SMALL O */ { 0x04b5, 0x30aa }, /* kana_O オ KATAKANA LETTER O */ { 0x04b6, 0x30ab }, /* kana_KA カ KATAKANA LETTER KA */ { 0x04b7, 0x30ad }, /* kana_KI キ KATAKANA LETTER KI */ { 0x04b8, 0x30af }, /* kana_KU ク KATAKANA LETTER KU */ { 0x04b9, 0x30b1 }, /* kana_KE ケ KATAKANA LETTER KE */ { 0x04ba, 0x30b3 }, /* kana_KO コ KATAKANA LETTER KO */ { 0x04bb, 0x30b5 }, /* kana_SA サ KATAKANA LETTER SA */ { 0x04bc, 0x30b7 }, /* kana_SHI シ KATAKANA LETTER SI */ { 0x04bd, 0x30b9 }, /* kana_SU ス KATAKANA LETTER SU */ { 0x04be, 0x30bb }, /* kana_SE セ KATAKANA LETTER SE */ { 0x04bf, 0x30bd }, /* kana_SO ソ KATAKANA LETTER SO */ { 0x04c0, 0x30bf }, /* kana_TA タ KATAKANA LETTER TA */ { 0x04c1, 0x30c1 }, /* kana_CHI チ KATAKANA LETTER TI */ { 0x04af, 0x30c3 }, /* kana_tsu ッ KATAKANA LETTER SMALL TU */ { 0x04c2, 0x30c4 }, /* kana_TSU ツ KATAKANA LETTER TU */ { 0x04c3, 0x30c6 }, /* kana_TE テ KATAKANA LETTER TE */ { 0x04c4, 0x30c8 }, /* kana_TO ト KATAKANA LETTER TO */ { 0x04c5, 0x30ca }, /* kana_NA ナ KATAKANA LETTER NA */ { 0x04c6, 0x30cb }, /* kana_NI ニ KATAKANA LETTER NI */ { 0x04c7, 0x30cc }, /* kana_NU ヌ KATAKANA LETTER NU */ { 0x04c8, 0x30cd }, /* kana_NE ネ KATAKANA LETTER NE */ { 0x04c9, 0x30ce }, /* kana_NO ノ KATAKANA LETTER NO */ { 0x04ca, 0x30cf }, /* kana_HA ハ KATAKANA LETTER HA */ { 0x04cb, 0x30d2 }, /* kana_HI ヒ KATAKANA LETTER HI */ { 0x04cc, 0x30d5 }, /* kana_FU フ KATAKANA LETTER HU */ { 0x04cd, 0x30d8 }, /* kana_HE ヘ KATAKANA LETTER HE */ { 0x04ce, 0x30db }, /* kana_HO ホ KATAKANA LETTER HO */ { 0x04cf, 0x30de }, /* kana_MA マ KATAKANA LETTER MA */ { 0x04d0, 0x30df }, /* kana_MI ミ KATAKANA LETTER MI */ { 0x04d1, 0x30e0 }, /* kana_MU ム KATAKANA LETTER MU */ { 0x04d2, 0x30e1 }, /* kana_ME メ KATAKANA LETTER ME */ { 0x04d3, 0x30e2 }, /* kana_MO モ KATAKANA LETTER MO */ { 0x04ac, 0x30e3 }, /* kana_ya ャ KATAKANA LETTER SMALL YA */ { 0x04d4, 0x30e4 }, /* kana_YA ヤ KATAKANA LETTER YA */ { 0x04ad, 0x30e5 }, /* kana_yu ュ KATAKANA LETTER SMALL YU */ { 0x04d5, 0x30e6 }, /* kana_YU ユ KATAKANA LETTER YU */ { 0x04ae, 0x30e7 }, /* kana_yo ョ KATAKANA LETTER SMALL YO */ { 0x04d6, 0x30e8 }, /* kana_YO ヨ KATAKANA LETTER YO */ { 0x04d7, 0x30e9 }, /* kana_RA ラ KATAKANA LETTER RA */ { 0x04d8, 0x30ea }, /* kana_RI リ KATAKANA LETTER RI */ { 0x04d9, 0x30eb }, /* kana_RU ル KATAKANA LETTER RU */ { 0x04da, 0x30ec }, /* kana_RE レ KATAKANA LETTER RE */ { 0x04db, 0x30ed }, /* kana_RO ロ KATAKANA LETTER RO */ { 0x04dc, 0x30ef }, /* kana_WA ワ KATAKANA LETTER WA */ { 0x04a6, 0x30f2 }, /* kana_WO ヲ KATAKANA LETTER WO */ { 0x04dd, 0x30f3 }, /* kana_N ン KATAKANA LETTER N */ { 0x04a5, 0x30fb }, /* kana_conjunctive ・ KATAKANA MIDDLE DOT */ { 0x04b0, 0x30fc }, /* prolongedsound ー KATAKANA-HIRAGANA PROLONGED SOUND MARK */ { 0x0ea1, 0x3131 }, /* Hangul_Kiyeog ㄱ HANGUL LETTER KIYEOK */ { 0x0ea2, 0x3132 }, /* Hangul_SsangKiyeog ㄲ HANGUL LETTER SSANGKIYEOK */ { 0x0ea3, 0x3133 }, /* Hangul_KiyeogSios ㄳ HANGUL LETTER KIYEOK-SIOS */ { 0x0ea4, 0x3134 }, /* Hangul_Nieun ㄴ HANGUL LETTER NIEUN */ { 0x0ea5, 0x3135 }, /* Hangul_NieunJieuj ㄵ HANGUL LETTER NIEUN-CIEUC */ { 0x0ea6, 0x3136 }, /* Hangul_NieunHieuh ㄶ HANGUL LETTER NIEUN-HIEUH */ { 0x0ea7, 0x3137 }, /* Hangul_Dikeud ㄷ HANGUL LETTER TIKEUT */ { 0x0ea8, 0x3138 }, /* Hangul_SsangDikeud ㄸ HANGUL LETTER SSANGTIKEUT */ { 0x0ea9, 0x3139 }, /* Hangul_Rieul ㄹ HANGUL LETTER RIEUL */ { 0x0eaa, 0x313a }, /* Hangul_RieulKiyeog ㄺ HANGUL LETTER RIEUL-KIYEOK */ { 0x0eab, 0x313b }, /* Hangul_RieulMieum ㄻ HANGUL LETTER RIEUL-MIEUM */ { 0x0eac, 0x313c }, /* Hangul_RieulPieub ㄼ HANGUL LETTER RIEUL-PIEUP */ { 0x0ead, 0x313d }, /* Hangul_RieulSios ㄽ HANGUL LETTER RIEUL-SIOS */ { 0x0eae, 0x313e }, /* Hangul_RieulTieut ㄾ HANGUL LETTER RIEUL-THIEUTH */ { 0x0eaf, 0x313f }, /* Hangul_RieulPhieuf ㄿ HANGUL LETTER RIEUL-PHIEUPH */ { 0x0eb0, 0x3140 }, /* Hangul_RieulHieuh ㅀ HANGUL LETTER RIEUL-HIEUH */ { 0x0eb1, 0x3141 }, /* Hangul_Mieum ㅁ HANGUL LETTER MIEUM */ { 0x0eb2, 0x3142 }, /* Hangul_Pieub ㅂ HANGUL LETTER PIEUP */ { 0x0eb3, 0x3143 }, /* Hangul_SsangPieub ㅃ HANGUL LETTER SSANGPIEUP */ { 0x0eb4, 0x3144 }, /* Hangul_PieubSios ㅄ HANGUL LETTER PIEUP-SIOS */ { 0x0eb5, 0x3145 }, /* Hangul_Sios ㅅ HANGUL LETTER SIOS */ { 0x0eb6, 0x3146 }, /* Hangul_SsangSios ㅆ HANGUL LETTER SSANGSIOS */ { 0x0eb7, 0x3147 }, /* Hangul_Ieung ㅇ HANGUL LETTER IEUNG */ { 0x0eb8, 0x3148 }, /* Hangul_Jieuj ㅈ HANGUL LETTER CIEUC */ { 0x0eb9, 0x3149 }, /* Hangul_SsangJieuj ㅉ HANGUL LETTER SSANGCIEUC */ { 0x0eba, 0x314a }, /* Hangul_Cieuc ㅊ HANGUL LETTER CHIEUCH */ { 0x0ebb, 0x314b }, /* Hangul_Khieuq ㅋ HANGUL LETTER KHIEUKH */ { 0x0ebc, 0x314c }, /* Hangul_Tieut ㅌ HANGUL LETTER THIEUTH */ { 0x0ebd, 0x314d }, /* Hangul_Phieuf ㅍ HANGUL LETTER PHIEUPH */ { 0x0ebe, 0x314e }, /* Hangul_Hieuh ㅎ HANGUL LETTER HIEUH */ { 0x0ebf, 0x314f }, /* Hangul_A ㅏ HANGUL LETTER A */ { 0x0ec0, 0x3150 }, /* Hangul_AE ㅐ HANGUL LETTER AE */ { 0x0ec1, 0x3151 }, /* Hangul_YA ㅑ HANGUL LETTER YA */ { 0x0ec2, 0x3152 }, /* Hangul_YAE ㅒ HANGUL LETTER YAE */ { 0x0ec3, 0x3153 }, /* Hangul_EO ㅓ HANGUL LETTER EO */ { 0x0ec4, 0x3154 }, /* Hangul_E ㅔ HANGUL LETTER E */ { 0x0ec5, 0x3155 }, /* Hangul_YEO ㅕ HANGUL LETTER YEO */ { 0x0ec6, 0x3156 }, /* Hangul_YE ㅖ HANGUL LETTER YE */ { 0x0ec7, 0x3157 }, /* Hangul_O ㅗ HANGUL LETTER O */ { 0x0ec8, 0x3158 }, /* Hangul_WA ㅘ HANGUL LETTER WA */ { 0x0ec9, 0x3159 }, /* Hangul_WAE ㅙ HANGUL LETTER WAE */ { 0x0eca, 0x315a }, /* Hangul_OE ㅚ HANGUL LETTER OE */ { 0x0ecb, 0x315b }, /* Hangul_YO ㅛ HANGUL LETTER YO */ { 0x0ecc, 0x315c }, /* Hangul_U ㅜ HANGUL LETTER U */ { 0x0ecd, 0x315d }, /* Hangul_WEO ㅝ HANGUL LETTER WEO */ { 0x0ece, 0x315e }, /* Hangul_WE ㅞ HANGUL LETTER WE */ { 0x0ecf, 0x315f }, /* Hangul_WI ㅟ HANGUL LETTER WI */ { 0x0ed0, 0x3160 }, /* Hangul_YU ㅠ HANGUL LETTER YU */ { 0x0ed1, 0x3161 }, /* Hangul_EU ㅡ HANGUL LETTER EU */ { 0x0ed2, 0x3162 }, /* Hangul_YI ㅢ HANGUL LETTER YI */ { 0x0ed3, 0x3163 }, /* Hangul_I ㅣ HANGUL LETTER I */ { 0x0eef, 0x316d }, /* Hangul_RieulYeorinHieuh ㅭ HANGUL LETTER RIEUL-YEORINHIEUH */ { 0x0ef0, 0x3171 }, /* Hangul_SunkyeongeumMieum ㅱ HANGUL LETTER KAPYEOUNMIEUM */ { 0x0ef1, 0x3178 }, /* Hangul_SunkyeongeumPieub ㅸ HANGUL LETTER KAPYEOUNPIEUP */ { 0x0ef2, 0x317f }, /* Hangul_PanSios ㅿ HANGUL LETTER PANSIOS */ { 0x0ef4, 0x3184 }, /* Hangul_SunkyeongeumPhieuf ㆄ HANGUL LETTER KAPYEOUNPHIEUPH */ { 0x0ef5, 0x3186 }, /* Hangul_YeorinHieuh ㆆ HANGUL LETTER YEORINHIEUH */ { 0x0ef6, 0x318d }, /* Hangul_AraeA ㆍ HANGUL LETTER ARAEA */ { 0x0ef7, 0x318e }, /* Hangul_AraeAE ㆎ HANGUL LETTER ARAEAE */ }; /** * ibus_unicode_to_keyval: * @wc: a ISO10646 encoded character * * Convert from a ISO10646 character to a key symbol. * * Return value: the corresponding GDK key symbol, if one exists. * or, if there is no corresponding symbol, * wc | 0x01000000 **/ uint ibus_unicode_to_keyval (quint32 wc) { int min = 0; int max = sizeof (ibus_unicode_to_keysym_tab) / sizeof (ibus_unicode_to_keysym_tab[0]) - 1; int mid; /* First check for Latin-1 characters (1:1 mapping) */ if ((wc >= 0x0020 && wc <= 0x007e) || (wc >= 0x00a0 && wc <= 0x00ff)) return wc; /* Binary search in table */ while (max >= min) { mid = (min + max) / 2; if (ibus_unicode_to_keysym_tab[mid].ucs < wc) min = mid + 1; else if (ibus_unicode_to_keysym_tab[mid].ucs > wc) max = mid - 1; else { /* found it */ return ibus_unicode_to_keysym_tab[mid].keysym; } } /* * No matching keysym value found, return Unicode value plus 0x01000000 * (a convention introduced in the UTF-8 work on xterm). */ return wc | 0x01000000; } ibus-qt-1.3.3-Source/qtim/moc_ibus-input-context.cxx_parameters000664 001750 001750 00000000775 12325431136 026443 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/ibus-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/home/tfujiwar/tmp/a/qtim/../src -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/qtim/moc_ibus-input-context.cxx /home/tfujiwar/tmp/a/qtim/ibus-input-context.h ibus-qt-1.3.3-Source/qtim/ibus-compose-data.h000664 001750 001750 00000514405 12325431066 022544 0ustar00tfujiwartfujiwar000000 000000 /* vim:set noet ts=4: */ /* * ibus - The Input Bus * * Copyright (c) 2007-2008 Huang Peng * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA */ #ifndef __Key_COMPOSE_DATA_H_ #define __Key_COMPOSE_DATA_H_ static const quint32 ibus_compose_seqs_compact[] = { Key_dead_stroke, 138, 226, 235, 235, 235, Key_Greek_accentdieresis, 235, 239, 239, 239, 239, Key_dead_grave, 239, 299, 386, 598, 598, Key_dead_acute, 598, 664, 760, 1036, 1036, Key_dead_circumflex, 1036, 1176, 1176, 1376, 1376, Key_dead_tilde, 1376, 1458, 1521, 1661, 1661, Key_dead_macron, 1661, 1707, 1707, 1779, 1779, Key_dead_breve, 1779, 1833, 1833, 1857, 1857, Key_dead_abovedot, 1857, 1887, 1890, 1922, 1922, Key_dead_diaeresis, 1922, 2010, 2019, 2043, 2043, Key_dead_abovering, 2043, 2053, 2053, 2053, 2053, Key_dead_doubleacute, 2053, 2063, 2063, 2063, 2063, Key_dead_caron, 2063, 2089, 2089, 2097, 2097, Key_dead_cedilla, 2097, 2111, 2111, 2111, 2111, Key_dead_ogonek, 2111, 2121, 2121, 2121, 2121, Key_dead_iota, 2121, 2143, 2242, 2674, 3334, Key_dead_voiced_sound, 3334, 3380, 3380, 3380, 3380, Key_dead_semivoiced_sound, 3380, 3390, 3390, 3390, 3390, Key_dead_belowdot, 3390, 3400, 3400, 3416, 3416, Key_dead_hook, 3416, 3494, 3494, 3550, 3550, Key_dead_psili, 3550, 3578, 3578, 3578, 3578, Key_dead_dasia, 3578, 3610, 3610, 3610, 3610, Key_Multi_key, 3610, 3610, 9589, 13297, 15157, Key_space, 0x002F, Key_2, 0x01BB, Key_A, 0x023A, Key_B, 0x0243, Key_C, 0x023B, Key_D, 0x0110, Key_E, 0x0246, Key_G, 0x01E4, Key_H, 0x0126, Key_I, 0x0197, Key_J, 0x0248, Key_L, 0x0141, Key_O, 0x00D8, Key_P, 0x2C63, Key_R, 0x024C, Key_T, 0x0166, Key_U, 0x0244, Key_Y, 0x024E, Key_Z, 0x01B5, Key_a, 0x2C65, Key_b, 0x0180, Key_c, 0x023C, Key_d, 0x0111, Key_e, 0x0247, Key_g, 0x01E5, Key_h, 0x0127, Key_i, 0x0268, Key_j, 0x0249, Key_l, 0x0142, Key_o, 0x00F8, Key_p, 0x1D7D, Key_r, 0x024D, Key_t, 0x0167, Key_u, 0x0289, Key_y, 0x024F, Key_z, 0x01B6, Key_nobreakspace, 0x0338, Key_Oacute, 0x01FE, Key_oacute, 0x01FF, 0x0237, 0x025F, 0x0269, 0x1D7C, Key_dead_stroke, 0x002F, Key_lessthanequal, 0x2270, Key_greaterthanequal, 0x2271, Key_dead_acute, Key_O, 0x01FE, Key_dead_acute, Key_o, 0x01FF, Key_dead_abovedot, Key_j, 0x025F, Key_Greek_iota, 0x0390, Key_Greek_upsilon, 0x03B0, Key_space, 0x0060, Key_V, 0x01DB, Key_v, 0x01DC, Key_Abreve, 0x1EB0, Key_abreve, 0x1EB1, Key_Emacron, 0x1E14, Key_emacron, 0x1E15, Key_Omacron, 0x1E50, Key_omacron, 0x1E51, Key_Cyrillic_ie, 0x0450, Key_Cyrillic_i, 0x045D, Key_Cyrillic_IE, 0x0400, Key_Cyrillic_I, 0x040D, Key_Greek_iotadieresis, 0x1FD2, Key_Greek_upsilondieresis, 0x1FE2, Key_Greek_ALPHA, 0x1FBA, Key_Greek_EPSILON, 0x1FC8, Key_Greek_ETA, 0x1FCA, Key_Greek_IOTA, 0x1FDA, Key_Greek_OMICRON, 0x1FF8, Key_Greek_UPSILON, 0x1FEA, Key_Greek_OMEGA, 0x1FFA, Key_Greek_alpha, 0x1F70, Key_Greek_epsilon, 0x1F72, Key_Greek_eta, 0x1F74, Key_Greek_iota, 0x1F76, Key_Greek_omicron, 0x1F78, Key_Greek_upsilon, 0x1F7A, Key_Greek_omega, 0x1F7C, Key_dead_grave, 0x0060, Key_dead_diaeresis, Key_Greek_iota, 0x1FD2, Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE2, Key_dead_psili, Key_Greek_ALPHA, 0x1F0A, Key_dead_psili, Key_Greek_EPSILON, 0x1F1A, Key_dead_psili, Key_Greek_ETA, 0x1F2A, Key_dead_psili, Key_Greek_IOTA, 0x1F3A, Key_dead_psili, Key_Greek_OMICRON, 0x1F4A, Key_dead_psili, Key_Greek_OMEGA, 0x1F6A, Key_dead_psili, Key_Greek_alpha, 0x1F02, Key_dead_psili, Key_Greek_epsilon, 0x1F12, Key_dead_psili, Key_Greek_eta, 0x1F22, Key_dead_psili, Key_Greek_iota, 0x1F32, Key_dead_psili, Key_Greek_omicron, 0x1F42, Key_dead_psili, Key_Greek_upsilon, 0x1F52, Key_dead_psili, Key_Greek_omega, 0x1F62, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0B, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1B, Key_dead_dasia, Key_Greek_ETA, 0x1F2B, Key_dead_dasia, Key_Greek_IOTA, 0x1F3B, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4B, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5B, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6B, Key_dead_dasia, Key_Greek_alpha, 0x1F03, Key_dead_dasia, Key_Greek_epsilon, 0x1F13, Key_dead_dasia, Key_Greek_eta, 0x1F23, Key_dead_dasia, Key_Greek_iota, 0x1F33, Key_dead_dasia, Key_Greek_omicron, 0x1F43, Key_dead_dasia, Key_Greek_upsilon, 0x1F53, Key_dead_dasia, Key_Greek_omega, 0x1F63, Key_Multi_key, Key_quotedbl, Key_U, 0x01DB, Key_Multi_key, Key_quotedbl, Key_u, 0x01DC, Key_Multi_key, Key_quotedbl, Key_Greek_iota, 0x1FD2, Key_Multi_key, Key_quotedbl, Key_Greek_upsilon, 0x1FE2, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F0B, Key_Multi_key, Key_parenleft, Key_Greek_EPSILON, 0x1F1B, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F2B, Key_Multi_key, Key_parenleft, Key_Greek_IOTA, 0x1F3B, Key_Multi_key, Key_parenleft, Key_Greek_OMICRON, 0x1F4B, Key_Multi_key, Key_parenleft, Key_Greek_UPSILON, 0x1F5B, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1F6B, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F03, Key_Multi_key, Key_parenleft, Key_Greek_epsilon, 0x1F13, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F23, Key_Multi_key, Key_parenleft, Key_Greek_iota, 0x1F33, Key_Multi_key, Key_parenleft, Key_Greek_omicron, 0x1F43, Key_Multi_key, Key_parenleft, Key_Greek_upsilon, 0x1F53, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1F63, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F0A, Key_Multi_key, Key_parenright, Key_Greek_EPSILON, 0x1F1A, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F2A, Key_Multi_key, Key_parenright, Key_Greek_IOTA, 0x1F3A, Key_Multi_key, Key_parenright, Key_Greek_OMICRON, 0x1F4A, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1F6A, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F02, Key_Multi_key, Key_parenright, Key_Greek_epsilon, 0x1F12, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F22, Key_Multi_key, Key_parenright, Key_Greek_iota, 0x1F32, Key_Multi_key, Key_parenright, Key_Greek_omicron, 0x1F42, Key_Multi_key, Key_parenright, Key_Greek_upsilon, 0x1F52, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1F62, Key_Multi_key, Key_plus, Key_O, 0x1EDC, Key_Multi_key, Key_plus, Key_U, 0x1EEA, Key_Multi_key, Key_plus, Key_o, 0x1EDD, Key_Multi_key, Key_plus, Key_u, 0x1EEB, Key_Multi_key, Key_U, Key_A, 0x1EB0, Key_Multi_key, Key_U, Key_a, 0x1EB1, Key_Multi_key, Key_asciicircum, Key_A, 0x1EA6, Key_Multi_key, Key_asciicircum, Key_E, 0x1EC0, Key_Multi_key, Key_asciicircum, Key_O, 0x1ED2, Key_Multi_key, Key_asciicircum, Key_a, 0x1EA7, Key_Multi_key, Key_asciicircum, Key_e, 0x1EC1, Key_Multi_key, Key_asciicircum, Key_o, 0x1ED3, Key_Multi_key, Key_underscore, Key_E, 0x1E14, Key_Multi_key, Key_underscore, Key_O, 0x1E50, Key_Multi_key, Key_underscore, Key_e, 0x1E15, Key_Multi_key, Key_underscore, Key_o, 0x1E51, Key_Multi_key, Key_b, Key_A, 0x1EB0, Key_Multi_key, Key_b, Key_a, 0x1EB1, Key_Multi_key, Key_macron, Key_E, 0x1E14, Key_Multi_key, Key_macron, Key_O, 0x1E50, Key_Multi_key, Key_macron, Key_e, 0x1E15, Key_Multi_key, Key_macron, Key_o, 0x1E51, Key_space, 0x0027, Key_V, 0x01D7, Key_v, 0x01D8, Key_Abreve, 0x1EAE, Key_abreve, 0x1EAF, Key_Emacron, 0x1E16, Key_emacron, 0x1E17, Key_Utilde, 0x1E78, Key_omacron, 0x1E53, Key_utilde, 0x1E79, Key_Cyrillic_ghe, 0x0453, Key_Cyrillic_ka, 0x045C, Key_Cyrillic_GHE, 0x0403, Key_Cyrillic_KA, 0x040C, Key_Greek_iotadieresis, 0x0390, Key_Greek_upsilondieresis, 0x03B0, Key_Greek_ALPHA, 0x0386, Key_Greek_EPSILON, 0x0388, Key_Greek_ETA, 0x0389, Key_Greek_IOTA, 0x038A, Key_Greek_OMICRON, 0x038C, Key_Greek_UPSILON, 0x038E, Key_Greek_OMEGA, 0x038F, Key_Greek_alpha, 0x03AC, Key_Greek_epsilon, 0x03AD, Key_Greek_eta, 0x03AE, Key_Greek_iota, 0x03AF, Key_Greek_omicron, 0x03CC, Key_Greek_upsilon, 0x03CD, Key_Greek_omega, 0x03CE, Key_Sabovedot, 0x1E64, Key_sabovedot, 0x1E65, Key_dead_acute, 0x00B4, Key_dead_stroke, Key_O, 0x01FE, Key_dead_stroke, Key_o, 0x01FF, Key_dead_diaeresis, Key_space, 0x0385, Key_dead_diaeresis, Key_Greek_iota, 0x0390, Key_dead_diaeresis, Key_Greek_upsilon, 0x03B0, Key_dead_psili, Key_Greek_ALPHA, 0x1F0C, Key_dead_psili, Key_Greek_EPSILON, 0x1F1C, Key_dead_psili, Key_Greek_ETA, 0x1F2C, Key_dead_psili, Key_Greek_IOTA, 0x1F3C, Key_dead_psili, Key_Greek_OMICRON, 0x1F4C, Key_dead_psili, Key_Greek_OMEGA, 0x1F6C, Key_dead_psili, Key_Greek_alpha, 0x1F04, Key_dead_psili, Key_Greek_epsilon, 0x1F14, Key_dead_psili, Key_Greek_eta, 0x1F24, Key_dead_psili, Key_Greek_iota, 0x1F34, Key_dead_psili, Key_Greek_omicron, 0x1F44, Key_dead_psili, Key_Greek_upsilon, 0x1F54, Key_dead_psili, Key_Greek_omega, 0x1F64, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0D, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1D, Key_dead_dasia, Key_Greek_ETA, 0x1F2D, Key_dead_dasia, Key_Greek_IOTA, 0x1F3D, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4D, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5D, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6D, Key_dead_dasia, Key_Greek_alpha, 0x1F05, Key_dead_dasia, Key_Greek_epsilon, 0x1F15, Key_dead_dasia, Key_Greek_eta, 0x1F25, Key_dead_dasia, Key_Greek_iota, 0x1F35, Key_dead_dasia, Key_Greek_omicron, 0x1F45, Key_dead_dasia, Key_Greek_upsilon, 0x1F55, Key_dead_dasia, Key_Greek_omega, 0x1F65, Key_Multi_key, Key_quotedbl, Key_I, 0x1E2E, Key_Multi_key, Key_quotedbl, Key_U, 0x01D7, Key_Multi_key, Key_quotedbl, Key_i, 0x1E2F, Key_Multi_key, Key_quotedbl, Key_u, 0x01D8, Key_Multi_key, Key_quotedbl, Key_Greek_iota, 0x0390, Key_Multi_key, Key_quotedbl, Key_Greek_upsilon, 0x03B0, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F0D, Key_Multi_key, Key_parenleft, Key_Greek_EPSILON, 0x1F1D, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F2D, Key_Multi_key, Key_parenleft, Key_Greek_IOTA, 0x1F3D, Key_Multi_key, Key_parenleft, Key_Greek_OMICRON, 0x1F4D, Key_Multi_key, Key_parenleft, Key_Greek_UPSILON, 0x1F5D, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1F6D, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F05, Key_Multi_key, Key_parenleft, Key_Greek_epsilon, 0x1F15, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F25, Key_Multi_key, Key_parenleft, Key_Greek_iota, 0x1F35, Key_Multi_key, Key_parenleft, Key_Greek_omicron, 0x1F45, Key_Multi_key, Key_parenleft, Key_Greek_upsilon, 0x1F55, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1F65, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F0C, Key_Multi_key, Key_parenright, Key_Greek_EPSILON, 0x1F1C, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F2C, Key_Multi_key, Key_parenright, Key_Greek_IOTA, 0x1F3C, Key_Multi_key, Key_parenright, Key_Greek_OMICRON, 0x1F4C, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1F6C, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F04, Key_Multi_key, Key_parenright, Key_Greek_epsilon, 0x1F14, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F24, Key_Multi_key, Key_parenright, Key_Greek_iota, 0x1F34, Key_Multi_key, Key_parenright, Key_Greek_omicron, 0x1F44, Key_Multi_key, Key_parenright, Key_Greek_upsilon, 0x1F54, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1F64, Key_Multi_key, Key_plus, Key_O, 0x1EDA, Key_Multi_key, Key_plus, Key_U, 0x1EE8, Key_Multi_key, Key_plus, Key_o, 0x1EDB, Key_Multi_key, Key_plus, Key_u, 0x1EE9, Key_Multi_key, Key_comma, Key_C, 0x1E08, Key_Multi_key, Key_comma, Key_c, 0x1E09, Key_Multi_key, Key_slash, Key_O, 0x01FE, Key_Multi_key, Key_slash, Key_o, 0x01FF, Key_Multi_key, Key_U, Key_A, 0x1EAE, Key_Multi_key, Key_U, Key_a, 0x1EAF, Key_Multi_key, Key_asciicircum, Key_A, 0x1EA4, Key_Multi_key, Key_asciicircum, Key_E, 0x1EBE, Key_Multi_key, Key_asciicircum, Key_O, 0x1ED0, Key_Multi_key, Key_asciicircum, Key_a, 0x1EA5, Key_Multi_key, Key_asciicircum, Key_e, 0x1EBF, Key_Multi_key, Key_asciicircum, Key_o, 0x1ED1, Key_Multi_key, Key_underscore, Key_E, 0x1E16, Key_Multi_key, Key_underscore, Key_O, 0x1E52, Key_Multi_key, Key_underscore, Key_e, 0x1E17, Key_Multi_key, Key_underscore, Key_o, 0x1E53, Key_Multi_key, Key_b, Key_A, 0x1EAE, Key_Multi_key, Key_b, Key_a, 0x1EAF, Key_Multi_key, Key_o, Key_A, 0x01FA, Key_Multi_key, Key_o, Key_a, 0x01FB, Key_Multi_key, Key_asciitilde, Key_O, 0x1E4C, Key_Multi_key, Key_asciitilde, Key_U, 0x1E78, Key_Multi_key, Key_asciitilde, Key_o, 0x1E4D, Key_Multi_key, Key_asciitilde, Key_u, 0x1E79, Key_Multi_key, Key_macron, Key_E, 0x1E16, Key_Multi_key, Key_macron, Key_O, 0x1E52, Key_Multi_key, Key_macron, Key_e, 0x1E17, Key_Multi_key, Key_macron, Key_o, 0x1E53, Key_Multi_key, Key_cedilla, Key_C, 0x1E08, Key_Multi_key, Key_cedilla, Key_c, 0x1E09, Key_Multi_key, Key_KP_Divide, Key_O, 0x01FE, Key_Multi_key, Key_KP_Divide, Key_o, 0x01FF, Key_space, 0x005E, Key_parenleft, 0x207D, Key_parenright, 0x207E, Key_plus, 0x207A, Key_minus, 0x207B, Key_0, 0x2070, Key_1, 0x00B9, Key_2, 0x00B2, Key_3, 0x00B3, Key_4, 0x2074, Key_5, 0x2075, Key_6, 0x2076, Key_7, 0x2077, Key_8, 0x2078, Key_9, 0x2079, Key_equal, 0x207C, Key_nobreakspace, 0x0302, Key_Agrave, 0x1EA6, Key_Aacute, 0x1EA4, Key_Atilde, 0x1EAA, Key_Egrave, 0x1EC0, Key_Eacute, 0x1EBE, Key_Ograve, 0x1ED2, Key_Oacute, 0x1ED0, Key_Otilde, 0x1ED6, Key_agrave, 0x1EA7, Key_aacute, 0x1EA5, Key_atilde, 0x1EAB, Key_egrave, 0x1EC1, Key_eacute, 0x1EBF, Key_ograve, 0x1ED3, Key_oacute, 0x1ED1, Key_otilde, 0x1ED7, Key_Ahook, 0x1EA8, Key_ahook, 0x1EA9, Key_Ehook, 0x1EC2, Key_ehook, 0x1EC3, Key_Etilde, 0x1EC4, Key_etilde, 0x1EC5, Key_Ohook, 0x1ED4, Key_ohook, 0x1ED5, 0x2212, 0x207B, 0x4E00, 0x3192, 0x4E01, 0x319C, 0x4E09, 0x3194, 0x4E0A, 0x3196, 0x4E0B, 0x3198, 0x4E19, 0x319B, 0x4E2D, 0x3197, 0x4E59, 0x319A, 0x4E8C, 0x3193, 0x4EBA, 0x319F, 0x56DB, 0x3195, 0x5730, 0x319E, 0x5929, 0x319D, 0x7532, 0x3199, Key_dead_circumflex, 0x005E, Key_KP_Space, 0x00B2, Key_KP_Add, 0x207A, Key_KP_0, 0x2070, Key_KP_1, 0x00B9, Key_KP_2, 0x00B2, Key_KP_3, 0x00B3, Key_KP_4, 0x2074, Key_KP_5, 0x2075, Key_KP_6, 0x2076, Key_KP_7, 0x2077, Key_KP_8, 0x2078, Key_KP_9, 0x2079, Key_KP_Equal, 0x207C, Key_Multi_key, Key_exclam, Key_A, 0x1EAC, Key_Multi_key, Key_exclam, Key_E, 0x1EC6, Key_Multi_key, Key_exclam, Key_O, 0x1ED8, Key_Multi_key, Key_exclam, Key_a, 0x1EAD, Key_Multi_key, Key_exclam, Key_e, 0x1EC7, Key_Multi_key, Key_exclam, Key_o, 0x1ED9, Key_Multi_key, Key_S, Key_M, 0x2120, Key_Multi_key, Key_S, Key_m, 0x2120, Key_Multi_key, Key_T, Key_M, 0x2122, Key_Multi_key, Key_T, Key_m, 0x2122, Key_Multi_key, Key_underscore, Key_a, 0x00AA, Key_Multi_key, Key_underscore, Key_h, 0x02B0, Key_Multi_key, Key_underscore, Key_i, 0x2071, Key_Multi_key, Key_underscore, Key_j, 0x02B2, Key_Multi_key, Key_underscore, Key_l, 0x02E1, Key_Multi_key, Key_underscore, Key_n, 0x207F, Key_Multi_key, Key_underscore, Key_o, 0x00BA, Key_Multi_key, Key_underscore, Key_r, 0x02B3, Key_Multi_key, Key_underscore, Key_s, 0x02E2, Key_Multi_key, Key_underscore, Key_w, 0x02B7, Key_Multi_key, Key_underscore, Key_x, 0x02E3, Key_Multi_key, Key_underscore, Key_y, 0x02B8, Key_Multi_key, Key_underscore, 0x0263, 0x02E0, Key_Multi_key, Key_underscore, 0x0266, 0x02B1, Key_Multi_key, Key_underscore, 0x0279, 0x02B4, Key_Multi_key, Key_underscore, 0x027B, 0x02B5, Key_Multi_key, Key_underscore, 0x0281, 0x02B6, Key_Multi_key, Key_underscore, 0x0295, 0x02E4, Key_Multi_key, Key_s, Key_M, 0x2120, Key_Multi_key, Key_s, Key_m, 0x2120, Key_Multi_key, Key_t, Key_M, 0x2122, Key_Multi_key, Key_t, Key_m, 0x2122, Key_Multi_key, Key_underbar, Key_a, 0x00AA, Key_Multi_key, Key_underbar, Key_h, 0x02B0, Key_Multi_key, Key_underbar, Key_i, 0x2071, Key_Multi_key, Key_underbar, Key_j, 0x02B2, Key_Multi_key, Key_underbar, Key_l, 0x02E1, Key_Multi_key, Key_underbar, Key_n, 0x207F, Key_Multi_key, Key_underbar, Key_o, 0x00BA, Key_Multi_key, Key_underbar, Key_r, 0x02B3, Key_Multi_key, Key_underbar, Key_s, 0x02E2, Key_Multi_key, Key_underbar, Key_w, 0x02B7, Key_Multi_key, Key_underbar, Key_x, 0x02E3, Key_Multi_key, Key_underbar, Key_y, 0x02B8, Key_Multi_key, Key_underbar, 0x0263, 0x02E0, Key_Multi_key, Key_underbar, 0x0266, 0x02B1, Key_Multi_key, Key_underbar, 0x0279, 0x02B4, Key_Multi_key, Key_underbar, 0x027B, 0x02B5, Key_Multi_key, Key_underbar, 0x0281, 0x02B6, Key_Multi_key, Key_underbar, 0x0295, 0x02E4, Key_space, 0x007E, Key_less, 0x2272, Key_equal, 0x2243, Key_greater, 0x2273, Key_Oacute, 0x1E4C, Key_Odiaeresis, 0x1E4E, Key_Uacute, 0x1E78, Key_oacute, 0x1E4D, Key_odiaeresis, 0x1E4F, Key_uacute, 0x1E79, Key_Abreve, 0x1EB4, Key_abreve, 0x1EB5, Key_Omacron, 0x022C, Key_omacron, 0x022D, Key_Greek_iotadieresis, 0x1FD7, Key_Greek_upsilondieresis, 0x1FE7, Key_Greek_alpha, 0x1FB6, Key_Greek_eta, 0x1FC6, Key_Greek_iota, 0x1FD6, Key_Greek_upsilon, 0x1FE6, Key_Greek_omega, 0x1FF6, 0x1F00, 0x1F06, 0x1F01, 0x1F07, 0x1F08, 0x1F0E, 0x1F09, 0x1F0F, 0x1F20, 0x1F26, 0x1F21, 0x1F27, 0x1F28, 0x1F2E, 0x1F29, 0x1F2F, 0x1F30, 0x1F36, 0x1F31, 0x1F37, 0x1F38, 0x1F3E, 0x1F39, 0x1F3F, 0x1F50, 0x1F56, 0x1F51, 0x1F57, 0x1F59, 0x1F5F, 0x1F60, 0x1F66, 0x1F61, 0x1F67, 0x1F68, 0x1F6E, 0x1F69, 0x1F6F, Key_dead_tilde, 0x007E, Key_dead_diaeresis, Key_Greek_iota, 0x1FD7, Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE7, Key_dead_psili, Key_Greek_ALPHA, 0x1F0E, Key_dead_psili, Key_Greek_ETA, 0x1F2E, Key_dead_psili, Key_Greek_IOTA, 0x1F3E, Key_dead_psili, Key_Greek_OMEGA, 0x1F6E, Key_dead_psili, Key_Greek_alpha, 0x1F06, Key_dead_psili, Key_Greek_eta, 0x1F26, Key_dead_psili, Key_Greek_iota, 0x1F36, Key_dead_psili, Key_Greek_upsilon, 0x1F56, Key_dead_psili, Key_Greek_omega, 0x1F66, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0F, Key_dead_dasia, Key_Greek_ETA, 0x1F2F, Key_dead_dasia, Key_Greek_IOTA, 0x1F3F, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5F, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6F, Key_dead_dasia, Key_Greek_alpha, 0x1F07, Key_dead_dasia, Key_Greek_eta, 0x1F27, Key_dead_dasia, Key_Greek_iota, 0x1F37, Key_dead_dasia, Key_Greek_upsilon, 0x1F57, Key_dead_dasia, Key_Greek_omega, 0x1F67, Key_Multi_key, Key_quotedbl, Key_Greek_iota, 0x1FD7, Key_Multi_key, Key_quotedbl, Key_Greek_upsilon, 0x1FE7, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F0F, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F2F, Key_Multi_key, Key_parenleft, Key_Greek_IOTA, 0x1F3F, Key_Multi_key, Key_parenleft, Key_Greek_UPSILON, 0x1F5F, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1F6F, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F07, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F27, Key_Multi_key, Key_parenleft, Key_Greek_iota, 0x1F37, Key_Multi_key, Key_parenleft, Key_Greek_upsilon, 0x1F57, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1F67, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F0E, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F2E, Key_Multi_key, Key_parenright, Key_Greek_IOTA, 0x1F3E, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1F6E, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F06, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F26, Key_Multi_key, Key_parenright, Key_Greek_iota, 0x1F36, Key_Multi_key, Key_parenright, Key_Greek_upsilon, 0x1F56, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1F66, Key_Multi_key, Key_plus, Key_O, 0x1EE0, Key_Multi_key, Key_plus, Key_U, 0x1EEE, Key_Multi_key, Key_plus, Key_o, 0x1EE1, Key_Multi_key, Key_plus, Key_u, 0x1EEF, Key_Multi_key, Key_U, Key_A, 0x1EB4, Key_Multi_key, Key_U, Key_a, 0x1EB5, Key_Multi_key, Key_asciicircum, Key_A, 0x1EAA, Key_Multi_key, Key_asciicircum, Key_E, 0x1EC4, Key_Multi_key, Key_asciicircum, Key_O, 0x1ED6, Key_Multi_key, Key_asciicircum, Key_a, 0x1EAB, Key_Multi_key, Key_asciicircum, Key_e, 0x1EC5, Key_Multi_key, Key_asciicircum, Key_o, 0x1ED7, Key_Multi_key, Key_b, Key_A, 0x1EB4, Key_Multi_key, Key_b, Key_a, 0x1EB5, Key_space, 0x00AF, Key_V, 0x01D5, Key_v, 0x01D6, Key_nobreakspace, 0x0304, Key_Egrave, 0x1E14, Key_Eacute, 0x1E16, Key_Ograve, 0x1E50, Key_Oacute, 0x1E52, Key_egrave, 0x1E15, Key_eacute, 0x1E17, Key_ograve, 0x1E51, Key_oacute, 0x1E53, Key_Cyrillic_i, 0x04E3, Key_Cyrillic_u, 0x04EF, Key_Cyrillic_I, 0x04E2, Key_Cyrillic_U, 0x04EE, Key_Greek_ALPHA, 0x1FB9, Key_Greek_IOTA, 0x1FD9, Key_Greek_UPSILON, 0x1FE9, Key_Greek_alpha, 0x1FB1, Key_Greek_iota, 0x1FD1, Key_Greek_upsilon, 0x1FE1, Key_dead_macron, 0x00AF, Key_Multi_key, Key_exclam, Key_L, 0x1E38, Key_Multi_key, Key_exclam, Key_R, 0x1E5C, Key_Multi_key, Key_exclam, Key_l, 0x1E39, Key_Multi_key, Key_exclam, Key_r, 0x1E5D, Key_Multi_key, Key_quotedbl, Key_A, 0x01DE, Key_Multi_key, Key_quotedbl, Key_O, 0x022A, Key_Multi_key, Key_quotedbl, Key_U, 0x01D5, Key_Multi_key, Key_quotedbl, Key_a, 0x01DF, Key_Multi_key, Key_quotedbl, Key_o, 0x022B, Key_Multi_key, Key_quotedbl, Key_u, 0x01D6, Key_Multi_key, Key_period, Key_A, 0x01E0, Key_Multi_key, Key_period, Key_O, 0x0230, Key_Multi_key, Key_period, Key_a, 0x01E1, Key_Multi_key, Key_period, Key_o, 0x0231, Key_Multi_key, Key_semicolon, Key_O, 0x01EC, Key_Multi_key, Key_semicolon, Key_o, 0x01ED, Key_Multi_key, Key_asciitilde, Key_O, 0x022C, Key_Multi_key, Key_asciitilde, Key_o, 0x022D, Key_space, 0x02D8, Key_nobreakspace, 0x0306, Key_Agrave, 0x1EB0, Key_Aacute, 0x1EAE, Key_Atilde, 0x1EB4, Key_agrave, 0x1EB1, Key_aacute, 0x1EAF, Key_atilde, 0x1EB5, Key_Cyrillic_a, 0x04D1, Key_Cyrillic_ie, 0x04D7, Key_Cyrillic_i, 0x0439, Key_Cyrillic_u, 0x045E, Key_Cyrillic_zhe, 0x04C2, Key_Cyrillic_A, 0x04D0, Key_Cyrillic_IE, 0x04D6, Key_Cyrillic_I, 0x0419, Key_Cyrillic_U, 0x040E, Key_Cyrillic_ZHE, 0x04C1, Key_Greek_ALPHA, 0x1FB8, Key_Greek_IOTA, 0x1FD8, Key_Greek_UPSILON, 0x1FE8, Key_Greek_alpha, 0x1FB0, Key_Greek_iota, 0x1FD0, Key_Greek_upsilon, 0x1FE0, Key_Ahook, 0x1EB2, Key_ahook, 0x1EB3, Key_dead_breve, 0x02D8, Key_Multi_key, Key_exclam, Key_A, 0x1EB6, Key_Multi_key, Key_exclam, Key_a, 0x1EB7, Key_Multi_key, Key_comma, Key_E, 0x1E1C, Key_Multi_key, Key_comma, Key_e, 0x1E1D, Key_Multi_key, Key_cedilla, Key_E, 0x1E1C, Key_Multi_key, Key_cedilla, Key_e, 0x1E1D, Key_space, 0x02D9, Key_L, 0x013F, Key_i, 0x0131, Key_j, 0x0237, Key_l, 0x0140, Key_nobreakspace, 0x0307, Key_Sacute, 0x1E64, Key_Scaron, 0x1E66, Key_sacute, 0x1E65, Key_scaron, 0x1E67, Key_Amacron, 0x01E0, Key_Omacron, 0x0230, Key_amacron, 0x01E1, Key_omacron, 0x0231, Key_dead_abovedot, 0x02D9, Key_dead_stroke, Key_j, 0x025F, Key_Multi_key, Key_exclam, Key_S, 0x1E68, Key_Multi_key, Key_exclam, Key_s, 0x1E69, Key_Multi_key, Key_apostrophe, Key_S, 0x1E64, Key_Multi_key, Key_apostrophe, Key_s, 0x1E65, Key_Multi_key, Key_c, Key_S, 0x1E66, Key_Multi_key, Key_c, Key_s, 0x1E67, Key_Multi_key, Key_acute, Key_S, 0x1E64, Key_Multi_key, Key_acute, Key_s, 0x1E65, Key_space, 0x0022, Key_apostrophe, 0x0344, Key_nobreakspace, 0x0308, Key_acute, 0x0344, Key_Iacute, 0x1E2E, Key_Ugrave, 0x01DB, Key_Uacute, 0x01D7, Key_iacute, 0x1E2F, Key_ugrave, 0x01DC, Key_uacute, 0x01D8, 0x01D3, 0x01D9, 0x01D4, 0x01DA, Key_Amacron, 0x01DE, Key_Umacron, 0x1E7A, Key_amacron, 0x01DF, Key_omacron, 0x022B, Key_umacron, 0x1E7B, Key_Ukrainian_i, 0x0457, Key_Ukrainian_I, 0x0407, Key_Cyrillic_a, 0x04D3, Key_Cyrillic_ie, 0x0451, Key_Cyrillic_i, 0x04E5, Key_Cyrillic_o, 0x04E7, Key_Cyrillic_u, 0x04F1, Key_Cyrillic_zhe, 0x04DD, Key_Cyrillic_yeru, 0x04F9, Key_Cyrillic_ze, 0x04DF, Key_Cyrillic_e, 0x04ED, Key_Cyrillic_che, 0x04F5, Key_Cyrillic_A, 0x04D2, Key_Cyrillic_IE, 0x0401, Key_Cyrillic_I, 0x04E4, Key_Cyrillic_O, 0x04E6, Key_Cyrillic_U, 0x04F0, Key_Cyrillic_ZHE, 0x04DC, Key_Cyrillic_YERU, 0x04F8, Key_Cyrillic_ZE, 0x04DE, Key_Cyrillic_E, 0x04EC, Key_Cyrillic_CHE, 0x04F4, Key_Greek_IOTA, 0x03AA, Key_Greek_UPSILON, 0x03AB, Key_Greek_iota, 0x03CA, Key_Greek_upsilon, 0x03CB, Key_dead_diaeresis, 0x00A8, Key_dead_acute, Key_space, 0x0385, Key_dead_acute, Key_Greek_iota, 0x0390, Key_dead_acute, Key_Greek_upsilon, 0x03B0, Key_Multi_key, Key_underscore, Key_U, 0x1E7A, Key_Multi_key, Key_underscore, Key_u, 0x1E7B, Key_Multi_key, Key_asciitilde, Key_O, 0x1E4E, Key_Multi_key, Key_asciitilde, Key_o, 0x1E4F, Key_Multi_key, Key_macron, Key_U, 0x1E7A, Key_Multi_key, Key_macron, Key_u, 0x1E7B, Key_space, 0x00B0, Key_nobreakspace, 0x030A, Key_Aacute, 0x01FA, Key_aacute, 0x01FB, Key_dead_abovering, 0x00B0, Key_space, 0x02DD, Key_nobreakspace, 0x030B, Key_Cyrillic_u, 0x04F3, Key_Cyrillic_U, 0x04F2, Key_dead_doubleacute, 0x02DD, Key_space, 0x02C7, Key_parenleft, 0x208D, Key_parenright, 0x208E, Key_plus, 0x208A, Key_minus, 0x208B, Key_equal, 0x208C, Key_V, 0x01D9, Key_v, 0x01DA, Key_nobreakspace, 0x030C, 0x01F2, 0x01C5, Key_Sabovedot, 0x1E66, Key_sabovedot, 0x1E67, Key_dead_caron, 0x02C7, Key_Multi_key, Key_quotedbl, Key_U, 0x01D9, Key_Multi_key, Key_quotedbl, Key_u, 0x01DA, Key_space, 0x00B8, Key_nobreakspace, 0x0327, Key_cent, 0x20B5, Key_Cacute, 0x1E08, Key_cacute, 0x1E09, Key_ColonSign, 0x20B5, Key_dead_cedilla, 0x00B8, Key_space, 0x02DB, Key_nobreakspace, 0x0328, Key_Omacron, 0x01EC, Key_omacron, 0x01ED, Key_dead_ogonek, 0x02DB, Key_space, 0x037A, Key_Greek_alphaaccent, 0x1FB4, Key_Greek_etaaccent, 0x1FC4, Key_Greek_omegaaccent, 0x1FF4, Key_Greek_ALPHA, 0x1FBC, Key_Greek_ETA, 0x1FCC, Key_Greek_OMEGA, 0x1FFC, Key_Greek_alpha, 0x1FB3, Key_Greek_eta, 0x1FC3, Key_Greek_omega, 0x1FF3, Key_dead_iota, 0x037A, Key_dead_grave, Key_Greek_alpha, 0x1FB2, Key_dead_grave, Key_Greek_eta, 0x1FC2, Key_dead_grave, Key_Greek_omega, 0x1FF2, Key_dead_acute, Key_Greek_alpha, 0x1FB4, Key_dead_acute, Key_Greek_eta, 0x1FC4, Key_dead_acute, Key_Greek_omega, 0x1FF4, Key_dead_tilde, Key_Greek_alpha, 0x1FB7, Key_dead_tilde, Key_Greek_eta, 0x1FC7, Key_dead_tilde, Key_Greek_omega, 0x1FF7, Key_dead_tilde, 0x1F00, 0x1F86, Key_dead_tilde, 0x1F01, 0x1F87, Key_dead_tilde, 0x1F08, 0x1F8E, Key_dead_tilde, 0x1F09, 0x1F8F, Key_dead_tilde, 0x1F20, 0x1F96, Key_dead_tilde, 0x1F21, 0x1F97, Key_dead_tilde, 0x1F28, 0x1F9E, Key_dead_tilde, 0x1F29, 0x1F9F, Key_dead_tilde, 0x1F60, 0x1FA6, Key_dead_tilde, 0x1F61, 0x1FA7, Key_dead_tilde, 0x1F68, 0x1FAE, Key_dead_tilde, 0x1F69, 0x1FAF, Key_dead_psili, Key_Greek_ALPHA, 0x1F88, Key_dead_psili, Key_Greek_ETA, 0x1F98, Key_dead_psili, Key_Greek_OMEGA, 0x1FA8, Key_dead_psili, Key_Greek_alpha, 0x1F80, Key_dead_psili, Key_Greek_eta, 0x1F90, Key_dead_psili, Key_Greek_omega, 0x1FA0, Key_dead_dasia, Key_Greek_ALPHA, 0x1F89, Key_dead_dasia, Key_Greek_ETA, 0x1F99, Key_dead_dasia, Key_Greek_OMEGA, 0x1FA9, Key_dead_dasia, Key_Greek_alpha, 0x1F81, Key_dead_dasia, Key_Greek_eta, 0x1F91, Key_dead_dasia, Key_Greek_omega, 0x1FA1, Key_dead_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, Key_dead_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, Key_dead_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, Key_dead_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, Key_dead_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, Key_dead_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, Key_dead_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, Key_dead_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, Key_dead_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, Key_dead_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, Key_dead_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, Key_dead_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, Key_dead_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, Key_dead_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, Key_dead_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, Key_dead_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, Key_dead_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, Key_dead_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, Key_dead_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, Key_dead_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, Key_dead_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, Key_dead_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, Key_dead_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, Key_dead_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, Key_dead_tilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, Key_dead_tilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, Key_dead_tilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, Key_dead_tilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, Key_dead_tilde, Key_dead_psili, Key_Greek_eta, 0x1F96, Key_dead_tilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, Key_dead_tilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, Key_dead_tilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, Key_dead_tilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, Key_dead_tilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, Key_dead_tilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, Key_dead_tilde, Key_dead_dasia, Key_Greek_omega, 0x1FA7, Key_Multi_key, Key_apostrophe, Key_Greek_alpha, 0x1FB4, Key_Multi_key, Key_apostrophe, Key_Greek_eta, 0x1FC4, Key_Multi_key, Key_apostrophe, Key_Greek_omega, 0x1FF4, Key_Multi_key, Key_apostrophe, 0x1F00, 0x1F84, Key_Multi_key, Key_apostrophe, 0x1F01, 0x1F85, Key_Multi_key, Key_apostrophe, 0x1F08, 0x1F8C, Key_Multi_key, Key_apostrophe, 0x1F09, 0x1F8D, Key_Multi_key, Key_apostrophe, 0x1F20, 0x1F94, Key_Multi_key, Key_apostrophe, 0x1F21, 0x1F95, Key_Multi_key, Key_apostrophe, 0x1F28, 0x1F9C, Key_Multi_key, Key_apostrophe, 0x1F29, 0x1F9D, Key_Multi_key, Key_apostrophe, 0x1F60, 0x1FA4, Key_Multi_key, Key_apostrophe, 0x1F61, 0x1FA5, Key_Multi_key, Key_apostrophe, 0x1F68, 0x1FAC, Key_Multi_key, Key_apostrophe, 0x1F69, 0x1FAD, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F89, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F99, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FA9, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F81, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F91, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA1, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F88, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F98, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FA8, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F80, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F90, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA0, Key_Multi_key, Key_grave, Key_Greek_alpha, 0x1FB2, Key_Multi_key, Key_grave, Key_Greek_eta, 0x1FC2, Key_Multi_key, Key_grave, Key_Greek_omega, 0x1FF2, Key_Multi_key, Key_grave, 0x1F00, 0x1F82, Key_Multi_key, Key_grave, 0x1F01, 0x1F83, Key_Multi_key, Key_grave, 0x1F08, 0x1F8A, Key_Multi_key, Key_grave, 0x1F09, 0x1F8B, Key_Multi_key, Key_grave, 0x1F20, 0x1F92, Key_Multi_key, Key_grave, 0x1F21, 0x1F93, Key_Multi_key, Key_grave, 0x1F28, 0x1F9A, Key_Multi_key, Key_grave, 0x1F29, 0x1F9B, Key_Multi_key, Key_grave, 0x1F60, 0x1FA2, Key_Multi_key, Key_grave, 0x1F61, 0x1FA3, Key_Multi_key, Key_grave, 0x1F68, 0x1FAA, Key_Multi_key, Key_grave, 0x1F69, 0x1FAB, Key_Multi_key, Key_asciitilde, Key_Greek_alpha, 0x1FB7, Key_Multi_key, Key_asciitilde, Key_Greek_eta, 0x1FC7, Key_Multi_key, Key_asciitilde, Key_Greek_omega, 0x1FF7, Key_Multi_key, Key_asciitilde, 0x1F00, 0x1F86, Key_Multi_key, Key_asciitilde, 0x1F01, 0x1F87, Key_Multi_key, Key_asciitilde, 0x1F08, 0x1F8E, Key_Multi_key, Key_asciitilde, 0x1F09, 0x1F8F, Key_Multi_key, Key_asciitilde, 0x1F20, 0x1F96, Key_Multi_key, Key_asciitilde, 0x1F21, 0x1F97, Key_Multi_key, Key_asciitilde, 0x1F28, 0x1F9E, Key_Multi_key, Key_asciitilde, 0x1F29, 0x1F9F, Key_Multi_key, Key_asciitilde, 0x1F60, 0x1FA6, Key_Multi_key, Key_asciitilde, 0x1F61, 0x1FA7, Key_Multi_key, Key_asciitilde, 0x1F68, 0x1FAE, Key_Multi_key, Key_asciitilde, 0x1F69, 0x1FAF, Key_Multi_key, Key_acute, Key_Greek_alpha, 0x1FB4, Key_Multi_key, Key_acute, Key_Greek_eta, 0x1FC4, Key_Multi_key, Key_acute, Key_Greek_omega, 0x1FF4, Key_Multi_key, Key_acute, 0x1F00, 0x1F84, Key_Multi_key, Key_acute, 0x1F01, 0x1F85, Key_Multi_key, Key_acute, 0x1F08, 0x1F8C, Key_Multi_key, Key_acute, 0x1F09, 0x1F8D, Key_Multi_key, Key_acute, 0x1F20, 0x1F94, Key_Multi_key, Key_acute, 0x1F21, 0x1F95, Key_Multi_key, Key_acute, 0x1F28, 0x1F9C, Key_Multi_key, Key_acute, 0x1F29, 0x1F9D, Key_Multi_key, Key_acute, 0x1F60, 0x1FA4, Key_Multi_key, Key_acute, 0x1F61, 0x1FA5, Key_Multi_key, Key_acute, 0x1F68, 0x1FAC, Key_Multi_key, Key_acute, 0x1F69, 0x1FAD, Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F9B, Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F83, Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F93, Key_dead_grave, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA3, Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F8A, Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F9A, Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FAA, Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F82, Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F92, Key_dead_grave, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA2, Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F9D, Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F85, Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F95, Key_dead_acute, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA5, Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F8C, Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F9C, Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FAC, Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F84, Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F94, Key_dead_acute, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA4, Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_ETA, 0x1F9F, Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_alpha, 0x1F87, Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_eta, 0x1F97, Key_dead_tilde, Key_Multi_key, Key_parenleft, Key_Greek_omega, 0x1FA7, Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_ALPHA, 0x1F8E, Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_ETA, 0x1F9E, Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_OMEGA, 0x1FAE, Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_alpha, 0x1F86, Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_eta, 0x1F96, Key_dead_tilde, Key_Multi_key, Key_parenright, Key_Greek_omega, 0x1FA6, Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_ETA, 0x1F9D, Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_alpha, 0x1F85, Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_eta, 0x1F95, Key_Multi_key, Key_apostrophe, Key_parenleft, Key_Greek_omega, 0x1FA5, Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_ALPHA, 0x1F8C, Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_ETA, 0x1F9C, Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_OMEGA, 0x1FAC, Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_alpha, 0x1F84, Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_eta, 0x1F94, Key_Multi_key, Key_apostrophe, Key_parenright, Key_Greek_omega, 0x1FA4, Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_ETA, 0x1F9C, Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_alpha, 0x1F84, Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_eta, 0x1F94, Key_Multi_key, Key_apostrophe, Key_dead_psili, Key_Greek_omega, 0x1FA4, Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_alpha, 0x1F85, Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_eta, 0x1F95, Key_Multi_key, Key_apostrophe, Key_dead_dasia, Key_Greek_omega, 0x1FA5, Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_ETA, 0x1F9B, Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_alpha, 0x1F83, Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_eta, 0x1F93, Key_Multi_key, Key_grave, Key_parenleft, Key_Greek_omega, 0x1FA3, Key_Multi_key, Key_grave, Key_parenright, Key_Greek_ALPHA, 0x1F8A, Key_Multi_key, Key_grave, Key_parenright, Key_Greek_ETA, 0x1F9A, Key_Multi_key, Key_grave, Key_parenright, Key_Greek_OMEGA, 0x1FAA, Key_Multi_key, Key_grave, Key_parenright, Key_Greek_alpha, 0x1F82, Key_Multi_key, Key_grave, Key_parenright, Key_Greek_eta, 0x1F92, Key_Multi_key, Key_grave, Key_parenright, Key_Greek_omega, 0x1FA2, Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, Key_Multi_key, Key_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, Key_Multi_key, Key_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_ETA, 0x1F9F, Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_alpha, 0x1F87, Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_eta, 0x1F97, Key_Multi_key, Key_asciitilde, Key_parenleft, Key_Greek_omega, 0x1FA7, Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_ALPHA, 0x1F8E, Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_ETA, 0x1F9E, Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_OMEGA, 0x1FAE, Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_alpha, 0x1F86, Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_eta, 0x1F96, Key_Multi_key, Key_asciitilde, Key_parenright, Key_Greek_omega, 0x1FA6, Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_eta, 0x1F96, Key_Multi_key, Key_asciitilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, Key_Multi_key, Key_asciitilde, Key_dead_dasia, Key_Greek_omega, 0x1FA7, Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_ETA, 0x1F9D, Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_alpha, 0x1F85, Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_eta, 0x1F95, Key_Multi_key, Key_acute, Key_parenleft, Key_Greek_omega, 0x1FA5, Key_Multi_key, Key_acute, Key_parenright, Key_Greek_ALPHA, 0x1F8C, Key_Multi_key, Key_acute, Key_parenright, Key_Greek_ETA, 0x1F9C, Key_Multi_key, Key_acute, Key_parenright, Key_Greek_OMEGA, 0x1FAC, Key_Multi_key, Key_acute, Key_parenright, Key_Greek_alpha, 0x1F84, Key_Multi_key, Key_acute, Key_parenright, Key_Greek_eta, 0x1F94, Key_Multi_key, Key_acute, Key_parenright, Key_Greek_omega, 0x1FA4, Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, Key_Multi_key, Key_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, Key_Multi_key, Key_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, Key_kana_WO, 0x30FA, Key_kana_U, 0x30F4, Key_kana_KA, 0x30AC, Key_kana_KI, 0x30AE, Key_kana_KU, 0x30B0, Key_kana_KE, 0x30B2, Key_kana_KO, 0x30B4, Key_kana_SA, 0x30B6, Key_kana_SHI, 0x30B8, Key_kana_SU, 0x30BA, Key_kana_SE, 0x30BC, Key_kana_SO, 0x30BE, Key_kana_TA, 0x30C0, Key_kana_CHI, 0x30C2, Key_kana_TSU, 0x30C5, Key_kana_TE, 0x30C7, Key_kana_TO, 0x30C9, Key_kana_HA, 0x30D0, Key_kana_HI, 0x30D3, Key_kana_FU, 0x30D6, Key_kana_HE, 0x30D9, Key_kana_HO, 0x30DC, Key_kana_WA, 0x30F7, Key_kana_HA, 0x30D1, Key_kana_HI, 0x30D4, Key_kana_FU, 0x30D7, Key_kana_HE, 0x30DA, Key_kana_HO, 0x30DD, Key_plus, 0x2A25, Key_minus, 0x2A2A, Key_equal, 0x2A66, Key_Abreve, 0x1EB6, Key_abreve, 0x1EB7, Key_Multi_key, Key_plus, Key_O, 0x1EE2, Key_Multi_key, Key_plus, Key_U, 0x1EF0, Key_Multi_key, Key_plus, Key_o, 0x1EE3, Key_Multi_key, Key_plus, Key_u, 0x1EF1, Key_space, 0x0309, Key_B, 0x0181, Key_C, 0x0187, Key_D, 0x018A, Key_F, 0x0191, Key_G, 0x0193, Key_K, 0x0198, Key_M, 0x2C6E, Key_N, 0x019D, Key_P, 0x01A4, Key_T, 0x01AC, Key_V, 0x01B2, Key_W, 0x2C72, Key_Z, 0x0224, Key_b, 0x0253, Key_c, 0x0188, Key_d, 0x0257, Key_f, 0x0192, Key_g, 0x0260, Key_h, 0x0266, Key_k, 0x0199, Key_m, 0x0271, Key_n, 0x0272, Key_p, 0x01A5, Key_q, 0x02A0, Key_s, 0x0282, Key_t, 0x01AD, Key_v, 0x028B, Key_w, 0x2C73, Key_z, 0x0225, Key_nobreakspace, 0x0309, Key_Abreve, 0x1EB2, Key_abreve, 0x1EB3, 0x0256, 0x1D91, Key_schwa, 0x025A, 0x025C, 0x025D, 0x025F, 0x0284, 0x0279, 0x027B, Key_dead_hook, 0x0309, Key_Multi_key, Key_plus, Key_O, 0x1EDE, Key_Multi_key, Key_plus, Key_U, 0x1EEC, Key_Multi_key, Key_plus, Key_o, 0x1EDF, Key_Multi_key, Key_plus, Key_u, 0x1EED, Key_Multi_key, Key_U, Key_A, 0x1EB2, Key_Multi_key, Key_U, Key_a, 0x1EB3, Key_Multi_key, Key_asciicircum, Key_A, 0x1EA8, Key_Multi_key, Key_asciicircum, Key_E, 0x1EC2, Key_Multi_key, Key_asciicircum, Key_O, 0x1ED4, Key_Multi_key, Key_asciicircum, Key_a, 0x1EA9, Key_Multi_key, Key_asciicircum, Key_e, 0x1EC3, Key_Multi_key, Key_asciicircum, Key_o, 0x1ED5, Key_Multi_key, Key_b, Key_A, 0x1EB2, Key_Multi_key, Key_b, Key_a, 0x1EB3, Key_Greek_ALPHA, 0x1F08, Key_Greek_EPSILON, 0x1F18, Key_Greek_ETA, 0x1F28, Key_Greek_IOTA, 0x1F38, Key_Greek_OMICRON, 0x1F48, Key_Greek_OMEGA, 0x1F68, Key_Greek_alpha, 0x1F00, Key_Greek_epsilon, 0x1F10, Key_Greek_eta, 0x1F20, Key_Greek_iota, 0x1F30, Key_Greek_omicron, 0x1F40, Key_Greek_rho, 0x1FE4, Key_Greek_upsilon, 0x1F50, Key_Greek_omega, 0x1F60, Key_Greek_ALPHA, 0x1F09, Key_Greek_EPSILON, 0x1F19, Key_Greek_ETA, 0x1F29, Key_Greek_IOTA, 0x1F39, Key_Greek_OMICRON, 0x1F49, Key_Greek_RHO, 0x1FEC, Key_Greek_UPSILON, 0x1F59, Key_Greek_OMEGA, 0x1F69, Key_Greek_alpha, 0x1F01, Key_Greek_epsilon, 0x1F11, Key_Greek_eta, 0x1F21, Key_Greek_iota, 0x1F31, Key_Greek_omicron, 0x1F41, Key_Greek_rho, 0x1FE5, Key_Greek_upsilon, 0x1F51, Key_Greek_omega, 0x1F61, Key_space, Key_space, 0x00A0, Key_space, Key_apostrophe, 0x0027, Key_space, Key_parenleft, 0x02D8, Key_space, Key_comma, 0x00B8, Key_space, Key_minus, 0x007E, Key_space, Key_period, 0x2008, Key_space, Key_less, 0x02C7, Key_space, Key_greater, 0x005E, Key_space, Key_asciicircum, 0x005E, Key_space, Key_grave, 0x0060, Key_space, Key_asciitilde, 0x007E, Key_exclam, Key_exclam, 0x00A1, Key_exclam, Key_question, 0x203D, Key_exclam, Key_A, 0x1EA0, Key_exclam, Key_B, 0x1E04, Key_exclam, Key_D, 0x1E0C, Key_exclam, Key_E, 0x1EB8, Key_exclam, Key_H, 0x1E24, Key_exclam, Key_I, 0x1ECA, Key_exclam, Key_K, 0x1E32, Key_exclam, Key_L, 0x1E36, Key_exclam, Key_M, 0x1E42, Key_exclam, Key_N, 0x1E46, Key_exclam, Key_O, 0x1ECC, Key_exclam, Key_P, 0x00B6, Key_exclam, Key_R, 0x1E5A, Key_exclam, Key_S, 0x00A7, Key_exclam, Key_T, 0x1E6C, Key_exclam, Key_U, 0x1EE4, Key_exclam, Key_V, 0x1E7E, Key_exclam, Key_W, 0x1E88, Key_exclam, Key_Y, 0x1EF4, Key_exclam, Key_Z, 0x1E92, Key_exclam, Key_asciicircum, 0x00A6, Key_exclam, Key_a, 0x1EA1, Key_exclam, Key_b, 0x1E05, Key_exclam, Key_d, 0x1E0D, Key_exclam, Key_e, 0x1EB9, Key_exclam, Key_h, 0x1E25, Key_exclam, Key_i, 0x1ECB, Key_exclam, Key_k, 0x1E33, Key_exclam, Key_l, 0x1E37, Key_exclam, Key_m, 0x1E43, Key_exclam, Key_n, 0x1E47, Key_exclam, Key_o, 0x1ECD, Key_exclam, Key_p, 0x00B6, Key_exclam, Key_r, 0x1E5B, Key_exclam, Key_s, 0x00A7, Key_exclam, Key_t, 0x1E6D, Key_exclam, Key_u, 0x1EE5, Key_exclam, Key_v, 0x1E7F, Key_exclam, Key_w, 0x1E89, Key_exclam, Key_y, 0x1EF5, Key_exclam, Key_z, 0x1E93, Key_exclam, Key_Ohorn, 0x1EE2, Key_exclam, Key_ohorn, 0x1EE3, Key_exclam, Key_Uhorn, 0x1EF0, Key_exclam, Key_uhorn, 0x1EF1, Key_quotedbl, Key_quotedbl, 0x00A8, Key_quotedbl, Key_apostrophe, 0x0344, Key_quotedbl, Key_comma, 0x201E, Key_quotedbl, Key_slash, 0x301E, Key_quotedbl, Key_less, 0x201C, Key_quotedbl, Key_greater, 0x201D, Key_quotedbl, Key_A, 0x00C4, Key_quotedbl, Key_E, 0x00CB, Key_quotedbl, Key_H, 0x1E26, Key_quotedbl, Key_I, 0x00CF, Key_quotedbl, Key_O, 0x00D6, Key_quotedbl, Key_U, 0x00DC, Key_quotedbl, Key_W, 0x1E84, Key_quotedbl, Key_X, 0x1E8C, Key_quotedbl, Key_Y, 0x0178, Key_quotedbl, Key_backslash, 0x301D, Key_quotedbl, Key_a, 0x00E4, Key_quotedbl, Key_e, 0x00EB, Key_quotedbl, Key_h, 0x1E27, Key_quotedbl, Key_i, 0x00EF, Key_quotedbl, Key_o, 0x00F6, Key_quotedbl, Key_t, 0x1E97, Key_quotedbl, Key_u, 0x00FC, Key_quotedbl, Key_w, 0x1E85, Key_quotedbl, Key_x, 0x1E8D, Key_quotedbl, Key_y, 0x00FF, Key_quotedbl, Key_acute, 0x0344, Key_quotedbl, Key_Otilde, 0x1E4E, Key_quotedbl, Key_otilde, 0x1E4F, Key_quotedbl, 0x03D2, 0x03D4, Key_quotedbl, Key_Umacron, 0x1E7A, Key_quotedbl, Key_umacron, 0x1E7B, Key_quotedbl, 0x04D8, 0x04DA, Key_quotedbl, 0x04D9, 0x04DB, Key_quotedbl, 0x04E8, 0x04EA, Key_quotedbl, 0x04E9, 0x04EB, Key_quotedbl, Key_Ukrainian_i, 0x0457, Key_quotedbl, Key_Ukrainian_I, 0x0407, Key_quotedbl, Key_Cyrillic_a, 0x04D3, Key_quotedbl, Key_Cyrillic_ie, 0x0451, Key_quotedbl, Key_Cyrillic_i, 0x04E5, Key_quotedbl, Key_Cyrillic_o, 0x04E7, Key_quotedbl, Key_Cyrillic_u, 0x04F1, Key_quotedbl, Key_Cyrillic_zhe, 0x04DD, Key_quotedbl, Key_Cyrillic_yeru, 0x04F9, Key_quotedbl, Key_Cyrillic_ze, 0x04DF, Key_quotedbl, Key_Cyrillic_e, 0x04ED, Key_quotedbl, Key_Cyrillic_che, 0x04F5, Key_quotedbl, Key_Cyrillic_A, 0x04D2, Key_quotedbl, Key_Cyrillic_IE, 0x0401, Key_quotedbl, Key_Cyrillic_I, 0x04E4, Key_quotedbl, Key_Cyrillic_O, 0x04E6, Key_quotedbl, Key_Cyrillic_U, 0x04F0, Key_quotedbl, Key_Cyrillic_ZHE, 0x04DC, Key_quotedbl, Key_Cyrillic_YERU, 0x04F8, Key_quotedbl, Key_Cyrillic_ZE, 0x04DE, Key_quotedbl, Key_Cyrillic_E, 0x04EC, Key_quotedbl, Key_Cyrillic_CHE, 0x04F4, Key_quotedbl, Key_Greek_IOTA, 0x03AA, Key_quotedbl, Key_Greek_UPSILON, 0x03AB, Key_quotedbl, Key_Greek_iota, 0x03CA, Key_quotedbl, Key_Greek_upsilon, 0x03CB, Key_quotedbl, Key_dead_acute, 0x0344, Key_numbersign, Key_numbersign, 0x266F, Key_numbersign, Key_b, 0x266D, Key_numbersign, Key_f, 0x266E, Key_percent, Key_o, 0x2030, Key_apostrophe, Key_space, 0x0027, Key_apostrophe, Key_apostrophe, 0x00B4, Key_apostrophe, Key_comma, 0x201A, Key_apostrophe, Key_less, 0x2018, Key_apostrophe, Key_greater, 0x2019, Key_apostrophe, Key_A, 0x00C1, Key_apostrophe, Key_C, 0x0106, Key_apostrophe, Key_E, 0x00C9, Key_apostrophe, Key_G, 0x01F4, Key_apostrophe, Key_I, 0x00CD, Key_apostrophe, Key_K, 0x1E30, Key_apostrophe, Key_L, 0x0139, Key_apostrophe, Key_M, 0x1E3E, Key_apostrophe, Key_N, 0x0143, Key_apostrophe, Key_O, 0x00D3, Key_apostrophe, Key_P, 0x1E54, Key_apostrophe, Key_R, 0x0154, Key_apostrophe, Key_S, 0x015A, Key_apostrophe, Key_U, 0x00DA, Key_apostrophe, Key_W, 0x1E82, Key_apostrophe, Key_Y, 0x00DD, Key_apostrophe, Key_Z, 0x0179, Key_apostrophe, Key_a, 0x00E1, Key_apostrophe, Key_c, 0x0107, Key_apostrophe, Key_e, 0x00E9, Key_apostrophe, Key_g, 0x01F5, Key_apostrophe, Key_i, 0x00ED, Key_apostrophe, Key_k, 0x1E31, Key_apostrophe, Key_l, 0x013A, Key_apostrophe, Key_m, 0x1E3F, Key_apostrophe, Key_n, 0x0144, Key_apostrophe, Key_o, 0x00F3, Key_apostrophe, Key_p, 0x1E55, Key_apostrophe, Key_r, 0x0155, Key_apostrophe, Key_s, 0x015B, Key_apostrophe, Key_u, 0x00FA, Key_apostrophe, Key_w, 0x1E83, Key_apostrophe, Key_y, 0x00FD, Key_apostrophe, Key_z, 0x017A, Key_apostrophe, Key_Acircumflex, 0x1EA4, Key_apostrophe, Key_Aring, 0x01FA, Key_apostrophe, Key_AE, 0x01FC, Key_apostrophe, Key_Ccedilla, 0x1E08, Key_apostrophe, Key_Ecircumflex, 0x1EBE, Key_apostrophe, Key_Idiaeresis, 0x1E2E, Key_apostrophe, Key_Ocircumflex, 0x1ED0, Key_apostrophe, Key_Otilde, 0x1E4C, Key_apostrophe, Key_Ooblique, 0x01FE, Key_apostrophe, 0x00DC, 0x01D7, Key_apostrophe, Key_acircumflex, 0x1EA5, Key_apostrophe, Key_aring, 0x01FB, Key_apostrophe, Key_ae, 0x01FD, Key_apostrophe, Key_ccedilla, 0x1E09, Key_apostrophe, Key_ecircumflex, 0x1EBF, Key_apostrophe, Key_idiaeresis, 0x1E2F, Key_apostrophe, Key_ocircumflex, 0x1ED1, Key_apostrophe, Key_otilde, 0x1E4D, Key_apostrophe, Key_oslash, 0x01FF, Key_apostrophe, Key_udiaeresis, 0x01D8, Key_apostrophe, Key_Ohorn, 0x1EDA, Key_apostrophe, Key_ohorn, 0x1EDB, Key_apostrophe, Key_Uhorn, 0x1EE8, Key_apostrophe, Key_uhorn, 0x1EE9, Key_apostrophe, Key_Abreve, 0x1EAE, Key_apostrophe, Key_abreve, 0x1EAF, Key_apostrophe, Key_Emacron, 0x1E16, Key_apostrophe, Key_emacron, 0x1E17, Key_apostrophe, Key_Omacron, 0x1E52, Key_apostrophe, Key_Utilde, 0x1E78, Key_apostrophe, Key_omacron, 0x1E53, Key_apostrophe, Key_utilde, 0x1E79, Key_apostrophe, Key_Cyrillic_ghe, 0x0453, Key_apostrophe, Key_Cyrillic_ka, 0x045C, Key_apostrophe, Key_Cyrillic_GHE, 0x0403, Key_apostrophe, Key_Cyrillic_KA, 0x040C, Key_apostrophe, Key_Greek_iotadieresis, 0x0390, Key_apostrophe, Key_Greek_upsilondieresis, 0x03B0, Key_apostrophe, Key_Greek_ALPHA, 0x0386, Key_apostrophe, Key_Greek_EPSILON, 0x0388, Key_apostrophe, Key_Greek_ETA, 0x0389, Key_apostrophe, Key_Greek_IOTA, 0x038A, Key_apostrophe, Key_Greek_OMICRON, 0x038C, Key_apostrophe, Key_Greek_UPSILON, 0x038E, Key_apostrophe, Key_Greek_OMEGA, 0x038F, Key_apostrophe, Key_Greek_alpha, 0x03AC, Key_apostrophe, Key_Greek_epsilon, 0x03AD, Key_apostrophe, Key_Greek_eta, 0x03AE, Key_apostrophe, Key_Greek_iota, 0x03AF, Key_apostrophe, Key_Greek_omicron, 0x03CC, Key_apostrophe, Key_Greek_upsilon, 0x03CD, Key_apostrophe, Key_Greek_omega, 0x03CE, Key_apostrophe, 0x1F00, 0x1F04, Key_apostrophe, 0x1F01, 0x1F05, Key_apostrophe, 0x1F08, 0x1F0C, Key_apostrophe, 0x1F09, 0x1F0D, Key_apostrophe, 0x1F10, 0x1F14, Key_apostrophe, 0x1F11, 0x1F15, Key_apostrophe, 0x1F18, 0x1F1C, Key_apostrophe, 0x1F19, 0x1F1D, Key_apostrophe, 0x1F20, 0x1F24, Key_apostrophe, 0x1F21, 0x1F25, Key_apostrophe, 0x1F28, 0x1F2C, Key_apostrophe, 0x1F29, 0x1F2D, Key_apostrophe, 0x1F30, 0x1F34, Key_apostrophe, 0x1F31, 0x1F35, Key_apostrophe, 0x1F38, 0x1F3C, Key_apostrophe, 0x1F39, 0x1F3D, Key_apostrophe, 0x1F40, 0x1F44, Key_apostrophe, 0x1F41, 0x1F45, Key_apostrophe, 0x1F48, 0x1F4C, Key_apostrophe, 0x1F49, 0x1F4D, Key_apostrophe, 0x1F50, 0x1F54, Key_apostrophe, 0x1F51, 0x1F55, Key_apostrophe, 0x1F59, 0x1F5D, Key_apostrophe, 0x1F60, 0x1F64, Key_apostrophe, 0x1F61, 0x1F65, Key_apostrophe, 0x1F68, 0x1F6C, Key_apostrophe, 0x1F69, 0x1F6D, Key_parenleft, Key_space, 0x02D8, Key_parenleft, Key_parenleft, 0x005B, Key_parenleft, Key_minus, 0x007B, Key_parenleft, Key_A, 0x0102, Key_parenleft, Key_G, 0x011E, Key_parenleft, Key_a, 0x0103, Key_parenleft, Key_c, 0x00A9, Key_parenleft, Key_g, 0x011F, Key_parenleft, Key_r, 0x00AE, Key_parenleft, Key_Greek_ALPHA, 0x1F09, Key_parenleft, Key_Greek_EPSILON, 0x1F19, Key_parenleft, Key_Greek_ETA, 0x1F29, Key_parenleft, Key_Greek_IOTA, 0x1F39, Key_parenleft, Key_Greek_OMICRON, 0x1F49, Key_parenleft, Key_Greek_RHO, 0x1FEC, Key_parenleft, Key_Greek_UPSILON, 0x1F59, Key_parenleft, Key_Greek_OMEGA, 0x1F69, Key_parenleft, Key_Greek_alpha, 0x1F01, Key_parenleft, Key_Greek_epsilon, 0x1F11, Key_parenleft, Key_Greek_eta, 0x1F21, Key_parenleft, Key_Greek_iota, 0x1F31, Key_parenleft, Key_Greek_omicron, 0x1F41, Key_parenleft, Key_Greek_rho, 0x1FE5, Key_parenleft, Key_Greek_upsilon, 0x1F51, Key_parenleft, Key_Greek_omega, 0x1F61, Key_parenright, Key_parenright, 0x005D, Key_parenright, Key_minus, 0x007D, Key_parenright, Key_Greek_ALPHA, 0x1F08, Key_parenright, Key_Greek_EPSILON, 0x1F18, Key_parenright, Key_Greek_ETA, 0x1F28, Key_parenright, Key_Greek_IOTA, 0x1F38, Key_parenright, Key_Greek_OMICRON, 0x1F48, Key_parenright, Key_Greek_OMEGA, 0x1F68, Key_parenright, Key_Greek_alpha, 0x1F00, Key_parenright, Key_Greek_epsilon, 0x1F10, Key_parenright, Key_Greek_eta, 0x1F20, Key_parenright, Key_Greek_iota, 0x1F30, Key_parenright, Key_Greek_omicron, 0x1F40, Key_parenright, Key_Greek_rho, 0x1FE4, Key_parenright, Key_Greek_upsilon, 0x1F50, Key_parenright, Key_Greek_omega, 0x1F60, Key_asterisk, Key_0, 0x00B0, Key_asterisk, Key_A, 0x00C5, Key_asterisk, Key_U, 0x016E, Key_asterisk, Key_a, 0x00E5, Key_asterisk, Key_u, 0x016F, Key_plus, Key_plus, 0x0023, Key_plus, Key_minus, 0x00B1, Key_plus, Key_O, 0x01A0, Key_plus, Key_U, 0x01AF, Key_plus, Key_o, 0x01A1, Key_plus, Key_u, 0x01B0, Key_comma, Key_space, 0x00B8, Key_comma, Key_quotedbl, 0x201E, Key_comma, Key_apostrophe, 0x201A, Key_comma, Key_comma, 0x00B8, Key_comma, Key_minus, 0x00AC, Key_comma, Key_A, 0x0104, Key_comma, Key_C, 0x00C7, Key_comma, Key_D, 0x1E10, Key_comma, Key_E, 0x0118, Key_comma, Key_G, 0x0122, Key_comma, Key_H, 0x1E28, Key_comma, Key_I, 0x012E, Key_comma, Key_K, 0x0136, Key_comma, Key_L, 0x013B, Key_comma, Key_N, 0x0145, Key_comma, Key_R, 0x0156, Key_comma, Key_S, 0x015E, Key_comma, Key_T, 0x0162, Key_comma, Key_U, 0x0172, Key_comma, Key_a, 0x0105, Key_comma, Key_c, 0x00E7, Key_comma, Key_d, 0x1E11, Key_comma, Key_e, 0x0119, Key_comma, Key_g, 0x0123, Key_comma, Key_h, 0x1E29, Key_comma, Key_i, 0x012F, Key_comma, Key_k, 0x0137, Key_comma, Key_l, 0x013C, Key_comma, Key_n, 0x0146, Key_comma, Key_r, 0x0157, Key_comma, Key_s, 0x015F, Key_comma, Key_t, 0x0163, Key_comma, Key_u, 0x0173, Key_minus, Key_space, 0x007E, Key_minus, Key_parenleft, 0x007B, Key_minus, Key_parenright, 0x007D, Key_minus, Key_plus, 0x00B1, Key_minus, Key_comma, 0x00AC, Key_minus, Key_colon, 0x00F7, Key_minus, Key_A, 0x00C3, Key_minus, Key_D, 0x0110, Key_minus, Key_E, 0x0112, Key_minus, Key_I, 0x012A, Key_minus, Key_L, 0x00A3, Key_minus, Key_N, 0x00D1, Key_minus, Key_O, 0x00D5, Key_minus, Key_U, 0x016A, Key_minus, Key_Y, 0x00A5, Key_minus, Key_asciicircum, 0x00AF, Key_minus, Key_a, 0x00E3, Key_minus, Key_d, 0x0111, Key_minus, Key_e, 0x0113, Key_minus, Key_i, 0x012B, Key_minus, Key_l, 0x00A3, Key_minus, Key_n, 0x00F1, Key_minus, Key_o, 0x00F5, Key_minus, Key_u, 0x016B, Key_minus, Key_y, 0x00A5, Key_period, Key_minus, 0x00B7, Key_period, Key_period, 0x02D9, Key_period, Key_less, 0x2039, Key_period, Key_equal, 0x2022, Key_period, Key_greater, 0x203A, Key_period, Key_A, 0x0226, Key_period, Key_B, 0x1E02, Key_period, Key_C, 0x010A, Key_period, Key_D, 0x1E0A, Key_period, Key_E, 0x0116, Key_period, Key_F, 0x1E1E, Key_period, Key_G, 0x0120, Key_period, Key_H, 0x1E22, Key_period, Key_I, 0x0130, Key_period, Key_M, 0x1E40, Key_period, Key_N, 0x1E44, Key_period, Key_O, 0x022E, Key_period, Key_P, 0x1E56, Key_period, Key_R, 0x1E58, Key_period, Key_S, 0x1E60, Key_period, Key_T, 0x1E6A, Key_period, Key_W, 0x1E86, Key_period, Key_X, 0x1E8A, Key_period, Key_Y, 0x1E8E, Key_period, Key_Z, 0x017B, Key_period, Key_asciicircum, 0x00B7, Key_period, Key_a, 0x0227, Key_period, Key_b, 0x1E03, Key_period, Key_c, 0x010B, Key_period, Key_d, 0x1E0B, Key_period, Key_e, 0x0117, Key_period, Key_f, 0x1E1F, Key_period, Key_g, 0x0121, Key_period, Key_h, 0x1E23, Key_period, Key_i, 0x0131, Key_period, Key_m, 0x1E41, Key_period, Key_n, 0x1E45, Key_period, Key_o, 0x022F, Key_period, Key_p, 0x1E57, Key_period, Key_r, 0x1E59, Key_period, Key_s, 0x1E61, Key_period, Key_t, 0x1E6B, Key_period, Key_w, 0x1E87, Key_period, Key_x, 0x1E8B, Key_period, Key_y, 0x1E8F, Key_period, Key_z, 0x017C, Key_period, 0x017F, 0x1E9B, Key_period, Key_Sacute, 0x1E64, Key_period, Key_Scaron, 0x1E66, Key_period, Key_sacute, 0x1E65, Key_period, Key_scaron, 0x1E67, Key_period, 0x1E62, 0x1E68, Key_period, 0x1E63, 0x1E69, Key_slash, Key_slash, 0x005C, Key_slash, Key_less, 0x005C, Key_slash, Key_C, 0x00A2, Key_slash, Key_D, 0x0110, Key_slash, Key_G, 0x01E4, Key_slash, Key_H, 0x0126, Key_slash, Key_I, 0x0197, Key_slash, Key_L, 0x0141, Key_slash, Key_O, 0x00D8, Key_slash, Key_T, 0x0166, Key_slash, Key_U, 0x00B5, Key_slash, Key_Z, 0x01B5, Key_slash, Key_asciicircum, 0x007C, Key_slash, Key_b, 0x0180, Key_slash, Key_c, 0x00A2, Key_slash, Key_d, 0x0111, Key_slash, Key_g, 0x01E5, Key_slash, Key_h, 0x0127, Key_slash, Key_i, 0x0268, Key_slash, Key_l, 0x0142, Key_slash, Key_m, 0x20A5, Key_slash, Key_o, 0x00F8, Key_slash, Key_t, 0x0167, Key_slash, Key_u, 0x00B5, Key_slash, Key_z, 0x01B6, Key_slash, 0x0294, 0x02A1, Key_slash, 0x04AE, 0x04B0, Key_slash, 0x04AF, 0x04B1, Key_slash, Key_Cyrillic_ghe, 0x0493, Key_slash, Key_Cyrillic_ka, 0x049F, Key_slash, Key_Cyrillic_GHE, 0x0492, Key_slash, Key_Cyrillic_KA, 0x049E, Key_slash, Key_leftarrow, 0x219A, Key_slash, Key_rightarrow, 0x219B, Key_slash, 0x2194, 0x21AE, Key_0, Key_asterisk, 0x00B0, Key_0, Key_C, 0x00A9, Key_0, Key_S, 0x00A7, Key_0, Key_X, 0x00A4, Key_0, Key_asciicircum, 0x00B0, Key_0, Key_c, 0x00A9, Key_0, Key_s, 0x00A7, Key_0, Key_x, 0x00A4, Key_1, Key_2, 0x00BD, Key_1, Key_3, 0x2153, Key_1, Key_4, 0x00BC, Key_1, Key_5, 0x2155, Key_1, Key_6, 0x2159, Key_1, Key_8, 0x215B, Key_1, Key_S, 0x00B9, Key_1, Key_asciicircum, 0x00B9, Key_1, Key_s, 0x00B9, Key_2, Key_3, 0x2154, Key_2, Key_5, 0x2156, Key_2, Key_S, 0x00B2, Key_2, Key_asciicircum, 0x00B2, Key_2, Key_s, 0x00B2, Key_3, Key_4, 0x00BE, Key_3, Key_5, 0x2157, Key_3, Key_8, 0x215C, Key_3, Key_S, 0x00B3, Key_3, Key_asciicircum, 0x00B3, Key_3, Key_s, 0x00B3, Key_4, Key_5, 0x2158, Key_5, Key_6, 0x215A, Key_5, Key_8, 0x215D, Key_7, Key_8, 0x215E, Key_colon, Key_minus, 0x00F7, Key_semicolon, Key_A, 0x0104, Key_semicolon, Key_E, 0x0118, Key_semicolon, Key_I, 0x012E, Key_semicolon, Key_O, 0x01EA, Key_semicolon, Key_U, 0x0172, Key_semicolon, Key_a, 0x0105, Key_semicolon, Key_e, 0x0119, Key_semicolon, Key_i, 0x012F, Key_semicolon, Key_o, 0x01EB, Key_semicolon, Key_u, 0x0173, Key_less, Key_space, 0x02C7, Key_less, Key_quotedbl, 0x201C, Key_less, Key_apostrophe, 0x2018, Key_less, Key_slash, 0x005C, Key_less, Key_less, 0x00AB, Key_less, Key_C, 0x010C, Key_less, Key_D, 0x010E, Key_less, Key_E, 0x011A, Key_less, Key_L, 0x013D, Key_less, Key_N, 0x0147, Key_less, Key_R, 0x0158, Key_less, Key_S, 0x0160, Key_less, Key_T, 0x0164, Key_less, Key_Z, 0x017D, Key_less, Key_c, 0x010D, Key_less, Key_d, 0x010F, Key_less, Key_e, 0x011B, Key_less, Key_l, 0x013E, Key_less, Key_n, 0x0148, Key_less, Key_r, 0x0159, Key_less, Key_s, 0x0161, Key_less, Key_t, 0x0165, Key_less, Key_z, 0x017E, Key_less, 0x0338, 0x226E, Key_equal, Key_C, 0x20AC, Key_equal, Key_E, 0x20AC, Key_equal, Key_L, 0x00A3, Key_equal, Key_N, 0x20A6, Key_equal, Key_O, 0x0150, Key_equal, Key_U, 0x0170, Key_equal, Key_W, 0x20A9, Key_equal, Key_Y, 0x00A5, Key_equal, Key_c, 0x20AC, Key_equal, Key_e, 0x20AC, Key_equal, Key_l, 0x00A3, Key_equal, Key_o, 0x0151, Key_equal, Key_u, 0x0171, Key_equal, Key_y, 0x00A5, Key_equal, 0x0338, 0x2260, Key_equal, Key_Cyrillic_u, 0x04F3, Key_equal, Key_Cyrillic_IE, 0x20AC, Key_equal, Key_Cyrillic_ES, 0x20AC, Key_equal, Key_Cyrillic_U, 0x04F2, Key_greater, Key_space, 0x005E, Key_greater, Key_quotedbl, 0x201D, Key_greater, Key_apostrophe, 0x2019, Key_greater, Key_greater, 0x00BB, Key_greater, Key_A, 0x00C2, Key_greater, Key_E, 0x00CA, Key_greater, Key_I, 0x00CE, Key_greater, Key_O, 0x00D4, Key_greater, Key_U, 0x00DB, Key_greater, Key_a, 0x00E2, Key_greater, Key_e, 0x00EA, Key_greater, Key_i, 0x00EE, Key_greater, Key_o, 0x00F4, Key_greater, Key_u, 0x00FB, Key_greater, 0x0338, 0x226F, Key_question, Key_exclam, 0x203D, Key_question, Key_question, 0x00BF, Key_question, Key_A, 0x1EA2, Key_question, Key_E, 0x1EBA, Key_question, Key_I, 0x1EC8, Key_question, Key_O, 0x1ECE, Key_question, Key_U, 0x1EE6, Key_question, Key_Y, 0x1EF6, Key_question, Key_a, 0x1EA3, Key_question, Key_e, 0x1EBB, Key_question, Key_i, 0x1EC9, Key_question, Key_o, 0x1ECF, Key_question, Key_u, 0x1EE7, Key_question, Key_y, 0x1EF7, Key_question, Key_Acircumflex, 0x1EA8, Key_question, Key_Ecircumflex, 0x1EC2, Key_question, Key_Ocircumflex, 0x1ED4, Key_question, Key_acircumflex, 0x1EA9, Key_question, Key_ecircumflex, 0x1EC3, Key_question, Key_ocircumflex, 0x1ED5, Key_question, Key_Ohorn, 0x1EDE, Key_question, Key_ohorn, 0x1EDF, Key_question, Key_Uhorn, 0x1EEC, Key_question, Key_uhorn, 0x1EED, Key_question, Key_Abreve, 0x1EB2, Key_question, Key_abreve, 0x1EB3, Key_A, Key_quotedbl, 0x00C4, Key_A, Key_apostrophe, 0x00C1, Key_A, Key_parenleft, 0x0102, Key_A, Key_asterisk, 0x00C5, Key_A, Key_comma, 0x0104, Key_A, Key_minus, 0x00C3, Key_A, Key_greater, 0x00C2, Key_A, Key_A, 0x00C5, Key_A, Key_E, 0x00C6, Key_A, Key_T, 0x0040, Key_A, Key_asciicircum, 0x00C2, Key_A, Key_underscore, 0x00AA, Key_A, Key_grave, 0x00C0, Key_A, Key_asciitilde, 0x00C3, Key_A, Key_diaeresis, 0x00C4, Key_A, Key_acute, 0x00C1, Key_B, Key_period, 0x1E02, Key_C, Key_apostrophe, 0x0106, Key_C, Key_comma, 0x00C7, Key_C, Key_period, 0x010A, Key_C, Key_slash, 0x00A2, Key_C, Key_0, 0x00A9, Key_C, Key_less, 0x010C, Key_C, Key_equal, 0x20AC, Key_C, Key_E, 0x20A0, Key_C, Key_O, 0x00A9, Key_C, Key_o, 0x00A9, Key_C, Key_r, 0x20A2, Key_C, Key_bar, 0x00A2, Key_D, Key_minus, 0x0110, Key_D, Key_period, 0x1E0A, Key_D, Key_less, 0x010E, Key_D, Key_H, 0x00D0, Key_E, Key_quotedbl, 0x00CB, Key_E, Key_apostrophe, 0x00C9, Key_E, Key_comma, 0x0118, Key_E, Key_minus, 0x0112, Key_E, Key_period, 0x0116, Key_E, Key_less, 0x011A, Key_E, Key_equal, 0x20AC, Key_E, Key_greater, 0x00CA, Key_E, Key_asciicircum, 0x00CA, Key_E, Key_underscore, 0x0112, Key_E, Key_grave, 0x00C8, Key_E, Key_diaeresis, 0x00CB, Key_E, Key_acute, 0x00C9, Key_F, Key_period, 0x1E1E, Key_F, Key_r, 0x20A3, Key_G, Key_parenleft, 0x011E, Key_G, Key_comma, 0x0122, Key_G, Key_period, 0x0120, Key_G, Key_U, 0x011E, Key_G, Key_breve, 0x011E, Key_I, Key_quotedbl, 0x00CF, Key_I, Key_apostrophe, 0x00CD, Key_I, Key_comma, 0x012E, Key_I, Key_minus, 0x012A, Key_I, Key_period, 0x0130, Key_I, Key_greater, 0x00CE, Key_I, Key_asciicircum, 0x00CE, Key_I, Key_underscore, 0x012A, Key_I, Key_grave, 0x00CC, Key_I, Key_asciitilde, 0x0128, Key_I, Key_diaeresis, 0x00CF, Key_I, Key_acute, 0x00CD, Key_K, Key_comma, 0x0136, Key_L, Key_apostrophe, 0x0139, Key_L, Key_comma, 0x013B, Key_L, Key_minus, 0x00A3, Key_L, Key_slash, 0x0141, Key_L, Key_less, 0x013D, Key_L, Key_equal, 0x00A3, Key_L, Key_V, 0x007C, Key_M, Key_period, 0x1E40, Key_N, Key_apostrophe, 0x0143, Key_N, Key_comma, 0x0145, Key_N, Key_minus, 0x00D1, Key_N, Key_less, 0x0147, Key_N, Key_equal, 0x20A6, Key_N, Key_G, 0x014A, Key_N, Key_O, 0x2116, Key_N, Key_o, 0x2116, Key_N, Key_asciitilde, 0x00D1, Key_O, Key_quotedbl, 0x00D6, Key_O, Key_apostrophe, 0x00D3, Key_O, Key_minus, 0x00D5, Key_O, Key_slash, 0x00D8, Key_O, Key_greater, 0x00D4, Key_O, Key_C, 0x00A9, Key_O, Key_E, 0x0152, Key_O, Key_R, 0x00AE, Key_O, Key_S, 0x00A7, Key_O, Key_X, 0x00A4, Key_O, Key_asciicircum, 0x00D4, Key_O, Key_underscore, 0x00BA, Key_O, Key_grave, 0x00D2, Key_O, Key_c, 0x00A9, Key_O, Key_r, 0x00AE, Key_O, Key_x, 0x00A4, Key_O, Key_asciitilde, 0x00D5, Key_O, Key_diaeresis, 0x00D6, Key_O, Key_acute, 0x00D3, Key_P, Key_exclam, 0x00B6, Key_P, Key_period, 0x1E56, Key_P, Key_P, 0x00B6, Key_P, Key_t, 0x20A7, Key_R, Key_apostrophe, 0x0154, Key_R, Key_comma, 0x0156, Key_R, Key_less, 0x0158, Key_R, Key_O, 0x00AE, Key_R, Key_s, 0x20A8, Key_S, Key_exclam, 0x00A7, Key_S, Key_apostrophe, 0x015A, Key_S, Key_comma, 0x015E, Key_S, Key_period, 0x1E60, Key_S, Key_0, 0x00A7, Key_S, Key_1, 0x00B9, Key_S, Key_2, 0x00B2, Key_S, Key_3, 0x00B3, Key_S, Key_less, 0x0160, Key_S, Key_M, 0x2120, Key_S, Key_O, 0x00A7, Key_S, Key_m, 0x2120, Key_S, Key_cedilla, 0x015E, Key_T, Key_minus, 0x0166, Key_T, Key_period, 0x1E6A, Key_T, Key_slash, 0x0166, Key_T, Key_less, 0x0164, Key_T, Key_H, 0x00DE, Key_T, Key_M, 0x2122, Key_T, Key_m, 0x2122, Key_U, Key_quotedbl, 0x00DC, Key_U, Key_apostrophe, 0x00DA, Key_U, Key_asterisk, 0x016E, Key_U, Key_comma, 0x0172, Key_U, Key_minus, 0x016A, Key_U, Key_slash, 0x00B5, Key_U, Key_greater, 0x00DB, Key_U, Key_A, 0x0102, Key_U, Key_E, 0x0114, Key_U, Key_G, 0x011E, Key_U, Key_I, 0x012C, Key_U, Key_O, 0x014E, Key_U, Key_U, 0x016C, Key_U, Key_asciicircum, 0x00DB, Key_U, Key_underscore, 0x016A, Key_U, Key_grave, 0x00D9, Key_U, Key_a, 0x0103, Key_U, Key_e, 0x0115, Key_U, Key_g, 0x011F, Key_U, Key_i, 0x012D, Key_U, Key_o, 0x014F, Key_U, Key_u, 0x016D, Key_U, Key_asciitilde, 0x0168, Key_U, Key_diaeresis, 0x00DC, Key_U, Key_acute, 0x00DA, Key_U, 0x0228, 0x1E1C, Key_U, 0x0229, 0x1E1D, Key_U, Key_Cyrillic_a, 0x04D1, Key_U, Key_Cyrillic_ie, 0x04D7, Key_U, Key_Cyrillic_i, 0x0439, Key_U, Key_Cyrillic_u, 0x045E, Key_U, Key_Cyrillic_zhe, 0x04C2, Key_U, Key_Cyrillic_A, 0x04D0, Key_U, Key_Cyrillic_IE, 0x04D6, Key_U, Key_Cyrillic_I, 0x0419, Key_U, Key_Cyrillic_U, 0x040E, Key_U, Key_Cyrillic_ZHE, 0x04C1, Key_U, Key_Greek_ALPHA, 0x1FB8, Key_U, Key_Greek_IOTA, 0x1FD8, Key_U, Key_Greek_UPSILON, 0x1FE8, Key_U, Key_Greek_alpha, 0x1FB0, Key_U, Key_Greek_iota, 0x1FD0, Key_U, Key_Greek_upsilon, 0x1FE0, Key_U, 0x1EA0, 0x1EB6, Key_U, 0x1EA1, 0x1EB7, Key_V, Key_L, 0x007C, Key_W, Key_equal, 0x20A9, Key_W, Key_asciicircum, 0x0174, Key_X, Key_0, 0x00A4, Key_X, Key_O, 0x00A4, Key_X, Key_o, 0x00A4, Key_Y, Key_quotedbl, 0x0178, Key_Y, Key_apostrophe, 0x00DD, Key_Y, Key_minus, 0x00A5, Key_Y, Key_equal, 0x00A5, Key_Y, Key_asciicircum, 0x0176, Key_Y, Key_diaeresis, 0x0178, Key_Y, Key_acute, 0x00DD, Key_Z, Key_apostrophe, 0x0179, Key_Z, Key_period, 0x017B, Key_Z, Key_less, 0x017D, Key_asciicircum, Key_space, 0x005E, Key_asciicircum, Key_parenleft, 0x207D, Key_asciicircum, Key_parenright, 0x207E, Key_asciicircum, Key_plus, 0x207A, Key_asciicircum, Key_minus, 0x00AF, Key_asciicircum, Key_period, 0x00B7, Key_asciicircum, Key_slash, 0x007C, Key_asciicircum, Key_0, 0x00B0, Key_asciicircum, Key_1, 0x00B9, Key_asciicircum, Key_2, 0x00B2, Key_asciicircum, Key_3, 0x00B3, Key_asciicircum, Key_4, 0x2074, Key_asciicircum, Key_5, 0x2075, Key_asciicircum, Key_6, 0x2076, Key_asciicircum, Key_7, 0x2077, Key_asciicircum, Key_8, 0x2078, Key_asciicircum, Key_9, 0x2079, Key_asciicircum, Key_equal, 0x207C, Key_asciicircum, Key_A, 0x00C2, Key_asciicircum, Key_C, 0x0108, Key_asciicircum, Key_E, 0x00CA, Key_asciicircum, Key_G, 0x011C, Key_asciicircum, Key_H, 0x0124, Key_asciicircum, Key_I, 0x00CE, Key_asciicircum, Key_J, 0x0134, Key_asciicircum, Key_O, 0x00D4, Key_asciicircum, Key_S, 0x015C, Key_asciicircum, Key_U, 0x00DB, Key_asciicircum, Key_W, 0x0174, Key_asciicircum, Key_Y, 0x0176, Key_asciicircum, Key_Z, 0x1E90, Key_asciicircum, Key_underscore, 0x00AF, Key_asciicircum, Key_a, 0x00E2, Key_asciicircum, Key_c, 0x0109, Key_asciicircum, Key_e, 0x00EA, Key_asciicircum, Key_g, 0x011D, Key_asciicircum, Key_h, 0x0125, Key_asciicircum, Key_i, 0x00EE, Key_asciicircum, Key_j, 0x0135, Key_asciicircum, Key_o, 0x00F4, Key_asciicircum, Key_s, 0x015D, Key_asciicircum, Key_u, 0x00FB, Key_asciicircum, Key_w, 0x0175, Key_asciicircum, Key_y, 0x0177, Key_asciicircum, Key_z, 0x1E91, Key_asciicircum, 0x1EA0, 0x1EAC, Key_asciicircum, 0x1EA1, 0x1EAD, Key_asciicircum, 0x1EB8, 0x1EC6, Key_asciicircum, 0x1EB9, 0x1EC7, Key_asciicircum, 0x1ECC, 0x1ED8, Key_asciicircum, 0x1ECD, 0x1ED9, Key_asciicircum, 0x2212, 0x207B, Key_asciicircum, 0x4E00, 0x3192, Key_asciicircum, 0x4E01, 0x319C, Key_asciicircum, 0x4E09, 0x3194, Key_asciicircum, 0x4E0A, 0x3196, Key_asciicircum, 0x4E0B, 0x3198, Key_asciicircum, 0x4E19, 0x319B, Key_asciicircum, 0x4E2D, 0x3197, Key_asciicircum, 0x4E59, 0x319A, Key_asciicircum, 0x4E8C, 0x3193, Key_asciicircum, 0x4EBA, 0x319F, Key_asciicircum, 0x56DB, 0x3195, Key_asciicircum, 0x5730, 0x319E, Key_asciicircum, 0x5929, 0x319D, Key_asciicircum, 0x7532, 0x3199, Key_asciicircum, Key_KP_Space, 0x00B2, Key_asciicircum, Key_KP_Add, 0x207A, Key_asciicircum, Key_KP_0, 0x2070, Key_asciicircum, Key_KP_1, 0x00B9, Key_asciicircum, Key_KP_2, 0x00B2, Key_asciicircum, Key_KP_3, 0x00B3, Key_asciicircum, Key_KP_4, 0x2074, Key_asciicircum, Key_KP_5, 0x2075, Key_asciicircum, Key_KP_6, 0x2076, Key_asciicircum, Key_KP_7, 0x2077, Key_asciicircum, Key_KP_8, 0x2078, Key_asciicircum, Key_KP_9, 0x2079, Key_asciicircum, Key_KP_Equal, 0x207C, Key_underscore, Key_parenleft, 0x208D, Key_underscore, Key_parenright, 0x208E, Key_underscore, Key_plus, 0x208A, Key_underscore, Key_0, 0x2080, Key_underscore, Key_1, 0x2081, Key_underscore, Key_2, 0x2082, Key_underscore, Key_3, 0x2083, Key_underscore, Key_4, 0x2084, Key_underscore, Key_5, 0x2085, Key_underscore, Key_6, 0x2086, Key_underscore, Key_7, 0x2087, Key_underscore, Key_8, 0x2088, Key_underscore, Key_9, 0x2089, Key_underscore, Key_equal, 0x208C, Key_underscore, Key_A, 0x00AA, Key_underscore, Key_E, 0x0112, Key_underscore, Key_G, 0x1E20, Key_underscore, Key_I, 0x012A, Key_underscore, Key_O, 0x00BA, Key_underscore, Key_U, 0x016A, Key_underscore, Key_Y, 0x0232, Key_underscore, Key_asciicircum, 0x00AF, Key_underscore, Key_underscore, 0x00AF, Key_underscore, Key_a, 0x00AA, Key_underscore, Key_e, 0x0113, Key_underscore, Key_g, 0x1E21, Key_underscore, Key_i, 0x012B, Key_underscore, Key_o, 0x00BA, Key_underscore, Key_u, 0x016B, Key_underscore, Key_y, 0x0233, Key_underscore, Key_Adiaeresis, 0x01DE, Key_underscore, Key_AE, 0x01E2, Key_underscore, Key_Otilde, 0x022C, Key_underscore, Key_Odiaeresis, 0x022A, Key_underscore, 0x00DC, 0x01D5, Key_underscore, Key_adiaeresis, 0x01DF, Key_underscore, Key_ae, 0x01E3, Key_underscore, Key_otilde, 0x022D, Key_underscore, Key_odiaeresis, 0x022B, Key_underscore, Key_udiaeresis, 0x01D6, Key_underscore, 0x01EA, 0x01EC, Key_underscore, 0x01EB, 0x01ED, Key_underscore, 0x0226, 0x01E0, Key_underscore, 0x0227, 0x01E1, Key_underscore, 0x022E, 0x0230, Key_underscore, 0x022F, 0x0231, Key_underscore, Key_Cyrillic_i, 0x04E3, Key_underscore, Key_Cyrillic_u, 0x04EF, Key_underscore, Key_Cyrillic_I, 0x04E2, Key_underscore, Key_Cyrillic_U, 0x04EE, Key_underscore, Key_Greek_ALPHA, 0x1FB9, Key_underscore, Key_Greek_IOTA, 0x1FD9, Key_underscore, Key_Greek_UPSILON, 0x1FE9, Key_underscore, Key_Greek_alpha, 0x1FB1, Key_underscore, Key_Greek_iota, 0x1FD1, Key_underscore, Key_Greek_upsilon, 0x1FE1, Key_underscore, 0x1E36, 0x1E38, Key_underscore, 0x1E37, 0x1E39, Key_underscore, 0x1E5A, 0x1E5C, Key_underscore, 0x1E5B, 0x1E5D, Key_underscore, 0x2212, 0x208B, Key_underscore, Key_KP_Space, 0x2082, Key_underscore, Key_KP_Add, 0x208A, Key_underscore, Key_KP_0, 0x2080, Key_underscore, Key_KP_1, 0x2081, Key_underscore, Key_KP_2, 0x2082, Key_underscore, Key_KP_3, 0x2083, Key_underscore, Key_KP_4, 0x2084, Key_underscore, Key_KP_5, 0x2085, Key_underscore, Key_KP_6, 0x2086, Key_underscore, Key_KP_7, 0x2087, Key_underscore, Key_KP_8, 0x2088, Key_underscore, Key_KP_9, 0x2089, Key_underscore, Key_KP_Equal, 0x208C, Key_grave, Key_space, 0x0060, Key_grave, Key_A, 0x00C0, Key_grave, Key_E, 0x00C8, Key_grave, Key_I, 0x00CC, Key_grave, Key_N, 0x01F8, Key_grave, Key_O, 0x00D2, Key_grave, Key_U, 0x00D9, Key_grave, Key_W, 0x1E80, Key_grave, Key_Y, 0x1EF2, Key_grave, Key_a, 0x00E0, Key_grave, Key_e, 0x00E8, Key_grave, Key_i, 0x00EC, Key_grave, Key_n, 0x01F9, Key_grave, Key_o, 0x00F2, Key_grave, Key_u, 0x00F9, Key_grave, Key_w, 0x1E81, Key_grave, Key_y, 0x1EF3, Key_grave, Key_Acircumflex, 0x1EA6, Key_grave, Key_Ecircumflex, 0x1EC0, Key_grave, Key_Ocircumflex, 0x1ED2, Key_grave, 0x00DC, 0x01DB, Key_grave, Key_acircumflex, 0x1EA7, Key_grave, Key_ecircumflex, 0x1EC1, Key_grave, Key_ocircumflex, 0x1ED3, Key_grave, Key_udiaeresis, 0x01DC, Key_grave, Key_Ohorn, 0x1EDC, Key_grave, Key_ohorn, 0x1EDD, Key_grave, Key_Uhorn, 0x1EEA, Key_grave, Key_uhorn, 0x1EEB, Key_grave, Key_Abreve, 0x1EB0, Key_grave, Key_abreve, 0x1EB1, Key_grave, Key_Emacron, 0x1E14, Key_grave, Key_emacron, 0x1E15, Key_grave, Key_Omacron, 0x1E50, Key_grave, Key_omacron, 0x1E51, Key_grave, Key_Cyrillic_ie, 0x0450, Key_grave, Key_Cyrillic_i, 0x045D, Key_grave, Key_Cyrillic_IE, 0x0400, Key_grave, Key_Cyrillic_I, 0x040D, Key_grave, Key_Greek_iotadieresis, 0x1FD2, Key_grave, Key_Greek_upsilondieresis, 0x1FE2, Key_grave, Key_Greek_ALPHA, 0x1FBA, Key_grave, Key_Greek_EPSILON, 0x1FC8, Key_grave, Key_Greek_ETA, 0x1FCA, Key_grave, Key_Greek_IOTA, 0x1FDA, Key_grave, Key_Greek_OMICRON, 0x1FF8, Key_grave, Key_Greek_UPSILON, 0x1FEA, Key_grave, Key_Greek_OMEGA, 0x1FFA, Key_grave, Key_Greek_alpha, 0x1F70, Key_grave, Key_Greek_epsilon, 0x1F72, Key_grave, Key_Greek_eta, 0x1F74, Key_grave, Key_Greek_iota, 0x1F76, Key_grave, Key_Greek_omicron, 0x1F78, Key_grave, Key_Greek_upsilon, 0x1F7A, Key_grave, Key_Greek_omega, 0x1F7C, Key_grave, 0x1F00, 0x1F02, Key_grave, 0x1F01, 0x1F03, Key_grave, 0x1F08, 0x1F0A, Key_grave, 0x1F09, 0x1F0B, Key_grave, 0x1F10, 0x1F12, Key_grave, 0x1F11, 0x1F13, Key_grave, 0x1F18, 0x1F1A, Key_grave, 0x1F19, 0x1F1B, Key_grave, 0x1F20, 0x1F22, Key_grave, 0x1F21, 0x1F23, Key_grave, 0x1F28, 0x1F2A, Key_grave, 0x1F29, 0x1F2B, Key_grave, 0x1F30, 0x1F32, Key_grave, 0x1F31, 0x1F33, Key_grave, 0x1F38, 0x1F3A, Key_grave, 0x1F39, 0x1F3B, Key_grave, 0x1F40, 0x1F42, Key_grave, 0x1F41, 0x1F43, Key_grave, 0x1F48, 0x1F4A, Key_grave, 0x1F49, 0x1F4B, Key_grave, 0x1F50, 0x1F52, Key_grave, 0x1F51, 0x1F53, Key_grave, 0x1F59, 0x1F5B, Key_grave, 0x1F60, 0x1F62, Key_grave, 0x1F61, 0x1F63, Key_grave, 0x1F68, 0x1F6A, Key_grave, 0x1F69, 0x1F6B, Key_a, Key_quotedbl, 0x00E4, Key_a, Key_apostrophe, 0x00E1, Key_a, Key_parenleft, 0x0103, Key_a, Key_asterisk, 0x00E5, Key_a, Key_comma, 0x0105, Key_a, Key_minus, 0x00E3, Key_a, Key_greater, 0x00E2, Key_a, Key_asciicircum, 0x00E2, Key_a, Key_underscore, 0x00AA, Key_a, Key_grave, 0x00E0, Key_a, Key_a, 0x00E5, Key_a, Key_e, 0x00E6, Key_a, Key_asciitilde, 0x00E3, Key_a, Key_diaeresis, 0x00E4, Key_a, Key_acute, 0x00E1, Key_b, Key_period, 0x1E03, Key_b, Key_A, 0x0102, Key_b, Key_E, 0x0114, Key_b, Key_G, 0x011E, Key_b, Key_I, 0x012C, Key_b, Key_O, 0x014E, Key_b, Key_U, 0x016C, Key_b, Key_a, 0x0103, Key_b, Key_e, 0x0115, Key_b, Key_g, 0x011F, Key_b, Key_i, 0x012D, Key_b, Key_o, 0x014F, Key_b, Key_u, 0x016D, Key_b, 0x0228, 0x1E1C, Key_b, 0x0229, 0x1E1D, Key_b, Key_Cyrillic_a, 0x04D1, Key_b, Key_Cyrillic_ie, 0x04D7, Key_b, Key_Cyrillic_i, 0x0439, Key_b, Key_Cyrillic_u, 0x045E, Key_b, Key_Cyrillic_zhe, 0x04C2, Key_b, Key_Cyrillic_A, 0x04D0, Key_b, Key_Cyrillic_IE, 0x04D6, Key_b, Key_Cyrillic_I, 0x0419, Key_b, Key_Cyrillic_U, 0x040E, Key_b, Key_Cyrillic_ZHE, 0x04C1, Key_b, Key_Greek_ALPHA, 0x1FB8, Key_b, Key_Greek_IOTA, 0x1FD8, Key_b, Key_Greek_UPSILON, 0x1FE8, Key_b, Key_Greek_alpha, 0x1FB0, Key_b, Key_Greek_iota, 0x1FD0, Key_b, Key_Greek_upsilon, 0x1FE0, Key_b, 0x1EA0, 0x1EB6, Key_b, 0x1EA1, 0x1EB7, Key_c, Key_apostrophe, 0x0107, Key_c, Key_comma, 0x00E7, Key_c, Key_period, 0x010B, Key_c, Key_slash, 0x00A2, Key_c, Key_0, 0x00A9, Key_c, Key_less, 0x010D, Key_c, Key_equal, 0x20AC, Key_c, Key_A, 0x01CD, Key_c, Key_C, 0x010C, Key_c, Key_D, 0x010E, Key_c, Key_E, 0x011A, Key_c, Key_G, 0x01E6, Key_c, Key_H, 0x021E, Key_c, Key_I, 0x01CF, Key_c, Key_K, 0x01E8, Key_c, Key_L, 0x013D, Key_c, Key_N, 0x0147, Key_c, Key_O, 0x00A9, Key_c, Key_R, 0x0158, Key_c, Key_S, 0x0160, Key_c, Key_T, 0x0164, Key_c, Key_U, 0x01D3, Key_c, Key_Z, 0x017D, Key_c, Key_a, 0x01CE, Key_c, Key_c, 0x010D, Key_c, Key_d, 0x010F, Key_c, Key_e, 0x011B, Key_c, Key_g, 0x01E7, Key_c, Key_h, 0x021F, Key_c, Key_i, 0x01D0, Key_c, Key_j, 0x01F0, Key_c, Key_k, 0x01E9, Key_c, Key_l, 0x013E, Key_c, Key_n, 0x0148, Key_c, Key_o, 0x00A9, Key_c, Key_r, 0x0159, Key_c, Key_s, 0x0161, Key_c, Key_t, 0x0165, Key_c, Key_u, 0x01D4, Key_c, Key_z, 0x017E, Key_c, Key_bar, 0x00A2, Key_c, 0x00DC, 0x01D9, Key_c, Key_udiaeresis, 0x01DA, Key_c, 0x01B7, 0x01EE, Key_c, 0x0292, 0x01EF, Key_d, Key_minus, 0x0111, Key_d, Key_period, 0x1E0B, Key_d, Key_less, 0x010F, Key_d, Key_h, 0x00F0, Key_e, Key_quotedbl, 0x00EB, Key_e, Key_apostrophe, 0x00E9, Key_e, Key_comma, 0x0119, Key_e, Key_minus, 0x0113, Key_e, Key_period, 0x0117, Key_e, Key_less, 0x011B, Key_e, Key_equal, 0x20AC, Key_e, Key_greater, 0x00EA, Key_e, Key_asciicircum, 0x00EA, Key_e, Key_underscore, 0x0113, Key_e, Key_grave, 0x00E8, Key_e, Key_e, 0x0259, Key_e, Key_diaeresis, 0x00EB, Key_e, Key_acute, 0x00E9, Key_f, Key_period, 0x1E1F, Key_f, Key_S, 0x017F, Key_f, Key_s, 0x017F, Key_g, Key_parenleft, 0x011F, Key_g, Key_comma, 0x0123, Key_g, Key_period, 0x0121, Key_g, Key_U, 0x011F, Key_g, Key_breve, 0x011F, Key_i, Key_quotedbl, 0x00EF, Key_i, Key_apostrophe, 0x00ED, Key_i, Key_comma, 0x012F, Key_i, Key_minus, 0x012B, Key_i, Key_period, 0x0131, Key_i, Key_greater, 0x00EE, Key_i, Key_asciicircum, 0x00EE, Key_i, Key_underscore, 0x012B, Key_i, Key_grave, 0x00EC, Key_i, Key_asciitilde, 0x0129, Key_i, Key_diaeresis, 0x00EF, Key_i, Key_acute, 0x00ED, Key_k, Key_comma, 0x0137, Key_k, Key_k, 0x0138, Key_l, Key_apostrophe, 0x013A, Key_l, Key_comma, 0x013C, Key_l, Key_minus, 0x00A3, Key_l, Key_slash, 0x0142, Key_l, Key_less, 0x013E, Key_l, Key_equal, 0x00A3, Key_l, Key_v, 0x007C, Key_m, Key_period, 0x1E41, Key_m, Key_slash, 0x20A5, Key_m, Key_u, 0x00B5, Key_n, Key_apostrophe, 0x0144, Key_n, Key_comma, 0x0146, Key_n, Key_minus, 0x00F1, Key_n, Key_less, 0x0148, Key_n, Key_g, 0x014B, Key_n, Key_asciitilde, 0x00F1, Key_o, Key_quotedbl, 0x00F6, Key_o, Key_apostrophe, 0x00F3, Key_o, Key_minus, 0x00F5, Key_o, Key_slash, 0x00F8, Key_o, Key_greater, 0x00F4, Key_o, Key_A, 0x00C5, Key_o, Key_C, 0x00A9, Key_o, Key_R, 0x00AE, Key_o, Key_U, 0x016E, Key_o, Key_X, 0x00A4, Key_o, Key_asciicircum, 0x00F4, Key_o, Key_underscore, 0x00BA, Key_o, Key_grave, 0x00F2, Key_o, Key_a, 0x00E5, Key_o, Key_c, 0x00A9, Key_o, Key_e, 0x0153, Key_o, Key_o, 0x00B0, Key_o, Key_r, 0x00AE, Key_o, Key_s, 0x00A7, Key_o, Key_u, 0x016F, Key_o, Key_w, 0x1E98, Key_o, Key_x, 0x00A4, Key_o, Key_y, 0x1E99, Key_o, Key_asciitilde, 0x00F5, Key_o, Key_diaeresis, 0x00F6, Key_o, Key_acute, 0x00F3, Key_p, Key_exclam, 0x00B6, Key_p, Key_period, 0x1E57, Key_r, Key_apostrophe, 0x0155, Key_r, Key_comma, 0x0157, Key_r, Key_less, 0x0159, Key_s, Key_exclam, 0x00A7, Key_s, Key_apostrophe, 0x015B, Key_s, Key_comma, 0x015F, Key_s, Key_period, 0x1E61, Key_s, Key_0, 0x00A7, Key_s, Key_1, 0x00B9, Key_s, Key_2, 0x00B2, Key_s, Key_3, 0x00B3, Key_s, Key_less, 0x0161, Key_s, Key_M, 0x2120, Key_s, Key_m, 0x2120, Key_s, Key_o, 0x00A7, Key_s, Key_s, 0x00DF, Key_s, Key_cedilla, 0x015F, Key_t, Key_minus, 0x0167, Key_t, Key_period, 0x1E6B, Key_t, Key_slash, 0x0167, Key_t, Key_less, 0x0165, Key_t, Key_M, 0x2122, Key_t, Key_h, 0x00FE, Key_t, Key_m, 0x2122, Key_u, Key_quotedbl, 0x00FC, Key_u, Key_apostrophe, 0x00FA, Key_u, Key_asterisk, 0x016F, Key_u, Key_comma, 0x0173, Key_u, Key_minus, 0x016B, Key_u, Key_slash, 0x00B5, Key_u, Key_greater, 0x00FB, Key_u, Key_asciicircum, 0x00FB, Key_u, Key_underscore, 0x016B, Key_u, Key_grave, 0x00F9, Key_u, Key_u, 0x016D, Key_u, Key_asciitilde, 0x0169, Key_u, Key_diaeresis, 0x00FC, Key_u, Key_acute, 0x00FA, Key_v, Key_Z, 0x017D, Key_v, Key_l, 0x007C, Key_v, Key_z, 0x017E, Key_w, Key_asciicircum, 0x0175, Key_x, Key_0, 0x00A4, Key_x, Key_O, 0x00A4, Key_x, Key_o, 0x00A4, Key_x, Key_x, 0x00D7, Key_y, Key_quotedbl, 0x00FF, Key_y, Key_apostrophe, 0x00FD, Key_y, Key_minus, 0x00A5, Key_y, Key_equal, 0x00A5, Key_y, Key_asciicircum, 0x0177, Key_y, Key_diaeresis, 0x00FF, Key_y, Key_acute, 0x00FD, Key_z, Key_apostrophe, 0x017A, Key_z, Key_period, 0x017C, Key_z, Key_less, 0x017E, Key_bar, Key_C, 0x00A2, Key_bar, Key_c, 0x00A2, Key_asciitilde, Key_space, 0x007E, Key_asciitilde, Key_A, 0x00C3, Key_asciitilde, Key_E, 0x1EBC, Key_asciitilde, Key_I, 0x0128, Key_asciitilde, Key_N, 0x00D1, Key_asciitilde, Key_O, 0x00D5, Key_asciitilde, Key_U, 0x0168, Key_asciitilde, Key_V, 0x1E7C, Key_asciitilde, Key_Y, 0x1EF8, Key_asciitilde, Key_a, 0x00E3, Key_asciitilde, Key_e, 0x1EBD, Key_asciitilde, Key_i, 0x0129, Key_asciitilde, Key_n, 0x00F1, Key_asciitilde, Key_o, 0x00F5, Key_asciitilde, Key_u, 0x0169, Key_asciitilde, Key_v, 0x1E7D, Key_asciitilde, Key_y, 0x1EF9, Key_asciitilde, Key_Acircumflex, 0x1EAA, Key_asciitilde, Key_Ecircumflex, 0x1EC4, Key_asciitilde, Key_Ocircumflex, 0x1ED6, Key_asciitilde, Key_acircumflex, 0x1EAB, Key_asciitilde, Key_ecircumflex, 0x1EC5, Key_asciitilde, Key_ocircumflex, 0x1ED7, Key_asciitilde, Key_Ohorn, 0x1EE0, Key_asciitilde, Key_ohorn, 0x1EE1, Key_asciitilde, Key_Uhorn, 0x1EEE, Key_asciitilde, Key_uhorn, 0x1EEF, Key_asciitilde, Key_Abreve, 0x1EB4, Key_asciitilde, Key_abreve, 0x1EB5, Key_asciitilde, Key_Greek_iotadieresis, 0x1FD7, Key_asciitilde, Key_Greek_upsilondieresis, 0x1FE7, Key_asciitilde, Key_Greek_alpha, 0x1FB6, Key_asciitilde, Key_Greek_eta, 0x1FC6, Key_asciitilde, Key_Greek_iota, 0x1FD6, Key_asciitilde, Key_Greek_upsilon, 0x1FE6, Key_asciitilde, Key_Greek_omega, 0x1FF6, Key_asciitilde, 0x1F00, 0x1F06, Key_asciitilde, 0x1F01, 0x1F07, Key_asciitilde, 0x1F08, 0x1F0E, Key_asciitilde, 0x1F09, 0x1F0F, Key_asciitilde, 0x1F20, 0x1F26, Key_asciitilde, 0x1F21, 0x1F27, Key_asciitilde, 0x1F28, 0x1F2E, Key_asciitilde, 0x1F29, 0x1F2F, Key_asciitilde, 0x1F30, 0x1F36, Key_asciitilde, 0x1F31, 0x1F37, Key_asciitilde, 0x1F38, 0x1F3E, Key_asciitilde, 0x1F39, 0x1F3F, Key_asciitilde, 0x1F50, 0x1F56, Key_asciitilde, 0x1F51, 0x1F57, Key_asciitilde, 0x1F59, 0x1F5F, Key_asciitilde, 0x1F60, 0x1F66, Key_asciitilde, 0x1F61, 0x1F67, Key_asciitilde, 0x1F68, 0x1F6E, Key_asciitilde, 0x1F69, 0x1F6F, Key_diaeresis, Key_apostrophe, 0x0385, Key_diaeresis, Key_A, 0x00C4, Key_diaeresis, Key_E, 0x00CB, Key_diaeresis, Key_I, 0x00CF, Key_diaeresis, Key_O, 0x00D6, Key_diaeresis, Key_U, 0x00DC, Key_diaeresis, Key_Y, 0x0178, Key_diaeresis, Key_grave, 0x1FED, Key_diaeresis, Key_a, 0x00E4, Key_diaeresis, Key_e, 0x00EB, Key_diaeresis, Key_i, 0x00EF, Key_diaeresis, Key_o, 0x00F6, Key_diaeresis, Key_u, 0x00FC, Key_diaeresis, Key_y, 0x00FF, Key_diaeresis, Key_asciitilde, 0x1FC1, Key_diaeresis, Key_acute, 0x0385, Key_diaeresis, Key_dead_grave, 0x1FED, Key_diaeresis, Key_dead_acute, 0x0385, Key_diaeresis, Key_dead_tilde, 0x1FC1, Key_macron, Key_A, 0x0100, Key_macron, Key_E, 0x0112, Key_macron, Key_G, 0x1E20, Key_macron, Key_I, 0x012A, Key_macron, Key_O, 0x014C, Key_macron, Key_U, 0x016A, Key_macron, Key_Y, 0x0232, Key_macron, Key_a, 0x0101, Key_macron, Key_e, 0x0113, Key_macron, Key_g, 0x1E21, Key_macron, Key_i, 0x012B, Key_macron, Key_o, 0x014D, Key_macron, Key_u, 0x016B, Key_macron, Key_y, 0x0233, Key_macron, Key_Adiaeresis, 0x01DE, Key_macron, Key_AE, 0x01E2, Key_macron, Key_Otilde, 0x022C, Key_macron, Key_Odiaeresis, 0x022A, Key_macron, 0x00DC, 0x01D5, Key_macron, Key_adiaeresis, 0x01DF, Key_macron, Key_ae, 0x01E3, Key_macron, Key_otilde, 0x022D, Key_macron, Key_odiaeresis, 0x022B, Key_macron, Key_udiaeresis, 0x01D6, Key_macron, 0x01EA, 0x01EC, Key_macron, 0x01EB, 0x01ED, Key_macron, 0x0226, 0x01E0, Key_macron, 0x0227, 0x01E1, Key_macron, 0x022E, 0x0230, Key_macron, 0x022F, 0x0231, Key_macron, Key_Cyrillic_i, 0x04E3, Key_macron, Key_Cyrillic_u, 0x04EF, Key_macron, Key_Cyrillic_I, 0x04E2, Key_macron, Key_Cyrillic_U, 0x04EE, Key_macron, Key_Greek_ALPHA, 0x1FB9, Key_macron, Key_Greek_IOTA, 0x1FD9, Key_macron, Key_Greek_UPSILON, 0x1FE9, Key_macron, Key_Greek_alpha, 0x1FB1, Key_macron, Key_Greek_iota, 0x1FD1, Key_macron, Key_Greek_upsilon, 0x1FE1, Key_macron, 0x1E36, 0x1E38, Key_macron, 0x1E37, 0x1E39, Key_macron, 0x1E5A, 0x1E5C, Key_macron, 0x1E5B, 0x1E5D, Key_acute, Key_A, 0x00C1, Key_acute, Key_C, 0x0106, Key_acute, Key_E, 0x00C9, Key_acute, Key_G, 0x01F4, Key_acute, Key_I, 0x00CD, Key_acute, Key_K, 0x1E30, Key_acute, Key_L, 0x0139, Key_acute, Key_M, 0x1E3E, Key_acute, Key_N, 0x0143, Key_acute, Key_O, 0x00D3, Key_acute, Key_P, 0x1E54, Key_acute, Key_R, 0x0154, Key_acute, Key_S, 0x015A, Key_acute, Key_U, 0x00DA, Key_acute, Key_W, 0x1E82, Key_acute, Key_Y, 0x00DD, Key_acute, Key_Z, 0x0179, Key_acute, Key_a, 0x00E1, Key_acute, Key_c, 0x0107, Key_acute, Key_e, 0x00E9, Key_acute, Key_g, 0x01F5, Key_acute, Key_i, 0x00ED, Key_acute, Key_k, 0x1E31, Key_acute, Key_l, 0x013A, Key_acute, Key_m, 0x1E3F, Key_acute, Key_n, 0x0144, Key_acute, Key_o, 0x00F3, Key_acute, Key_p, 0x1E55, Key_acute, Key_r, 0x0155, Key_acute, Key_s, 0x015B, Key_acute, Key_u, 0x00FA, Key_acute, Key_w, 0x1E83, Key_acute, Key_y, 0x00FD, Key_acute, Key_z, 0x017A, Key_acute, Key_Acircumflex, 0x1EA4, Key_acute, Key_Aring, 0x01FA, Key_acute, Key_AE, 0x01FC, Key_acute, Key_Ccedilla, 0x1E08, Key_acute, Key_Ecircumflex, 0x1EBE, Key_acute, Key_Idiaeresis, 0x1E2E, Key_acute, Key_Ocircumflex, 0x1ED0, Key_acute, Key_Otilde, 0x1E4C, Key_acute, Key_Ooblique, 0x01FE, Key_acute, 0x00DC, 0x01D7, Key_acute, Key_acircumflex, 0x1EA5, Key_acute, Key_aring, 0x01FB, Key_acute, Key_ae, 0x01FD, Key_acute, Key_ccedilla, 0x1E09, Key_acute, Key_ecircumflex, 0x1EBF, Key_acute, Key_idiaeresis, 0x1E2F, Key_acute, Key_ocircumflex, 0x1ED1, Key_acute, Key_otilde, 0x1E4D, Key_acute, Key_oslash, 0x01FF, Key_acute, Key_udiaeresis, 0x01D8, Key_acute, Key_Ohorn, 0x1EDA, Key_acute, Key_ohorn, 0x1EDB, Key_acute, Key_Uhorn, 0x1EE8, Key_acute, Key_uhorn, 0x1EE9, Key_acute, Key_Abreve, 0x1EAE, Key_acute, Key_abreve, 0x1EAF, Key_acute, Key_Emacron, 0x1E16, Key_acute, Key_emacron, 0x1E17, Key_acute, Key_Omacron, 0x1E52, Key_acute, Key_Utilde, 0x1E78, Key_acute, Key_omacron, 0x1E53, Key_acute, Key_utilde, 0x1E79, Key_acute, Key_Cyrillic_ghe, 0x0453, Key_acute, Key_Cyrillic_ka, 0x045C, Key_acute, Key_Cyrillic_GHE, 0x0403, Key_acute, Key_Cyrillic_KA, 0x040C, Key_acute, Key_Greek_iotadieresis, 0x0390, Key_acute, Key_Greek_upsilondieresis, 0x03B0, Key_acute, Key_Greek_ALPHA, 0x0386, Key_acute, Key_Greek_EPSILON, 0x0388, Key_acute, Key_Greek_ETA, 0x0389, Key_acute, Key_Greek_IOTA, 0x038A, Key_acute, Key_Greek_OMICRON, 0x038C, Key_acute, Key_Greek_UPSILON, 0x038E, Key_acute, Key_Greek_OMEGA, 0x038F, Key_acute, Key_Greek_alpha, 0x03AC, Key_acute, Key_Greek_epsilon, 0x03AD, Key_acute, Key_Greek_eta, 0x03AE, Key_acute, Key_Greek_iota, 0x03AF, Key_acute, Key_Greek_omicron, 0x03CC, Key_acute, Key_Greek_upsilon, 0x03CD, Key_acute, Key_Greek_omega, 0x03CE, Key_acute, 0x1F00, 0x1F04, Key_acute, 0x1F01, 0x1F05, Key_acute, 0x1F08, 0x1F0C, Key_acute, 0x1F09, 0x1F0D, Key_acute, 0x1F10, 0x1F14, Key_acute, 0x1F11, 0x1F15, Key_acute, 0x1F18, 0x1F1C, Key_acute, 0x1F19, 0x1F1D, Key_acute, 0x1F20, 0x1F24, Key_acute, 0x1F21, 0x1F25, Key_acute, 0x1F28, 0x1F2C, Key_acute, 0x1F29, 0x1F2D, Key_acute, 0x1F30, 0x1F34, Key_acute, 0x1F31, 0x1F35, Key_acute, 0x1F38, 0x1F3C, Key_acute, 0x1F39, 0x1F3D, Key_acute, 0x1F40, 0x1F44, Key_acute, 0x1F41, 0x1F45, Key_acute, 0x1F48, 0x1F4C, Key_acute, 0x1F49, 0x1F4D, Key_acute, 0x1F50, 0x1F54, Key_acute, 0x1F51, 0x1F55, Key_acute, 0x1F59, 0x1F5D, Key_acute, 0x1F60, 0x1F64, Key_acute, 0x1F61, 0x1F65, Key_acute, 0x1F68, 0x1F6C, Key_acute, 0x1F69, 0x1F6D, Key_cedilla, Key_C, 0x00C7, Key_cedilla, Key_D, 0x1E10, Key_cedilla, Key_E, 0x0228, Key_cedilla, Key_G, 0x0122, Key_cedilla, Key_H, 0x1E28, Key_cedilla, Key_K, 0x0136, Key_cedilla, Key_L, 0x013B, Key_cedilla, Key_N, 0x0145, Key_cedilla, Key_R, 0x0156, Key_cedilla, Key_S, 0x015E, Key_cedilla, Key_T, 0x0162, Key_cedilla, Key_c, 0x00E7, Key_cedilla, Key_d, 0x1E11, Key_cedilla, Key_e, 0x0229, Key_cedilla, Key_g, 0x0123, Key_cedilla, Key_h, 0x1E29, Key_cedilla, Key_k, 0x0137, Key_cedilla, Key_l, 0x013C, Key_cedilla, Key_n, 0x0146, Key_cedilla, Key_r, 0x0157, Key_cedilla, Key_s, 0x015F, Key_cedilla, Key_t, 0x0163, Key_breve, Key_G, 0x011E, Key_breve, Key_g, 0x011F, 0x05B4, Key_hebrew_yod, 0xFB1D, 0x05B7, 0x05F2, 0xFB1F, 0x05B7, Key_hebrew_aleph, 0xFB2E, 0x05B8, Key_hebrew_aleph, 0xFB2F, 0x05B9, Key_hebrew_waw, 0xFB4B, 0x05BC, Key_hebrew_aleph, 0xFB30, 0x05BC, Key_hebrew_beth, 0xFB31, 0x05BC, Key_hebrew_gimmel, 0xFB32, 0x05BC, Key_hebrew_daleth, 0xFB33, 0x05BC, Key_hebrew_he, 0xFB34, 0x05BC, Key_hebrew_waw, 0xFB35, 0x05BC, Key_hebrew_zayin, 0xFB36, 0x05BC, Key_hebrew_teth, 0xFB38, 0x05BC, Key_hebrew_yod, 0xFB39, 0x05BC, Key_hebrew_finalkaph, 0xFB3A, 0x05BC, Key_hebrew_kaph, 0xFB3B, 0x05BC, Key_hebrew_lamed, 0xFB3C, 0x05BC, Key_hebrew_mem, 0xFB3E, 0x05BC, Key_hebrew_nun, 0xFB40, 0x05BC, Key_hebrew_samekh, 0xFB41, 0x05BC, Key_hebrew_finalpe, 0xFB43, 0x05BC, Key_hebrew_pe, 0xFB44, 0x05BC, Key_hebrew_zadi, 0xFB46, 0x05BC, Key_hebrew_qoph, 0xFB47, 0x05BC, Key_hebrew_resh, 0xFB48, 0x05BC, Key_hebrew_shin, 0xFB49, 0x05BC, Key_hebrew_taw, 0xFB4A, 0x05BF, Key_hebrew_beth, 0xFB4C, 0x05BF, Key_hebrew_kaph, 0xFB4D, 0x05BF, Key_hebrew_pe, 0xFB4E, 0x05C1, Key_hebrew_shin, 0xFB2A, 0x05C1, 0xFB49, 0xFB2C, 0x05C2, Key_hebrew_shin, 0xFB2B, 0x05C2, 0xFB49, 0xFB2D, 0x0653, Key_Arabic_alef, 0x0622, 0x0654, Key_Arabic_alef, 0x0623, 0x0654, Key_Arabic_waw, 0x0624, 0x0654, Key_Arabic_yeh, 0x0626, 0x0654, 0x06C1, 0x06C2, 0x0654, 0x06D2, 0x06D3, 0x0654, 0x06D5, 0x06C0, 0x0655, Key_Arabic_alef, 0x0625, Key_Cyrillic_pe, Key_Cyrillic_a, 0x00A7, Key_Cyrillic_IE, Key_equal, 0x20AC, Key_Cyrillic_EN, Key_Cyrillic_o, 0x2116, Key_Cyrillic_EN, Key_Cyrillic_O, 0x2116, Key_Cyrillic_ES, Key_equal, 0x20AC, Key_Greek_ALPHA, Key_apostrophe, 0x0386, Key_Greek_EPSILON, Key_apostrophe, 0x0388, Key_Greek_ETA, Key_apostrophe, 0x0389, Key_Greek_IOTA, Key_quotedbl, 0x03AA, Key_Greek_IOTA, Key_apostrophe, 0x038A, Key_Greek_OMICRON, Key_apostrophe, 0x038C, Key_Greek_UPSILON, Key_quotedbl, 0x03AB, Key_Greek_UPSILON, Key_apostrophe, 0x038E, Key_Greek_OMEGA, Key_apostrophe, 0x038F, Key_Greek_alpha, Key_apostrophe, 0x03AC, Key_Greek_epsilon, Key_apostrophe, 0x03AD, Key_Greek_eta, Key_apostrophe, 0x03AE, Key_Greek_iota, Key_quotedbl, 0x03CA, Key_Greek_iota, Key_apostrophe, 0x03AF, Key_Greek_iota, Key_Greek_alphaaccent, 0x1FB4, Key_Greek_iota, Key_Greek_etaaccent, 0x1FC4, Key_Greek_iota, Key_Greek_omegaaccent, 0x1FF4, Key_Greek_iota, Key_Greek_ALPHA, 0x1FBC, Key_Greek_iota, Key_Greek_ETA, 0x1FCC, Key_Greek_iota, Key_Greek_OMEGA, 0x1FFC, Key_Greek_iota, Key_Greek_alpha, 0x1FB3, Key_Greek_iota, Key_Greek_eta, 0x1FC3, Key_Greek_iota, Key_Greek_omega, 0x1FF3, Key_Greek_iota, 0x1F00, 0x1F80, Key_Greek_iota, 0x1F01, 0x1F81, Key_Greek_iota, 0x1F02, 0x1F82, Key_Greek_iota, 0x1F03, 0x1F83, Key_Greek_iota, 0x1F04, 0x1F84, Key_Greek_iota, 0x1F05, 0x1F85, Key_Greek_iota, 0x1F06, 0x1F86, Key_Greek_iota, 0x1F07, 0x1F87, Key_Greek_iota, 0x1F08, 0x1F88, Key_Greek_iota, 0x1F09, 0x1F89, Key_Greek_iota, 0x1F0A, 0x1F8A, Key_Greek_iota, 0x1F0B, 0x1F8B, Key_Greek_iota, 0x1F0C, 0x1F8C, Key_Greek_iota, 0x1F0D, 0x1F8D, Key_Greek_iota, 0x1F0E, 0x1F8E, Key_Greek_iota, 0x1F0F, 0x1F8F, Key_Greek_iota, 0x1F20, 0x1F90, Key_Greek_iota, 0x1F21, 0x1F91, Key_Greek_iota, 0x1F22, 0x1F92, Key_Greek_iota, 0x1F23, 0x1F93, Key_Greek_iota, 0x1F24, 0x1F94, Key_Greek_iota, 0x1F25, 0x1F95, Key_Greek_iota, 0x1F26, 0x1F96, Key_Greek_iota, 0x1F27, 0x1F97, Key_Greek_iota, 0x1F28, 0x1F98, Key_Greek_iota, 0x1F29, 0x1F99, Key_Greek_iota, 0x1F2A, 0x1F9A, Key_Greek_iota, 0x1F2B, 0x1F9B, Key_Greek_iota, 0x1F2C, 0x1F9C, Key_Greek_iota, 0x1F2D, 0x1F9D, Key_Greek_iota, 0x1F2E, 0x1F9E, Key_Greek_iota, 0x1F2F, 0x1F9F, Key_Greek_iota, 0x1F60, 0x1FA0, Key_Greek_iota, 0x1F61, 0x1FA1, Key_Greek_iota, 0x1F62, 0x1FA2, Key_Greek_iota, 0x1F63, 0x1FA3, Key_Greek_iota, 0x1F64, 0x1FA4, Key_Greek_iota, 0x1F65, 0x1FA5, Key_Greek_iota, 0x1F66, 0x1FA6, Key_Greek_iota, 0x1F67, 0x1FA7, Key_Greek_iota, 0x1F68, 0x1FA8, Key_Greek_iota, 0x1F69, 0x1FA9, Key_Greek_iota, 0x1F6A, 0x1FAA, Key_Greek_iota, 0x1F6B, 0x1FAB, Key_Greek_iota, 0x1F6C, 0x1FAC, Key_Greek_iota, 0x1F6D, 0x1FAD, Key_Greek_iota, 0x1F6E, 0x1FAE, Key_Greek_iota, 0x1F6F, 0x1FAF, Key_Greek_iota, 0x1F70, 0x1FB2, Key_Greek_iota, 0x1F74, 0x1FC2, Key_Greek_iota, 0x1F7C, 0x1FF2, Key_Greek_iota, 0x1FB6, 0x1FB7, Key_Greek_iota, 0x1FC6, 0x1FC7, Key_Greek_iota, 0x1FF6, 0x1FF7, Key_Greek_omicron, Key_apostrophe, 0x03CC, Key_Greek_upsilon, Key_quotedbl, 0x03CB, Key_Greek_upsilon, Key_apostrophe, 0x03CD, Key_Greek_omega, Key_apostrophe, 0x03CE, Key_lessthanequal, 0x0338, 0x2270, Key_greaterthanequal, 0x0338, 0x2271, Key_approximate, 0x0338, 0x2247, Key_identical, 0x0338, 0x2262, Key_includedin, 0x0338, 0x2284, Key_includes, 0x0338, 0x2285, 0x093C, 0x0915, 0x0958, 0x093C, 0x0916, 0x0959, 0x093C, 0x0917, 0x095A, 0x093C, 0x091C, 0x095B, 0x093C, 0x0921, 0x095C, 0x093C, 0x0922, 0x095D, 0x093C, 0x0928, 0x0929, 0x093C, 0x092B, 0x095E, 0x093C, 0x092F, 0x095F, 0x093C, 0x0930, 0x0931, 0x093C, 0x0933, 0x0934, 0x09BC, 0x09A1, 0x09DC, 0x09BC, 0x09A2, 0x09DD, 0x09BC, 0x09AF, 0x09DF, 0x09C7, 0x09BE, 0x09CB, 0x09C7, 0x09D7, 0x09CC, 0x0A3C, 0x0A16, 0x0A59, 0x0A3C, 0x0A17, 0x0A5A, 0x0A3C, 0x0A1C, 0x0A5B, 0x0A3C, 0x0A2B, 0x0A5E, 0x0A3C, 0x0A32, 0x0A33, 0x0A3C, 0x0A38, 0x0A36, 0x0B3C, 0x0B21, 0x0B5C, 0x0B3C, 0x0B22, 0x0B5D, 0x0B47, 0x0B3E, 0x0B4B, 0x0B47, 0x0B56, 0x0B48, 0x0B47, 0x0B57, 0x0B4C, Key_leftcaret, 0x0338, 0x226E, Key_rightcaret, 0x0338, 0x226F, Key_underbar, Key_parenleft, 0x208D, Key_underbar, Key_parenright, 0x208E, Key_underbar, Key_plus, 0x208A, Key_underbar, Key_0, 0x2080, Key_underbar, Key_1, 0x2081, Key_underbar, Key_2, 0x2082, Key_underbar, Key_3, 0x2083, Key_underbar, Key_4, 0x2084, Key_underbar, Key_5, 0x2085, Key_underbar, Key_6, 0x2086, Key_underbar, Key_7, 0x2087, Key_underbar, Key_8, 0x2088, Key_underbar, Key_9, 0x2089, Key_underbar, Key_equal, 0x208C, 0x0BC6, 0x0BBE, 0x0BCA, 0x0BC6, 0x0BD7, 0x0BCC, Key_underbar, 0x2212, 0x208B, Key_underbar, Key_KP_Space, 0x2082, Key_underbar, Key_KP_Add, 0x208A, Key_underbar, Key_KP_0, 0x2080, Key_underbar, Key_KP_1, 0x2081, Key_underbar, Key_KP_2, 0x2082, Key_underbar, Key_KP_3, 0x2083, Key_underbar, Key_KP_4, 0x2084, Key_underbar, Key_KP_5, 0x2085, Key_underbar, Key_KP_6, 0x2086, Key_underbar, Key_KP_7, 0x2087, Key_underbar, Key_KP_8, 0x2088, Key_underbar, Key_KP_9, 0x2089, Key_underbar, Key_KP_Equal, 0x208C, 0x0BC7, 0x0BBE, 0x0BCB, 0x0BD7, 0x0B92, 0x0B94, Key_rightshoe, 0x0338, 0x2285, Key_leftshoe, 0x0338, 0x2284, Key_righttack, 0x0338, 0x22AC, 0x0C46, 0x0C56, 0x0C48, 0x0CBF, 0x0CD5, 0x0CC0, 0x0CC6, 0x0CC2, 0x0CCA, 0x0CC6, 0x0CD5, 0x0CC7, 0x0CC6, 0x0CD6, 0x0CC8, 0x0CCA, 0x0CD5, 0x0CCB, 0x0D46, 0x0D3E, 0x0D4A, 0x0D46, 0x0D57, 0x0D4C, 0x0D47, 0x0D3E, 0x0D4B, 0x0DD9, 0x0DCA, 0x0DDA, 0x0DD9, 0x0DCF, 0x0DDC, 0x0DD9, 0x0DDF, 0x0DDE, 0x0DDC, 0x0DCA, 0x0DDD, 0x0F71, 0x0F72, 0x0F73, 0x0F71, 0x0F74, 0x0F75, 0x0F71, 0x0F80, 0x0F81, 0x0F90, 0x0FB5, 0x0FB9, 0x0F92, 0x0FB7, 0x0F93, 0x0F9C, 0x0FB7, 0x0F9D, 0x0FA1, 0x0FB7, 0x0FA2, 0x0FA6, 0x0FB7, 0x0FA7, 0x0FAB, 0x0FB7, 0x0FAC, 0x0FB2, 0x0F80, 0x0F76, 0x0FB3, 0x0F80, 0x0F78, 0x0FB5, 0x0F40, 0x0F69, 0x0FB7, 0x0F42, 0x0F43, 0x0FB7, 0x0F4C, 0x0F4D, 0x0FB7, 0x0F51, 0x0F52, 0x0FB7, 0x0F56, 0x0F57, 0x0FB7, 0x0F5B, 0x0F5C, 0x102E, 0x1025, 0x1026, 0x1100, 0x1100, 0x1101, 0x1102, 0x1100, 0x1113, 0x1102, 0x1102, 0x1114, 0x1102, 0x1103, 0x1115, 0x1102, 0x1107, 0x1116, 0x1103, 0x1100, 0x1117, 0x1103, 0x1103, 0x1104, 0x1105, 0x1102, 0x1118, 0x1105, 0x1105, 0x1119, 0x1105, 0x110B, 0x111B, 0x1105, 0x1112, 0x111A, 0x1106, 0x1107, 0x111C, 0x1106, 0x110B, 0x111D, 0x1107, 0x1100, 0x111E, 0x1107, 0x1102, 0x111F, 0x1107, 0x1103, 0x1120, 0x1107, 0x1107, 0x1108, 0x1107, 0x1109, 0x1121, 0x1107, 0x110A, 0x1125, 0x1107, 0x110B, 0x112B, 0x1107, 0x110C, 0x1127, 0x1107, 0x110E, 0x1128, 0x1107, 0x1110, 0x1129, 0x1107, 0x1111, 0x112A, 0x1107, 0x112B, 0x112C, 0x1107, 0x112D, 0x1122, 0x1107, 0x112F, 0x1123, 0x1107, 0x1132, 0x1124, 0x1107, 0x1136, 0x1126, 0x1108, 0x110B, 0x112C, 0x1109, 0x1100, 0x112D, 0x1109, 0x1102, 0x112E, 0x1109, 0x1103, 0x112F, 0x1109, 0x1105, 0x1130, 0x1109, 0x1106, 0x1131, 0x1109, 0x1107, 0x1132, 0x1109, 0x1109, 0x110A, 0x1109, 0x110A, 0x1134, 0x1109, 0x110B, 0x1135, 0x1109, 0x110C, 0x1136, 0x1109, 0x110E, 0x1137, 0x1109, 0x110F, 0x1138, 0x1109, 0x1110, 0x1139, 0x1109, 0x1111, 0x113A, 0x1109, 0x1112, 0x113B, 0x1109, 0x111E, 0x1133, 0x110A, 0x1109, 0x1134, 0x110B, 0x1100, 0x1141, 0x110B, 0x1103, 0x1142, 0x110B, 0x1106, 0x1143, 0x110B, 0x1107, 0x1144, 0x110B, 0x1109, 0x1145, 0x110B, 0x110B, 0x1147, 0x110B, 0x110C, 0x1148, 0x110B, 0x110E, 0x1149, 0x110B, 0x1110, 0x114A, 0x110B, 0x1111, 0x114B, 0x110B, 0x1140, 0x1146, 0x110C, 0x110B, 0x114D, 0x110C, 0x110C, 0x110D, 0x110E, 0x110F, 0x1152, 0x110E, 0x1112, 0x1153, 0x1111, 0x1107, 0x1156, 0x1111, 0x110B, 0x1157, 0x1112, 0x1112, 0x1158, 0x1121, 0x1100, 0x1122, 0x1121, 0x1103, 0x1123, 0x1121, 0x1107, 0x1124, 0x1121, 0x1109, 0x1125, 0x1121, 0x110C, 0x1126, 0x1132, 0x1100, 0x1133, 0x113C, 0x113C, 0x113D, 0x113E, 0x113E, 0x113F, 0x114E, 0x114E, 0x114F, 0x1150, 0x1150, 0x1151, 0x1161, 0x1169, 0x1176, 0x1161, 0x116E, 0x1177, 0x1161, 0x1175, 0x1162, 0x1163, 0x1169, 0x1178, 0x1163, 0x116D, 0x1179, 0x1163, 0x1175, 0x1164, 0x1165, 0x1169, 0x117A, 0x1165, 0x116E, 0x117B, 0x1165, 0x1173, 0x117C, 0x1165, 0x1175, 0x1166, 0x1167, 0x1169, 0x117D, 0x1167, 0x116E, 0x117E, 0x1167, 0x1175, 0x1168, 0x1169, 0x1161, 0x116A, 0x1169, 0x1162, 0x116B, 0x1169, 0x1165, 0x117F, 0x1169, 0x1166, 0x1180, 0x1169, 0x1168, 0x1181, 0x1169, 0x1169, 0x1182, 0x1169, 0x116E, 0x1183, 0x1169, 0x1175, 0x116C, 0x116A, 0x1175, 0x116B, 0x116D, 0x1163, 0x1184, 0x116D, 0x1164, 0x1185, 0x116D, 0x1167, 0x1186, 0x116D, 0x1169, 0x1187, 0x116D, 0x1175, 0x1188, 0x116E, 0x1161, 0x1189, 0x116E, 0x1162, 0x118A, 0x116E, 0x1165, 0x116F, 0x116E, 0x1166, 0x1170, 0x116E, 0x1168, 0x118C, 0x116E, 0x116E, 0x118D, 0x116E, 0x1175, 0x1171, 0x116E, 0x117C, 0x118B, 0x116F, 0x1173, 0x118B, 0x116F, 0x1175, 0x1170, 0x1172, 0x1161, 0x118E, 0x1172, 0x1165, 0x118F, 0x1172, 0x1166, 0x1190, 0x1172, 0x1167, 0x1191, 0x1172, 0x1168, 0x1192, 0x1172, 0x116E, 0x1193, 0x1172, 0x1175, 0x1194, 0x1173, 0x116E, 0x1195, 0x1173, 0x1173, 0x1196, 0x1173, 0x1175, 0x1174, 0x1174, 0x116E, 0x1197, 0x1175, 0x1161, 0x1198, 0x1175, 0x1163, 0x1199, 0x1175, 0x1169, 0x119A, 0x1175, 0x116E, 0x119B, 0x1175, 0x1173, 0x119C, 0x1175, 0x119E, 0x119D, 0x119E, 0x1165, 0x119F, 0x119E, 0x116E, 0x11A0, 0x119E, 0x1175, 0x11A1, 0x119E, 0x119E, 0x11A2, 0x11A8, 0x11A8, 0x11A9, 0x11A8, 0x11AF, 0x11C3, 0x11A8, 0x11BA, 0x11AA, 0x11A8, 0x11E7, 0x11C4, 0x11AA, 0x11A8, 0x11C4, 0x11AB, 0x11A8, 0x11C5, 0x11AB, 0x11AE, 0x11C6, 0x11AB, 0x11BA, 0x11C7, 0x11AB, 0x11BD, 0x11AC, 0x11AB, 0x11C0, 0x11C9, 0x11AB, 0x11C2, 0x11AD, 0x11AB, 0x11EB, 0x11C8, 0x11AE, 0x11A8, 0x11CA, 0x11AE, 0x11AF, 0x11CB, 0x11AF, 0x11A8, 0x11B0, 0x11AF, 0x11AA, 0x11CC, 0x11AF, 0x11AB, 0x11CD, 0x11AF, 0x11AE, 0x11CE, 0x11AF, 0x11AF, 0x11D0, 0x11AF, 0x11B7, 0x11B1, 0x11AF, 0x11B8, 0x11B2, 0x11AF, 0x11B9, 0x11D3, 0x11AF, 0x11BA, 0x11B3, 0x11AF, 0x11BB, 0x11D6, 0x11AF, 0x11BF, 0x11D8, 0x11AF, 0x11C0, 0x11B4, 0x11AF, 0x11C1, 0x11B5, 0x11AF, 0x11C2, 0x11B6, 0x11AF, 0x11DA, 0x11D1, 0x11AF, 0x11DD, 0x11D2, 0x11AF, 0x11E5, 0x11D4, 0x11AF, 0x11E6, 0x11D5, 0x11AF, 0x11EB, 0x11D7, 0x11AF, 0x11F9, 0x11D9, 0x11B0, 0x11BA, 0x11CC, 0x11B1, 0x11A8, 0x11D1, 0x11B1, 0x11BA, 0x11D2, 0x11B2, 0x11BA, 0x11D3, 0x11B2, 0x11BC, 0x11D5, 0x11B2, 0x11C2, 0x11D4, 0x11B3, 0x11BA, 0x11D6, 0x11B7, 0x11A8, 0x11DA, 0x11B7, 0x11AF, 0x11DB, 0x11B7, 0x11B8, 0x11DC, 0x11B7, 0x11BA, 0x11DD, 0x11B7, 0x11BB, 0x11DE, 0x11B7, 0x11BC, 0x11E2, 0x11B7, 0x11BE, 0x11E0, 0x11B7, 0x11C2, 0x11E1, 0x11B7, 0x11EB, 0x11DF, 0x11B8, 0x11AF, 0x11E3, 0x11B8, 0x11BA, 0x11B9, 0x11B8, 0x11BC, 0x11E6, 0x11B8, 0x11C1, 0x11E4, 0x11B8, 0x11C2, 0x11E5, 0x11BA, 0x11A8, 0x11E7, 0x11BA, 0x11AE, 0x11E8, 0x11BA, 0x11AF, 0x11E9, 0x11BA, 0x11B8, 0x11EA, 0x11BA, 0x11BA, 0x11BB, 0x11BC, 0x11A8, 0x11EC, 0x11BC, 0x11A9, 0x11ED, 0x11BC, 0x11BC, 0x11EE, 0x11BC, 0x11BF, 0x11EF, 0x11C1, 0x11B8, 0x11F3, 0x11C1, 0x11BC, 0x11F4, 0x11C2, 0x11AB, 0x11F5, 0x11C2, 0x11AF, 0x11F6, 0x11C2, 0x11B7, 0x11F7, 0x11C2, 0x11B8, 0x11F8, 0x11CE, 0x11C2, 0x11CF, 0x11DD, 0x11BA, 0x11DE, 0x11EC, 0x11A8, 0x11ED, 0x11F0, 0x11BA, 0x11F1, 0x11F0, 0x11EB, 0x11F2, 0x1FBF, Key_apostrophe, 0x1FCE, 0x1FBF, Key_grave, 0x1FCD, 0x1FBF, Key_asciitilde, 0x1FCF, 0x1FBF, Key_acute, 0x1FCE, 0x1FBF, Key_dead_grave, 0x1FCD, 0x1FBF, Key_dead_acute, 0x1FCE, 0x1FBF, Key_dead_tilde, 0x1FCF, 0x1FFE, Key_apostrophe, 0x1FDE, 0x1FFE, Key_grave, 0x1FDD, 0x1FFE, Key_asciitilde, 0x1FDF, 0x1FFE, Key_acute, 0x1FDE, 0x1FFE, Key_dead_grave, 0x1FDD, 0x1FFE, Key_dead_acute, 0x1FDE, 0x1FFE, Key_dead_tilde, 0x1FDF, 0x2203, 0x0338, 0x2204, 0x2208, 0x0338, 0x2209, 0x220B, 0x0338, 0x220C, 0x2223, 0x0338, 0x2224, 0x2225, 0x0338, 0x2226, 0x223C, 0x0338, 0x2241, 0x2243, 0x0338, 0x2244, 0x2248, 0x0338, 0x2249, 0x224D, 0x0338, 0x226D, 0x2272, 0x0338, 0x2274, 0x2273, 0x0338, 0x2275, 0x2276, 0x0338, 0x2278, 0x2277, 0x0338, 0x2279, 0x227A, 0x0338, 0x2280, 0x227B, 0x0338, 0x2281, 0x227C, 0x0338, 0x22E0, 0x227D, 0x0338, 0x22E1, 0x2286, 0x0338, 0x2288, 0x2287, 0x0338, 0x2289, 0x2291, 0x0338, 0x22E2, 0x2292, 0x0338, 0x22E3, 0x22A8, 0x0338, 0x22AD, 0x22A9, 0x0338, 0x22AE, 0x22AB, 0x0338, 0x22AF, 0x22B2, 0x0338, 0x22EA, 0x22B3, 0x0338, 0x22EB, 0x22B4, 0x0338, 0x22EC, 0x22B5, 0x0338, 0x22ED, 0x2ADD, 0x0338, 0x2ADC, Key_KP_Divide, Key_D, 0x0110, Key_KP_Divide, Key_G, 0x01E4, Key_KP_Divide, Key_H, 0x0126, Key_KP_Divide, Key_I, 0x0197, Key_KP_Divide, Key_L, 0x0141, Key_KP_Divide, Key_O, 0x00D8, Key_KP_Divide, Key_T, 0x0166, Key_KP_Divide, Key_Z, 0x01B5, Key_KP_Divide, Key_b, 0x0180, Key_KP_Divide, Key_d, 0x0111, Key_KP_Divide, Key_g, 0x01E5, Key_KP_Divide, Key_h, 0x0127, Key_KP_Divide, Key_i, 0x0268, Key_KP_Divide, Key_l, 0x0142, Key_KP_Divide, Key_o, 0x00F8, Key_KP_Divide, Key_t, 0x0167, Key_KP_Divide, Key_z, 0x01B6, Key_KP_Divide, 0x0294, 0x02A1, Key_KP_Divide, 0x04AE, 0x04B0, Key_KP_Divide, 0x04AF, 0x04B1, Key_KP_Divide, Key_Cyrillic_ghe, 0x0493, Key_KP_Divide, Key_Cyrillic_ka, 0x049F, Key_KP_Divide, Key_Cyrillic_GHE, 0x0492, Key_KP_Divide, Key_Cyrillic_KA, 0x049E, Key_KP_Divide, Key_leftarrow, 0x219A, Key_KP_Divide, Key_rightarrow, 0x219B, Key_KP_Divide, 0x2194, 0x21AE, Key_KP_Equal, 0x0338, 0x2260, Key_exclam, Key_plus, Key_O, 0x1EE2, Key_exclam, Key_plus, Key_U, 0x1EF0, Key_exclam, Key_plus, Key_o, 0x1EE3, Key_exclam, Key_plus, Key_u, 0x1EF1, Key_exclam, Key_dead_horn, Key_O, 0x1EE2, Key_exclam, Key_dead_horn, Key_U, 0x1EF0, Key_exclam, Key_dead_horn, Key_o, 0x1EE3, Key_exclam, Key_dead_horn, Key_u, 0x1EF1, Key_quotedbl, Key_apostrophe, Key_space, 0x0385, Key_quotedbl, Key_apostrophe, Key_Greek_iota, 0x0390, Key_quotedbl, Key_apostrophe, Key_Greek_upsilon, 0x03B0, Key_quotedbl, Key_underscore, Key_U, 0x1E7A, Key_quotedbl, Key_underscore, Key_u, 0x1E7B, Key_quotedbl, Key_asciitilde, Key_O, 0x1E4E, Key_quotedbl, Key_asciitilde, Key_o, 0x1E4F, Key_quotedbl, Key_macron, Key_U, 0x1E7A, Key_quotedbl, Key_macron, Key_u, 0x1E7B, Key_quotedbl, Key_dead_tilde, Key_O, 0x1E4E, Key_quotedbl, Key_dead_tilde, Key_o, 0x1E4F, Key_quotedbl, Key_dead_macron, Key_U, 0x1E7A, Key_quotedbl, Key_dead_macron, Key_u, 0x1E7B, Key_apostrophe, Key_quotedbl, Key_space, 0x0385, Key_apostrophe, Key_quotedbl, Key_I, 0x1E2E, Key_apostrophe, Key_quotedbl, Key_U, 0x01D7, Key_apostrophe, Key_quotedbl, Key_i, 0x1E2F, Key_apostrophe, Key_quotedbl, Key_u, 0x01D8, Key_apostrophe, Key_quotedbl, Key_Greek_iota, 0x0390, Key_apostrophe, Key_quotedbl, Key_Greek_upsilon, 0x03B0, Key_apostrophe, Key_parenleft, Key_Greek_ALPHA, 0x1F0D, Key_apostrophe, Key_parenleft, Key_Greek_EPSILON, 0x1F1D, Key_apostrophe, Key_parenleft, Key_Greek_ETA, 0x1F2D, Key_apostrophe, Key_parenleft, Key_Greek_IOTA, 0x1F3D, Key_apostrophe, Key_parenleft, Key_Greek_OMICRON, 0x1F4D, Key_apostrophe, Key_parenleft, Key_Greek_UPSILON, 0x1F5D, Key_apostrophe, Key_parenleft, Key_Greek_OMEGA, 0x1F6D, Key_apostrophe, Key_parenleft, Key_Greek_alpha, 0x1F05, Key_apostrophe, Key_parenleft, Key_Greek_epsilon, 0x1F15, Key_apostrophe, Key_parenleft, Key_Greek_eta, 0x1F25, Key_apostrophe, Key_parenleft, Key_Greek_iota, 0x1F35, Key_apostrophe, Key_parenleft, Key_Greek_omicron, 0x1F45, Key_apostrophe, Key_parenleft, Key_Greek_upsilon, 0x1F55, Key_apostrophe, Key_parenleft, Key_Greek_omega, 0x1F65, Key_apostrophe, Key_parenright, Key_Greek_ALPHA, 0x1F0C, Key_apostrophe, Key_parenright, Key_Greek_EPSILON, 0x1F1C, Key_apostrophe, Key_parenright, Key_Greek_ETA, 0x1F2C, Key_apostrophe, Key_parenright, Key_Greek_IOTA, 0x1F3C, Key_apostrophe, Key_parenright, Key_Greek_OMICRON, 0x1F4C, Key_apostrophe, Key_parenright, Key_Greek_OMEGA, 0x1F6C, Key_apostrophe, Key_parenright, Key_Greek_alpha, 0x1F04, Key_apostrophe, Key_parenright, Key_Greek_epsilon, 0x1F14, Key_apostrophe, Key_parenright, Key_Greek_eta, 0x1F24, Key_apostrophe, Key_parenright, Key_Greek_iota, 0x1F34, Key_apostrophe, Key_parenright, Key_Greek_omicron, 0x1F44, Key_apostrophe, Key_parenright, Key_Greek_upsilon, 0x1F54, Key_apostrophe, Key_parenright, Key_Greek_omega, 0x1F64, Key_apostrophe, Key_plus, Key_O, 0x1EDA, Key_apostrophe, Key_plus, Key_U, 0x1EE8, Key_apostrophe, Key_plus, Key_o, 0x1EDB, Key_apostrophe, Key_plus, Key_u, 0x1EE9, Key_apostrophe, Key_slash, Key_O, 0x01FE, Key_apostrophe, Key_slash, Key_o, 0x01FF, Key_apostrophe, Key_asciicircum, Key_A, 0x1EA4, Key_apostrophe, Key_asciicircum, Key_E, 0x1EBE, Key_apostrophe, Key_asciicircum, Key_O, 0x1ED0, Key_apostrophe, Key_asciicircum, Key_a, 0x1EA5, Key_apostrophe, Key_asciicircum, Key_e, 0x1EBF, Key_apostrophe, Key_asciicircum, Key_o, 0x1ED1, Key_apostrophe, Key_underscore, Key_E, 0x1E16, Key_apostrophe, Key_underscore, Key_O, 0x1E52, Key_apostrophe, Key_underscore, Key_e, 0x1E17, Key_apostrophe, Key_underscore, Key_o, 0x1E53, Key_apostrophe, Key_b, Key_A, 0x1EAE, Key_apostrophe, Key_b, Key_a, 0x1EAF, Key_apostrophe, Key_asciitilde, Key_O, 0x1E4C, Key_apostrophe, Key_asciitilde, Key_U, 0x1E78, Key_apostrophe, Key_asciitilde, Key_o, 0x1E4D, Key_apostrophe, Key_asciitilde, Key_u, 0x1E79, Key_apostrophe, Key_macron, Key_E, 0x1E16, Key_apostrophe, Key_macron, Key_O, 0x1E52, Key_apostrophe, Key_macron, Key_e, 0x1E17, Key_apostrophe, Key_macron, Key_o, 0x1E53, Key_apostrophe, Key_cedilla, Key_C, 0x1E08, Key_apostrophe, Key_cedilla, Key_c, 0x1E09, Key_apostrophe, Key_dead_circumflex, Key_A, 0x1EA4, Key_apostrophe, Key_dead_circumflex, Key_E, 0x1EBE, Key_apostrophe, Key_dead_circumflex, Key_O, 0x1ED0, Key_apostrophe, Key_dead_circumflex, Key_a, 0x1EA5, Key_apostrophe, Key_dead_circumflex, Key_e, 0x1EBF, Key_apostrophe, Key_dead_circumflex, Key_o, 0x1ED1, Key_apostrophe, Key_dead_tilde, Key_O, 0x1E4C, Key_apostrophe, Key_dead_tilde, Key_U, 0x1E78, Key_apostrophe, Key_dead_tilde, Key_o, 0x1E4D, Key_apostrophe, Key_dead_tilde, Key_u, 0x1E79, Key_apostrophe, Key_dead_macron, Key_E, 0x1E16, Key_apostrophe, Key_dead_macron, Key_O, 0x1E52, Key_apostrophe, Key_dead_macron, Key_e, 0x1E17, Key_apostrophe, Key_dead_macron, Key_o, 0x1E53, Key_apostrophe, Key_dead_breve, Key_A, 0x1EAE, Key_apostrophe, Key_dead_breve, Key_a, 0x1EAF, Key_apostrophe, Key_dead_diaeresis, Key_I, 0x1E2E, Key_apostrophe, Key_dead_diaeresis, Key_U, 0x01D7, Key_apostrophe, Key_dead_diaeresis, Key_i, 0x1E2F, Key_apostrophe, Key_dead_diaeresis, Key_u, 0x01D8, Key_apostrophe, Key_dead_diaeresis, Key_Greek_iota, 0x0390, Key_apostrophe, Key_dead_diaeresis, Key_Greek_upsilon, 0x03B0, Key_apostrophe, Key_dead_abovering, Key_A, 0x01FA, Key_apostrophe, Key_dead_abovering, Key_a, 0x01FB, Key_apostrophe, Key_dead_cedilla, Key_C, 0x1E08, Key_apostrophe, Key_dead_cedilla, Key_c, 0x1E09, Key_apostrophe, Key_dead_horn, Key_O, 0x1EDA, Key_apostrophe, Key_dead_horn, Key_U, 0x1EE8, Key_apostrophe, Key_dead_horn, Key_o, 0x1EDB, Key_apostrophe, Key_dead_horn, Key_u, 0x1EE9, Key_apostrophe, Key_dead_psili, Key_Greek_ALPHA, 0x1F0C, Key_apostrophe, Key_dead_psili, Key_Greek_EPSILON, 0x1F1C, Key_apostrophe, Key_dead_psili, Key_Greek_ETA, 0x1F2C, Key_apostrophe, Key_dead_psili, Key_Greek_IOTA, 0x1F3C, Key_apostrophe, Key_dead_psili, Key_Greek_OMICRON, 0x1F4C, Key_apostrophe, Key_dead_psili, Key_Greek_OMEGA, 0x1F6C, Key_apostrophe, Key_dead_psili, Key_Greek_alpha, 0x1F04, Key_apostrophe, Key_dead_psili, Key_Greek_epsilon, 0x1F14, Key_apostrophe, Key_dead_psili, Key_Greek_eta, 0x1F24, Key_apostrophe, Key_dead_psili, Key_Greek_iota, 0x1F34, Key_apostrophe, Key_dead_psili, Key_Greek_omicron, 0x1F44, Key_apostrophe, Key_dead_psili, Key_Greek_upsilon, 0x1F54, Key_apostrophe, Key_dead_psili, Key_Greek_omega, 0x1F64, Key_apostrophe, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0D, Key_apostrophe, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1D, Key_apostrophe, Key_dead_dasia, Key_Greek_ETA, 0x1F2D, Key_apostrophe, Key_dead_dasia, Key_Greek_IOTA, 0x1F3D, Key_apostrophe, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4D, Key_apostrophe, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5D, Key_apostrophe, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6D, Key_apostrophe, Key_dead_dasia, Key_Greek_alpha, 0x1F05, Key_apostrophe, Key_dead_dasia, Key_Greek_epsilon, 0x1F15, Key_apostrophe, Key_dead_dasia, Key_Greek_eta, 0x1F25, Key_apostrophe, Key_dead_dasia, Key_Greek_iota, 0x1F35, Key_apostrophe, Key_dead_dasia, Key_Greek_omicron, 0x1F45, Key_apostrophe, Key_dead_dasia, Key_Greek_upsilon, 0x1F55, Key_apostrophe, Key_dead_dasia, Key_Greek_omega, 0x1F65, Key_apostrophe, Key_KP_Divide, Key_O, 0x01FE, Key_apostrophe, Key_KP_Divide, Key_o, 0x01FF, Key_parenleft, Key_0, Key_parenright, 0x24EA, Key_parenleft, Key_1, Key_parenright, 0x2460, Key_parenleft, Key_2, Key_parenright, 0x2461, Key_parenleft, Key_3, Key_parenright, 0x2462, Key_parenleft, Key_4, Key_parenright, 0x2463, Key_parenleft, Key_5, Key_parenright, 0x2464, Key_parenleft, Key_6, Key_parenright, 0x2465, Key_parenleft, Key_7, Key_parenright, 0x2466, Key_parenleft, Key_8, Key_parenright, 0x2467, Key_parenleft, Key_9, Key_parenright, 0x2468, Key_parenleft, Key_A, Key_parenright, 0x24B6, Key_parenleft, Key_B, Key_parenright, 0x24B7, Key_parenleft, Key_C, Key_parenright, 0x24B8, Key_parenleft, Key_D, Key_parenright, 0x24B9, Key_parenleft, Key_E, Key_parenright, 0x24BA, Key_parenleft, Key_F, Key_parenright, 0x24BB, Key_parenleft, Key_G, Key_parenright, 0x24BC, Key_parenleft, Key_H, Key_parenright, 0x24BD, Key_parenleft, Key_I, Key_parenright, 0x24BE, Key_parenleft, Key_J, Key_parenright, 0x24BF, Key_parenleft, Key_K, Key_parenright, 0x24C0, Key_parenleft, Key_L, Key_parenright, 0x24C1, Key_parenleft, Key_M, Key_parenright, 0x24C2, Key_parenleft, Key_N, Key_parenright, 0x24C3, Key_parenleft, Key_O, Key_parenright, 0x24C4, Key_parenleft, Key_P, Key_parenright, 0x24C5, Key_parenleft, Key_Q, Key_parenright, 0x24C6, Key_parenleft, Key_R, Key_parenright, 0x24C7, Key_parenleft, Key_S, Key_parenright, 0x24C8, Key_parenleft, Key_T, Key_parenright, 0x24C9, Key_parenleft, Key_U, Key_parenright, 0x24CA, Key_parenleft, Key_V, Key_parenright, 0x24CB, Key_parenleft, Key_W, Key_parenright, 0x24CC, Key_parenleft, Key_X, Key_parenright, 0x24CD, Key_parenleft, Key_Y, Key_parenright, 0x24CE, Key_parenleft, Key_Z, Key_parenright, 0x24CF, Key_parenleft, Key_a, Key_parenright, 0x24D0, Key_parenleft, Key_b, Key_parenright, 0x24D1, Key_parenleft, Key_c, Key_parenright, 0x24D2, Key_parenleft, Key_d, Key_parenright, 0x24D3, Key_parenleft, Key_e, Key_parenright, 0x24D4, Key_parenleft, Key_f, Key_parenright, 0x24D5, Key_parenleft, Key_g, Key_parenright, 0x24D6, Key_parenleft, Key_h, Key_parenright, 0x24D7, Key_parenleft, Key_i, Key_parenright, 0x24D8, Key_parenleft, Key_j, Key_parenright, 0x24D9, Key_parenleft, Key_k, Key_parenright, 0x24DA, Key_parenleft, Key_l, Key_parenright, 0x24DB, Key_parenleft, Key_m, Key_parenright, 0x24DC, Key_parenleft, Key_n, Key_parenright, 0x24DD, Key_parenleft, Key_o, Key_parenright, 0x24DE, Key_parenleft, Key_p, Key_parenright, 0x24DF, Key_parenleft, Key_q, Key_parenright, 0x24E0, Key_parenleft, Key_r, Key_parenright, 0x24E1, Key_parenleft, Key_s, Key_parenright, 0x24E2, Key_parenleft, Key_t, Key_parenright, 0x24E3, Key_parenleft, Key_u, Key_parenright, 0x24E4, Key_parenleft, Key_v, Key_parenright, 0x24E5, Key_parenleft, Key_w, Key_parenright, 0x24E6, Key_parenleft, Key_x, Key_parenright, 0x24E7, Key_parenleft, Key_y, Key_parenright, 0x24E8, Key_parenleft, Key_z, Key_parenright, 0x24E9, Key_parenleft, Key_kana_WO, Key_parenright, 0x32FE, Key_parenleft, Key_kana_A, Key_parenright, 0x32D0, Key_parenleft, Key_kana_I, Key_parenright, 0x32D1, Key_parenleft, Key_kana_U, Key_parenright, 0x32D2, Key_parenleft, Key_kana_E, Key_parenright, 0x32D3, Key_parenleft, Key_kana_O, Key_parenright, 0x32D4, Key_parenleft, Key_kana_KA, Key_parenright, 0x32D5, Key_parenleft, Key_kana_KI, Key_parenright, 0x32D6, Key_parenleft, Key_kana_KU, Key_parenright, 0x32D7, Key_parenleft, Key_kana_KE, Key_parenright, 0x32D8, Key_parenleft, Key_kana_KO, Key_parenright, 0x32D9, Key_parenleft, Key_kana_SA, Key_parenright, 0x32DA, Key_parenleft, Key_kana_SHI, Key_parenright, 0x32DB, Key_parenleft, Key_kana_SU, Key_parenright, 0x32DC, Key_parenleft, Key_kana_SE, Key_parenright, 0x32DD, Key_parenleft, Key_kana_SO, Key_parenright, 0x32DE, Key_parenleft, Key_kana_TA, Key_parenright, 0x32DF, Key_parenleft, Key_kana_CHI, Key_parenright, 0x32E0, Key_parenleft, Key_kana_TSU, Key_parenright, 0x32E1, Key_parenleft, Key_kana_TE, Key_parenright, 0x32E2, Key_parenleft, Key_kana_TO, Key_parenright, 0x32E3, Key_parenleft, Key_kana_NA, Key_parenright, 0x32E4, Key_parenleft, Key_kana_NI, Key_parenright, 0x32E5, Key_parenleft, Key_kana_NU, Key_parenright, 0x32E6, Key_parenleft, Key_kana_NE, Key_parenright, 0x32E7, Key_parenleft, Key_kana_NO, Key_parenright, 0x32E8, Key_parenleft, Key_kana_HA, Key_parenright, 0x32E9, Key_parenleft, Key_kana_HI, Key_parenright, 0x32EA, Key_parenleft, Key_kana_FU, Key_parenright, 0x32EB, Key_parenleft, Key_kana_HE, Key_parenright, 0x32EC, Key_parenleft, Key_kana_HO, Key_parenright, 0x32ED, Key_parenleft, Key_kana_MA, Key_parenright, 0x32EE, Key_parenleft, Key_kana_MI, Key_parenright, 0x32EF, Key_parenleft, Key_kana_MU, Key_parenright, 0x32F0, Key_parenleft, Key_kana_ME, Key_parenright, 0x32F1, Key_parenleft, Key_kana_MO, Key_parenright, 0x32F2, Key_parenleft, Key_kana_YA, Key_parenright, 0x32F3, Key_parenleft, Key_kana_YU, Key_parenright, 0x32F4, Key_parenleft, Key_kana_YO, Key_parenright, 0x32F5, Key_parenleft, Key_kana_RA, Key_parenright, 0x32F6, Key_parenleft, Key_kana_RI, Key_parenright, 0x32F7, Key_parenleft, Key_kana_RU, Key_parenright, 0x32F8, Key_parenleft, Key_kana_RE, Key_parenright, 0x32F9, Key_parenleft, Key_kana_RO, Key_parenright, 0x32FA, Key_parenleft, Key_kana_WA, Key_parenright, 0x32FB, Key_parenleft, 0x1100, Key_parenright, 0x3260, Key_parenleft, 0x1102, Key_parenright, 0x3261, Key_parenleft, 0x1103, Key_parenright, 0x3262, Key_parenleft, 0x1105, Key_parenright, 0x3263, Key_parenleft, 0x1106, Key_parenright, 0x3264, Key_parenleft, 0x1107, Key_parenright, 0x3265, Key_parenleft, 0x1109, Key_parenright, 0x3266, Key_parenleft, 0x110B, Key_parenright, 0x3267, Key_parenleft, 0x110C, Key_parenright, 0x3268, Key_parenleft, 0x110E, Key_parenright, 0x3269, Key_parenleft, 0x110F, Key_parenright, 0x326A, Key_parenleft, 0x1110, Key_parenright, 0x326B, Key_parenleft, 0x1111, Key_parenright, 0x326C, Key_parenleft, 0x1112, Key_parenright, 0x326D, Key_parenleft, 0x30F0, Key_parenright, 0x32FC, Key_parenleft, 0x30F1, Key_parenright, 0x32FD, Key_parenleft, 0x4E00, Key_parenright, 0x3280, Key_parenleft, 0x4E03, Key_parenright, 0x3286, Key_parenleft, 0x4E09, Key_parenright, 0x3282, Key_parenleft, 0x4E0A, Key_parenright, 0x32A4, Key_parenleft, 0x4E0B, Key_parenright, 0x32A6, Key_parenleft, 0x4E2D, Key_parenright, 0x32A5, Key_parenleft, 0x4E5D, Key_parenright, 0x3288, Key_parenleft, 0x4E8C, Key_parenright, 0x3281, Key_parenleft, 0x4E94, Key_parenright, 0x3284, Key_parenleft, 0x4F01, Key_parenright, 0x32AD, Key_parenleft, 0x4F11, Key_parenright, 0x32A1, Key_parenleft, 0x512A, Key_parenright, 0x329D, Key_parenleft, 0x516B, Key_parenright, 0x3287, Key_parenleft, 0x516D, Key_parenright, 0x3285, Key_parenleft, 0x5199, Key_parenright, 0x32A2, Key_parenleft, 0x52B4, Key_parenright, 0x3298, Key_parenleft, 0x533B, Key_parenright, 0x32A9, Key_parenleft, 0x5341, Key_parenright, 0x3289, Key_parenleft, 0x5354, Key_parenright, 0x32AF, Key_parenleft, 0x5370, Key_parenright, 0x329E, Key_parenleft, 0x53F3, Key_parenright, 0x32A8, Key_parenleft, 0x540D, Key_parenright, 0x3294, Key_parenleft, 0x56DB, Key_parenright, 0x3283, Key_parenleft, 0x571F, Key_parenright, 0x328F, Key_parenleft, 0x591C, Key_parenright, 0x32B0, Key_parenleft, 0x5973, Key_parenright, 0x329B, Key_parenleft, 0x5B66, Key_parenright, 0x32AB, Key_parenleft, 0x5B97, Key_parenright, 0x32AA, Key_parenleft, 0x5DE6, Key_parenright, 0x32A7, Key_parenleft, 0x65E5, Key_parenright, 0x3290, Key_parenleft, 0x6708, Key_parenright, 0x328A, Key_parenleft, 0x6709, Key_parenright, 0x3292, Key_parenleft, 0x6728, Key_parenright, 0x328D, Key_parenleft, 0x682A, Key_parenright, 0x3291, Key_parenleft, 0x6B63, Key_parenright, 0x32A3, Key_parenleft, 0x6C34, Key_parenright, 0x328C, Key_parenleft, 0x6CE8, Key_parenright, 0x329F, Key_parenleft, 0x706B, Key_parenright, 0x328B, Key_parenleft, 0x7279, Key_parenright, 0x3295, Key_parenleft, 0x7537, Key_parenright, 0x329A, Key_parenleft, 0x76E3, Key_parenright, 0x32AC, Key_parenleft, 0x793E, Key_parenright, 0x3293, Key_parenleft, 0x795D, Key_parenright, 0x3297, Key_parenleft, 0x79D8, Key_parenright, 0x3299, Key_parenleft, 0x8CA1, Key_parenright, 0x3296, Key_parenleft, 0x8CC7, Key_parenright, 0x32AE, Key_parenleft, 0x9069, Key_parenright, 0x329C, Key_parenleft, 0x91D1, Key_parenright, 0x328E, Key_parenleft, 0x9805, Key_parenright, 0x32A0, Key_parenleft, Key_KP_Space, Key_parenright, 0x2461, Key_parenleft, Key_KP_0, Key_parenright, 0x24EA, Key_parenleft, Key_KP_1, Key_parenright, 0x2460, Key_parenleft, Key_KP_2, Key_parenright, 0x2461, Key_parenleft, Key_KP_3, Key_parenright, 0x2462, Key_parenleft, Key_KP_4, Key_parenright, 0x2463, Key_parenleft, Key_KP_5, Key_parenright, 0x2464, Key_parenleft, Key_KP_6, Key_parenright, 0x2465, Key_parenleft, Key_KP_7, Key_parenright, 0x2466, Key_parenleft, Key_KP_8, Key_parenright, 0x2467, Key_parenleft, Key_KP_9, Key_parenright, 0x2468, Key_minus, Key_minus, Key_space, 0x00AD, Key_minus, Key_minus, Key_minus, 0x2014, Key_minus, Key_minus, Key_period, 0x2013, Key_period, Key_exclam, Key_S, 0x1E68, Key_period, Key_exclam, Key_s, 0x1E69, Key_period, Key_apostrophe, Key_S, 0x1E64, Key_period, Key_apostrophe, Key_s, 0x1E65, Key_period, Key_acute, Key_S, 0x1E64, Key_period, Key_acute, Key_s, 0x1E65, Key_period, Key_dead_acute, Key_S, 0x1E64, Key_period, Key_dead_acute, Key_s, 0x1E65, Key_period, Key_dead_caron, Key_S, 0x1E66, Key_period, Key_dead_caron, Key_s, 0x1E67, Key_period, Key_dead_belowdot, Key_S, 0x1E68, Key_period, Key_dead_belowdot, Key_s, 0x1E69, Key_question, Key_plus, Key_O, 0x1EDE, Key_question, Key_plus, Key_U, 0x1EEC, Key_question, Key_plus, Key_o, 0x1EDF, Key_question, Key_plus, Key_u, 0x1EED, Key_question, Key_asciicircum, Key_A, 0x1EA8, Key_question, Key_asciicircum, Key_E, 0x1EC2, Key_question, Key_asciicircum, Key_O, 0x1ED4, Key_question, Key_asciicircum, Key_a, 0x1EA9, Key_question, Key_asciicircum, Key_e, 0x1EC3, Key_question, Key_asciicircum, Key_o, 0x1ED5, Key_question, Key_b, Key_A, 0x1EB2, Key_question, Key_b, Key_a, 0x1EB3, Key_question, Key_dead_circumflex, Key_A, 0x1EA8, Key_question, Key_dead_circumflex, Key_E, 0x1EC2, Key_question, Key_dead_circumflex, Key_O, 0x1ED4, Key_question, Key_dead_circumflex, Key_a, 0x1EA9, Key_question, Key_dead_circumflex, Key_e, 0x1EC3, Key_question, Key_dead_circumflex, Key_o, 0x1ED5, Key_question, Key_dead_breve, Key_A, 0x1EB2, Key_question, Key_dead_breve, Key_a, 0x1EB3, Key_question, Key_dead_horn, Key_O, 0x1EDE, Key_question, Key_dead_horn, Key_U, 0x1EEC, Key_question, Key_dead_horn, Key_o, 0x1EDF, Key_question, Key_dead_horn, Key_u, 0x1EED, Key_U, Key_exclam, Key_A, 0x1EB6, Key_U, Key_exclam, Key_a, 0x1EB7, Key_U, Key_comma, Key_E, 0x1E1C, Key_U, Key_comma, Key_e, 0x1E1D, Key_U, Key_cedilla, Key_E, 0x1E1C, Key_U, Key_cedilla, Key_e, 0x1E1D, Key_U, Key_dead_cedilla, Key_E, 0x1E1C, Key_U, Key_dead_cedilla, Key_e, 0x1E1D, Key_U, Key_dead_belowdot, Key_A, 0x1EB6, Key_U, Key_dead_belowdot, Key_a, 0x1EB7, Key_asciicircum, Key_exclam, Key_A, 0x1EAC, Key_asciicircum, Key_exclam, Key_E, 0x1EC6, Key_asciicircum, Key_exclam, Key_O, 0x1ED8, Key_asciicircum, Key_exclam, Key_a, 0x1EAD, Key_asciicircum, Key_exclam, Key_e, 0x1EC7, Key_asciicircum, Key_exclam, Key_o, 0x1ED9, Key_asciicircum, Key_underscore, Key_a, 0x00AA, Key_asciicircum, Key_underscore, Key_h, 0x02B0, Key_asciicircum, Key_underscore, Key_i, 0x2071, Key_asciicircum, Key_underscore, Key_j, 0x02B2, Key_asciicircum, Key_underscore, Key_l, 0x02E1, Key_asciicircum, Key_underscore, Key_n, 0x207F, Key_asciicircum, Key_underscore, Key_o, 0x00BA, Key_asciicircum, Key_underscore, Key_r, 0x02B3, Key_asciicircum, Key_underscore, Key_s, 0x02E2, Key_asciicircum, Key_underscore, Key_w, 0x02B7, Key_asciicircum, Key_underscore, Key_x, 0x02E3, Key_asciicircum, Key_underscore, Key_y, 0x02B8, Key_asciicircum, Key_underscore, 0x0263, 0x02E0, Key_asciicircum, Key_underscore, 0x0266, 0x02B1, Key_asciicircum, Key_underscore, 0x0279, 0x02B4, Key_asciicircum, Key_underscore, 0x027B, 0x02B5, Key_asciicircum, Key_underscore, 0x0281, 0x02B6, Key_asciicircum, Key_underscore, 0x0295, 0x02E4, Key_asciicircum, Key_underbar, Key_a, 0x00AA, Key_asciicircum, Key_underbar, Key_h, 0x02B0, Key_asciicircum, Key_underbar, Key_i, 0x2071, Key_asciicircum, Key_underbar, Key_j, 0x02B2, Key_asciicircum, Key_underbar, Key_l, 0x02E1, Key_asciicircum, Key_underbar, Key_n, 0x207F, Key_asciicircum, Key_underbar, Key_o, 0x00BA, Key_asciicircum, Key_underbar, Key_r, 0x02B3, Key_asciicircum, Key_underbar, Key_s, 0x02E2, Key_asciicircum, Key_underbar, Key_w, 0x02B7, Key_asciicircum, Key_underbar, Key_x, 0x02E3, Key_asciicircum, Key_underbar, Key_y, 0x02B8, Key_asciicircum, Key_underbar, 0x0263, 0x02E0, Key_asciicircum, Key_underbar, 0x0266, 0x02B1, Key_asciicircum, Key_underbar, 0x0279, 0x02B4, Key_asciicircum, Key_underbar, 0x027B, 0x02B5, Key_asciicircum, Key_underbar, 0x0281, 0x02B6, Key_asciicircum, Key_underbar, 0x0295, 0x02E4, Key_asciicircum, Key_dead_belowdot, Key_A, 0x1EAC, Key_asciicircum, Key_dead_belowdot, Key_E, 0x1EC6, Key_asciicircum, Key_dead_belowdot, Key_O, 0x1ED8, Key_asciicircum, Key_dead_belowdot, Key_a, 0x1EAD, Key_asciicircum, Key_dead_belowdot, Key_e, 0x1EC7, Key_asciicircum, Key_dead_belowdot, Key_o, 0x1ED9, Key_underscore, Key_exclam, Key_L, 0x1E38, Key_underscore, Key_exclam, Key_R, 0x1E5C, Key_underscore, Key_exclam, Key_l, 0x1E39, Key_underscore, Key_exclam, Key_r, 0x1E5D, Key_underscore, Key_quotedbl, Key_A, 0x01DE, Key_underscore, Key_quotedbl, Key_O, 0x022A, Key_underscore, Key_quotedbl, Key_U, 0x01D5, Key_underscore, Key_quotedbl, Key_a, 0x01DF, Key_underscore, Key_quotedbl, Key_o, 0x022B, Key_underscore, Key_quotedbl, Key_u, 0x01D6, Key_underscore, Key_period, Key_A, 0x01E0, Key_underscore, Key_period, Key_O, 0x0230, Key_underscore, Key_period, Key_a, 0x01E1, Key_underscore, Key_period, Key_o, 0x0231, Key_underscore, Key_semicolon, Key_O, 0x01EC, Key_underscore, Key_semicolon, Key_o, 0x01ED, Key_underscore, Key_asciitilde, Key_O, 0x022C, Key_underscore, Key_asciitilde, Key_o, 0x022D, Key_underscore, Key_dead_tilde, Key_O, 0x022C, Key_underscore, Key_dead_tilde, Key_o, 0x022D, Key_underscore, Key_dead_abovedot, Key_A, 0x01E0, Key_underscore, Key_dead_abovedot, Key_O, 0x0230, Key_underscore, Key_dead_abovedot, Key_a, 0x01E1, Key_underscore, Key_dead_abovedot, Key_o, 0x0231, Key_underscore, Key_dead_diaeresis, Key_A, 0x01DE, Key_underscore, Key_dead_diaeresis, Key_O, 0x022A, Key_underscore, Key_dead_diaeresis, Key_U, 0x01D5, Key_underscore, Key_dead_diaeresis, Key_a, 0x01DF, Key_underscore, Key_dead_diaeresis, Key_o, 0x022B, Key_underscore, Key_dead_diaeresis, Key_u, 0x01D6, Key_underscore, Key_dead_ogonek, Key_O, 0x01EC, Key_underscore, Key_dead_ogonek, Key_o, 0x01ED, Key_underscore, Key_dead_belowdot, Key_L, 0x1E38, Key_underscore, Key_dead_belowdot, Key_R, 0x1E5C, Key_underscore, Key_dead_belowdot, Key_l, 0x1E39, Key_underscore, Key_dead_belowdot, Key_r, 0x1E5D, Key_grave, Key_quotedbl, Key_U, 0x01DB, Key_grave, Key_quotedbl, Key_u, 0x01DC, Key_grave, Key_quotedbl, Key_Greek_iota, 0x1FD2, Key_grave, Key_quotedbl, Key_Greek_upsilon, 0x1FE2, Key_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F0B, Key_grave, Key_parenleft, Key_Greek_EPSILON, 0x1F1B, Key_grave, Key_parenleft, Key_Greek_ETA, 0x1F2B, Key_grave, Key_parenleft, Key_Greek_IOTA, 0x1F3B, Key_grave, Key_parenleft, Key_Greek_OMICRON, 0x1F4B, Key_grave, Key_parenleft, Key_Greek_UPSILON, 0x1F5B, Key_grave, Key_parenleft, Key_Greek_OMEGA, 0x1F6B, Key_grave, Key_parenleft, Key_Greek_alpha, 0x1F03, Key_grave, Key_parenleft, Key_Greek_epsilon, 0x1F13, Key_grave, Key_parenleft, Key_Greek_eta, 0x1F23, Key_grave, Key_parenleft, Key_Greek_iota, 0x1F33, Key_grave, Key_parenleft, Key_Greek_omicron, 0x1F43, Key_grave, Key_parenleft, Key_Greek_upsilon, 0x1F53, Key_grave, Key_parenleft, Key_Greek_omega, 0x1F63, Key_grave, Key_parenright, Key_Greek_ALPHA, 0x1F0A, Key_grave, Key_parenright, Key_Greek_EPSILON, 0x1F1A, Key_grave, Key_parenright, Key_Greek_ETA, 0x1F2A, Key_grave, Key_parenright, Key_Greek_IOTA, 0x1F3A, Key_grave, Key_parenright, Key_Greek_OMICRON, 0x1F4A, Key_grave, Key_parenright, Key_Greek_OMEGA, 0x1F6A, Key_grave, Key_parenright, Key_Greek_alpha, 0x1F02, Key_grave, Key_parenright, Key_Greek_epsilon, 0x1F12, Key_grave, Key_parenright, Key_Greek_eta, 0x1F22, Key_grave, Key_parenright, Key_Greek_iota, 0x1F32, Key_grave, Key_parenright, Key_Greek_omicron, 0x1F42, Key_grave, Key_parenright, Key_Greek_upsilon, 0x1F52, Key_grave, Key_parenright, Key_Greek_omega, 0x1F62, Key_grave, Key_plus, Key_O, 0x1EDC, Key_grave, Key_plus, Key_U, 0x1EEA, Key_grave, Key_plus, Key_o, 0x1EDD, Key_grave, Key_plus, Key_u, 0x1EEB, Key_grave, Key_asciicircum, Key_A, 0x1EA6, Key_grave, Key_asciicircum, Key_E, 0x1EC0, Key_grave, Key_asciicircum, Key_O, 0x1ED2, Key_grave, Key_asciicircum, Key_a, 0x1EA7, Key_grave, Key_asciicircum, Key_e, 0x1EC1, Key_grave, Key_asciicircum, Key_o, 0x1ED3, Key_grave, Key_underscore, Key_E, 0x1E14, Key_grave, Key_underscore, Key_O, 0x1E50, Key_grave, Key_underscore, Key_e, 0x1E15, Key_grave, Key_underscore, Key_o, 0x1E51, Key_grave, Key_b, Key_A, 0x1EB0, Key_grave, Key_b, Key_a, 0x1EB1, Key_grave, Key_macron, Key_E, 0x1E14, Key_grave, Key_macron, Key_O, 0x1E50, Key_grave, Key_macron, Key_e, 0x1E15, Key_grave, Key_macron, Key_o, 0x1E51, Key_grave, Key_dead_circumflex, Key_A, 0x1EA6, Key_grave, Key_dead_circumflex, Key_E, 0x1EC0, Key_grave, Key_dead_circumflex, Key_O, 0x1ED2, Key_grave, Key_dead_circumflex, Key_a, 0x1EA7, Key_grave, Key_dead_circumflex, Key_e, 0x1EC1, Key_grave, Key_dead_circumflex, Key_o, 0x1ED3, Key_grave, Key_dead_macron, Key_E, 0x1E14, Key_grave, Key_dead_macron, Key_O, 0x1E50, Key_grave, Key_dead_macron, Key_e, 0x1E15, Key_grave, Key_dead_macron, Key_o, 0x1E51, Key_grave, Key_dead_breve, Key_A, 0x1EB0, Key_grave, Key_dead_breve, Key_a, 0x1EB1, Key_grave, Key_dead_diaeresis, Key_U, 0x01DB, Key_grave, Key_dead_diaeresis, Key_u, 0x01DC, Key_grave, Key_dead_diaeresis, Key_Greek_iota, 0x1FD2, Key_grave, Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE2, Key_grave, Key_dead_horn, Key_O, 0x1EDC, Key_grave, Key_dead_horn, Key_U, 0x1EEA, Key_grave, Key_dead_horn, Key_o, 0x1EDD, Key_grave, Key_dead_horn, Key_u, 0x1EEB, Key_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F0A, Key_grave, Key_dead_psili, Key_Greek_EPSILON, 0x1F1A, Key_grave, Key_dead_psili, Key_Greek_ETA, 0x1F2A, Key_grave, Key_dead_psili, Key_Greek_IOTA, 0x1F3A, Key_grave, Key_dead_psili, Key_Greek_OMICRON, 0x1F4A, Key_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1F6A, Key_grave, Key_dead_psili, Key_Greek_alpha, 0x1F02, Key_grave, Key_dead_psili, Key_Greek_epsilon, 0x1F12, Key_grave, Key_dead_psili, Key_Greek_eta, 0x1F22, Key_grave, Key_dead_psili, Key_Greek_iota, 0x1F32, Key_grave, Key_dead_psili, Key_Greek_omicron, 0x1F42, Key_grave, Key_dead_psili, Key_Greek_upsilon, 0x1F52, Key_grave, Key_dead_psili, Key_Greek_omega, 0x1F62, Key_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0B, Key_grave, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1B, Key_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F2B, Key_grave, Key_dead_dasia, Key_Greek_IOTA, 0x1F3B, Key_grave, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4B, Key_grave, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5B, Key_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6B, Key_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F03, Key_grave, Key_dead_dasia, Key_Greek_epsilon, 0x1F13, Key_grave, Key_dead_dasia, Key_Greek_eta, 0x1F23, Key_grave, Key_dead_dasia, Key_Greek_iota, 0x1F33, Key_grave, Key_dead_dasia, Key_Greek_omicron, 0x1F43, Key_grave, Key_dead_dasia, Key_Greek_upsilon, 0x1F53, Key_grave, Key_dead_dasia, Key_Greek_omega, 0x1F63, Key_b, Key_exclam, Key_A, 0x1EB6, Key_b, Key_exclam, Key_a, 0x1EB7, Key_b, Key_comma, Key_E, 0x1E1C, Key_b, Key_comma, Key_e, 0x1E1D, Key_b, Key_cedilla, Key_E, 0x1E1C, Key_b, Key_cedilla, Key_e, 0x1E1D, Key_b, Key_dead_cedilla, Key_E, 0x1E1C, Key_b, Key_dead_cedilla, Key_e, 0x1E1D, Key_b, Key_dead_belowdot, Key_A, 0x1EB6, Key_b, Key_dead_belowdot, Key_a, 0x1EB7, Key_c, Key_quotedbl, Key_U, 0x01D9, Key_c, Key_quotedbl, Key_u, 0x01DA, Key_c, Key_dead_diaeresis, Key_U, 0x01D9, Key_c, Key_dead_diaeresis, Key_u, 0x01DA, Key_o, Key_apostrophe, Key_A, 0x01FA, Key_o, Key_apostrophe, Key_a, 0x01FB, Key_asciitilde, Key_quotedbl, Key_Greek_iota, 0x1FD7, Key_asciitilde, Key_quotedbl, Key_Greek_upsilon, 0x1FE7, Key_asciitilde, Key_parenleft, Key_Greek_ALPHA, 0x1F0F, Key_asciitilde, Key_parenleft, Key_Greek_ETA, 0x1F2F, Key_asciitilde, Key_parenleft, Key_Greek_IOTA, 0x1F3F, Key_asciitilde, Key_parenleft, Key_Greek_UPSILON, 0x1F5F, Key_asciitilde, Key_parenleft, Key_Greek_OMEGA, 0x1F6F, Key_asciitilde, Key_parenleft, Key_Greek_alpha, 0x1F07, Key_asciitilde, Key_parenleft, Key_Greek_eta, 0x1F27, Key_asciitilde, Key_parenleft, Key_Greek_iota, 0x1F37, Key_asciitilde, Key_parenleft, Key_Greek_upsilon, 0x1F57, Key_asciitilde, Key_parenleft, Key_Greek_omega, 0x1F67, Key_asciitilde, Key_parenright, Key_Greek_ALPHA, 0x1F0E, Key_asciitilde, Key_parenright, Key_Greek_ETA, 0x1F2E, Key_asciitilde, Key_parenright, Key_Greek_IOTA, 0x1F3E, Key_asciitilde, Key_parenright, Key_Greek_OMEGA, 0x1F6E, Key_asciitilde, Key_parenright, Key_Greek_alpha, 0x1F06, Key_asciitilde, Key_parenright, Key_Greek_eta, 0x1F26, Key_asciitilde, Key_parenright, Key_Greek_iota, 0x1F36, Key_asciitilde, Key_parenright, Key_Greek_upsilon, 0x1F56, Key_asciitilde, Key_parenright, Key_Greek_omega, 0x1F66, Key_asciitilde, Key_plus, Key_O, 0x1EE0, Key_asciitilde, Key_plus, Key_U, 0x1EEE, Key_asciitilde, Key_plus, Key_o, 0x1EE1, Key_asciitilde, Key_plus, Key_u, 0x1EEF, Key_asciitilde, Key_asciicircum, Key_A, 0x1EAA, Key_asciitilde, Key_asciicircum, Key_E, 0x1EC4, Key_asciitilde, Key_asciicircum, Key_O, 0x1ED6, Key_asciitilde, Key_asciicircum, Key_a, 0x1EAB, Key_asciitilde, Key_asciicircum, Key_e, 0x1EC5, Key_asciitilde, Key_asciicircum, Key_o, 0x1ED7, Key_asciitilde, Key_b, Key_A, 0x1EB4, Key_asciitilde, Key_b, Key_a, 0x1EB5, Key_asciitilde, Key_dead_circumflex, Key_A, 0x1EAA, Key_asciitilde, Key_dead_circumflex, Key_E, 0x1EC4, Key_asciitilde, Key_dead_circumflex, Key_O, 0x1ED6, Key_asciitilde, Key_dead_circumflex, Key_a, 0x1EAB, Key_asciitilde, Key_dead_circumflex, Key_e, 0x1EC5, Key_asciitilde, Key_dead_circumflex, Key_o, 0x1ED7, Key_asciitilde, Key_dead_breve, Key_A, 0x1EB4, Key_asciitilde, Key_dead_breve, Key_a, 0x1EB5, Key_asciitilde, Key_dead_diaeresis, Key_Greek_iota, 0x1FD7, Key_asciitilde, Key_dead_diaeresis, Key_Greek_upsilon, 0x1FE7, Key_asciitilde, Key_dead_horn, Key_O, 0x1EE0, Key_asciitilde, Key_dead_horn, Key_U, 0x1EEE, Key_asciitilde, Key_dead_horn, Key_o, 0x1EE1, Key_asciitilde, Key_dead_horn, Key_u, 0x1EEF, Key_asciitilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F0E, Key_asciitilde, Key_dead_psili, Key_Greek_ETA, 0x1F2E, Key_asciitilde, Key_dead_psili, Key_Greek_IOTA, 0x1F3E, Key_asciitilde, Key_dead_psili, Key_Greek_OMEGA, 0x1F6E, Key_asciitilde, Key_dead_psili, Key_Greek_alpha, 0x1F06, Key_asciitilde, Key_dead_psili, Key_Greek_eta, 0x1F26, Key_asciitilde, Key_dead_psili, Key_Greek_iota, 0x1F36, Key_asciitilde, Key_dead_psili, Key_Greek_upsilon, 0x1F56, Key_asciitilde, Key_dead_psili, Key_Greek_omega, 0x1F66, Key_asciitilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0F, Key_asciitilde, Key_dead_dasia, Key_Greek_ETA, 0x1F2F, Key_asciitilde, Key_dead_dasia, Key_Greek_IOTA, 0x1F3F, Key_asciitilde, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5F, Key_asciitilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6F, Key_asciitilde, Key_dead_dasia, Key_Greek_alpha, 0x1F07, Key_asciitilde, Key_dead_dasia, Key_Greek_eta, 0x1F27, Key_asciitilde, Key_dead_dasia, Key_Greek_iota, 0x1F37, Key_asciitilde, Key_dead_dasia, Key_Greek_upsilon, 0x1F57, Key_asciitilde, Key_dead_dasia, Key_Greek_omega, 0x1F67, Key_macron, Key_exclam, Key_L, 0x1E38, Key_macron, Key_exclam, Key_R, 0x1E5C, Key_macron, Key_exclam, Key_l, 0x1E39, Key_macron, Key_exclam, Key_r, 0x1E5D, Key_macron, Key_quotedbl, Key_A, 0x01DE, Key_macron, Key_quotedbl, Key_O, 0x022A, Key_macron, Key_quotedbl, Key_U, 0x01D5, Key_macron, Key_quotedbl, Key_a, 0x01DF, Key_macron, Key_quotedbl, Key_o, 0x022B, Key_macron, Key_quotedbl, Key_u, 0x01D6, Key_macron, Key_period, Key_A, 0x01E0, Key_macron, Key_period, Key_O, 0x0230, Key_macron, Key_period, Key_a, 0x01E1, Key_macron, Key_period, Key_o, 0x0231, Key_macron, Key_semicolon, Key_O, 0x01EC, Key_macron, Key_semicolon, Key_o, 0x01ED, Key_macron, Key_asciitilde, Key_O, 0x022C, Key_macron, Key_asciitilde, Key_o, 0x022D, Key_macron, Key_dead_tilde, Key_O, 0x022C, Key_macron, Key_dead_tilde, Key_o, 0x022D, Key_macron, Key_dead_abovedot, Key_A, 0x01E0, Key_macron, Key_dead_abovedot, Key_O, 0x0230, Key_macron, Key_dead_abovedot, Key_a, 0x01E1, Key_macron, Key_dead_abovedot, Key_o, 0x0231, Key_macron, Key_dead_diaeresis, Key_A, 0x01DE, Key_macron, Key_dead_diaeresis, Key_O, 0x022A, Key_macron, Key_dead_diaeresis, Key_U, 0x01D5, Key_macron, Key_dead_diaeresis, Key_a, 0x01DF, Key_macron, Key_dead_diaeresis, Key_o, 0x022B, Key_macron, Key_dead_diaeresis, Key_u, 0x01D6, Key_macron, Key_dead_ogonek, Key_O, 0x01EC, Key_macron, Key_dead_ogonek, Key_o, 0x01ED, Key_macron, Key_dead_belowdot, Key_L, 0x1E38, Key_macron, Key_dead_belowdot, Key_R, 0x1E5C, Key_macron, Key_dead_belowdot, Key_l, 0x1E39, Key_macron, Key_dead_belowdot, Key_r, 0x1E5D, Key_acute, Key_quotedbl, Key_I, 0x1E2E, Key_acute, Key_quotedbl, Key_U, 0x01D7, Key_acute, Key_quotedbl, Key_i, 0x1E2F, Key_acute, Key_quotedbl, Key_u, 0x01D8, Key_acute, Key_quotedbl, Key_Greek_iota, 0x0390, Key_acute, Key_quotedbl, Key_Greek_upsilon, 0x03B0, Key_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F0D, Key_acute, Key_parenleft, Key_Greek_EPSILON, 0x1F1D, Key_acute, Key_parenleft, Key_Greek_ETA, 0x1F2D, Key_acute, Key_parenleft, Key_Greek_IOTA, 0x1F3D, Key_acute, Key_parenleft, Key_Greek_OMICRON, 0x1F4D, Key_acute, Key_parenleft, Key_Greek_UPSILON, 0x1F5D, Key_acute, Key_parenleft, Key_Greek_OMEGA, 0x1F6D, Key_acute, Key_parenleft, Key_Greek_alpha, 0x1F05, Key_acute, Key_parenleft, Key_Greek_epsilon, 0x1F15, Key_acute, Key_parenleft, Key_Greek_eta, 0x1F25, Key_acute, Key_parenleft, Key_Greek_iota, 0x1F35, Key_acute, Key_parenleft, Key_Greek_omicron, 0x1F45, Key_acute, Key_parenleft, Key_Greek_upsilon, 0x1F55, Key_acute, Key_parenleft, Key_Greek_omega, 0x1F65, Key_acute, Key_parenright, Key_Greek_ALPHA, 0x1F0C, Key_acute, Key_parenright, Key_Greek_EPSILON, 0x1F1C, Key_acute, Key_parenright, Key_Greek_ETA, 0x1F2C, Key_acute, Key_parenright, Key_Greek_IOTA, 0x1F3C, Key_acute, Key_parenright, Key_Greek_OMICRON, 0x1F4C, Key_acute, Key_parenright, Key_Greek_OMEGA, 0x1F6C, Key_acute, Key_parenright, Key_Greek_alpha, 0x1F04, Key_acute, Key_parenright, Key_Greek_epsilon, 0x1F14, Key_acute, Key_parenright, Key_Greek_eta, 0x1F24, Key_acute, Key_parenright, Key_Greek_iota, 0x1F34, Key_acute, Key_parenright, Key_Greek_omicron, 0x1F44, Key_acute, Key_parenright, Key_Greek_upsilon, 0x1F54, Key_acute, Key_parenright, Key_Greek_omega, 0x1F64, Key_acute, Key_plus, Key_O, 0x1EDA, Key_acute, Key_plus, Key_U, 0x1EE8, Key_acute, Key_plus, Key_o, 0x1EDB, Key_acute, Key_plus, Key_u, 0x1EE9, Key_acute, Key_comma, Key_C, 0x1E08, Key_acute, Key_comma, Key_c, 0x1E09, Key_acute, Key_slash, Key_O, 0x01FE, Key_acute, Key_slash, Key_o, 0x01FF, Key_acute, Key_asciicircum, Key_A, 0x1EA4, Key_acute, Key_asciicircum, Key_E, 0x1EBE, Key_acute, Key_asciicircum, Key_O, 0x1ED0, Key_acute, Key_asciicircum, Key_a, 0x1EA5, Key_acute, Key_asciicircum, Key_e, 0x1EBF, Key_acute, Key_asciicircum, Key_o, 0x1ED1, Key_acute, Key_underscore, Key_E, 0x1E16, Key_acute, Key_underscore, Key_O, 0x1E52, Key_acute, Key_underscore, Key_e, 0x1E17, Key_acute, Key_underscore, Key_o, 0x1E53, Key_acute, Key_b, Key_A, 0x1EAE, Key_acute, Key_b, Key_a, 0x1EAF, Key_acute, Key_asciitilde, Key_O, 0x1E4C, Key_acute, Key_asciitilde, Key_U, 0x1E78, Key_acute, Key_asciitilde, Key_o, 0x1E4D, Key_acute, Key_asciitilde, Key_u, 0x1E79, Key_acute, Key_macron, Key_E, 0x1E16, Key_acute, Key_macron, Key_O, 0x1E52, Key_acute, Key_macron, Key_e, 0x1E17, Key_acute, Key_macron, Key_o, 0x1E53, Key_acute, Key_cedilla, Key_C, 0x1E08, Key_acute, Key_cedilla, Key_c, 0x1E09, Key_acute, Key_dead_circumflex, Key_A, 0x1EA4, Key_acute, Key_dead_circumflex, Key_E, 0x1EBE, Key_acute, Key_dead_circumflex, Key_O, 0x1ED0, Key_acute, Key_dead_circumflex, Key_a, 0x1EA5, Key_acute, Key_dead_circumflex, Key_e, 0x1EBF, Key_acute, Key_dead_circumflex, Key_o, 0x1ED1, Key_acute, Key_dead_tilde, Key_O, 0x1E4C, Key_acute, Key_dead_tilde, Key_U, 0x1E78, Key_acute, Key_dead_tilde, Key_o, 0x1E4D, Key_acute, Key_dead_tilde, Key_u, 0x1E79, Key_acute, Key_dead_macron, Key_E, 0x1E16, Key_acute, Key_dead_macron, Key_O, 0x1E52, Key_acute, Key_dead_macron, Key_e, 0x1E17, Key_acute, Key_dead_macron, Key_o, 0x1E53, Key_acute, Key_dead_breve, Key_A, 0x1EAE, Key_acute, Key_dead_breve, Key_a, 0x1EAF, Key_acute, Key_dead_diaeresis, Key_I, 0x1E2E, Key_acute, Key_dead_diaeresis, Key_U, 0x01D7, Key_acute, Key_dead_diaeresis, Key_i, 0x1E2F, Key_acute, Key_dead_diaeresis, Key_u, 0x01D8, Key_acute, Key_dead_diaeresis, Key_Greek_iota, 0x0390, Key_acute, Key_dead_diaeresis, Key_Greek_upsilon, 0x03B0, Key_acute, Key_dead_abovering, Key_A, 0x01FA, Key_acute, Key_dead_abovering, Key_a, 0x01FB, Key_acute, Key_dead_cedilla, Key_C, 0x1E08, Key_acute, Key_dead_cedilla, Key_c, 0x1E09, Key_acute, Key_dead_horn, Key_O, 0x1EDA, Key_acute, Key_dead_horn, Key_U, 0x1EE8, Key_acute, Key_dead_horn, Key_o, 0x1EDB, Key_acute, Key_dead_horn, Key_u, 0x1EE9, Key_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F0C, Key_acute, Key_dead_psili, Key_Greek_EPSILON, 0x1F1C, Key_acute, Key_dead_psili, Key_Greek_ETA, 0x1F2C, Key_acute, Key_dead_psili, Key_Greek_IOTA, 0x1F3C, Key_acute, Key_dead_psili, Key_Greek_OMICRON, 0x1F4C, Key_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1F6C, Key_acute, Key_dead_psili, Key_Greek_alpha, 0x1F04, Key_acute, Key_dead_psili, Key_Greek_epsilon, 0x1F14, Key_acute, Key_dead_psili, Key_Greek_eta, 0x1F24, Key_acute, Key_dead_psili, Key_Greek_iota, 0x1F34, Key_acute, Key_dead_psili, Key_Greek_omicron, 0x1F44, Key_acute, Key_dead_psili, Key_Greek_upsilon, 0x1F54, Key_acute, Key_dead_psili, Key_Greek_omega, 0x1F64, Key_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F0D, Key_acute, Key_dead_dasia, Key_Greek_EPSILON, 0x1F1D, Key_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F2D, Key_acute, Key_dead_dasia, Key_Greek_IOTA, 0x1F3D, Key_acute, Key_dead_dasia, Key_Greek_OMICRON, 0x1F4D, Key_acute, Key_dead_dasia, Key_Greek_UPSILON, 0x1F5D, Key_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1F6D, Key_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F05, Key_acute, Key_dead_dasia, Key_Greek_epsilon, 0x1F15, Key_acute, Key_dead_dasia, Key_Greek_eta, 0x1F25, Key_acute, Key_dead_dasia, Key_Greek_iota, 0x1F35, Key_acute, Key_dead_dasia, Key_Greek_omicron, 0x1F45, Key_acute, Key_dead_dasia, Key_Greek_upsilon, 0x1F55, Key_acute, Key_dead_dasia, Key_Greek_omega, 0x1F65, Key_acute, Key_KP_Divide, Key_O, 0x01FE, Key_acute, Key_KP_Divide, Key_o, 0x01FF, 0x05C1, 0x05BC, Key_hebrew_shin, 0xFB2C, 0x05C2, 0x05BC, Key_hebrew_shin, 0xFB2D, Key_Greek_iota, Key_apostrophe, Key_Greek_alpha, 0x1FB4, Key_Greek_iota, Key_apostrophe, Key_Greek_eta, 0x1FC4, Key_Greek_iota, Key_apostrophe, Key_Greek_omega, 0x1FF4, Key_Greek_iota, Key_apostrophe, 0x1F00, 0x1F84, Key_Greek_iota, Key_apostrophe, 0x1F01, 0x1F85, Key_Greek_iota, Key_apostrophe, 0x1F08, 0x1F8C, Key_Greek_iota, Key_apostrophe, 0x1F09, 0x1F8D, Key_Greek_iota, Key_apostrophe, 0x1F20, 0x1F94, Key_Greek_iota, Key_apostrophe, 0x1F21, 0x1F95, Key_Greek_iota, Key_apostrophe, 0x1F28, 0x1F9C, Key_Greek_iota, Key_apostrophe, 0x1F29, 0x1F9D, Key_Greek_iota, Key_apostrophe, 0x1F60, 0x1FA4, Key_Greek_iota, Key_apostrophe, 0x1F61, 0x1FA5, Key_Greek_iota, Key_apostrophe, 0x1F68, 0x1FAC, Key_Greek_iota, Key_apostrophe, 0x1F69, 0x1FAD, Key_Greek_iota, Key_parenleft, Key_Greek_ALPHA, 0x1F89, Key_Greek_iota, Key_parenleft, Key_Greek_ETA, 0x1F99, Key_Greek_iota, Key_parenleft, Key_Greek_OMEGA, 0x1FA9, Key_Greek_iota, Key_parenleft, Key_Greek_alpha, 0x1F81, Key_Greek_iota, Key_parenleft, Key_Greek_eta, 0x1F91, Key_Greek_iota, Key_parenleft, Key_Greek_omega, 0x1FA1, Key_Greek_iota, Key_parenright, Key_Greek_ALPHA, 0x1F88, Key_Greek_iota, Key_parenright, Key_Greek_ETA, 0x1F98, Key_Greek_iota, Key_parenright, Key_Greek_OMEGA, 0x1FA8, Key_Greek_iota, Key_parenright, Key_Greek_alpha, 0x1F80, Key_Greek_iota, Key_parenright, Key_Greek_eta, 0x1F90, Key_Greek_iota, Key_parenright, Key_Greek_omega, 0x1FA0, Key_Greek_iota, Key_grave, Key_Greek_alpha, 0x1FB2, Key_Greek_iota, Key_grave, Key_Greek_eta, 0x1FC2, Key_Greek_iota, Key_grave, Key_Greek_omega, 0x1FF2, Key_Greek_iota, Key_grave, 0x1F00, 0x1F82, Key_Greek_iota, Key_grave, 0x1F01, 0x1F83, Key_Greek_iota, Key_grave, 0x1F08, 0x1F8A, Key_Greek_iota, Key_grave, 0x1F09, 0x1F8B, Key_Greek_iota, Key_grave, 0x1F20, 0x1F92, Key_Greek_iota, Key_grave, 0x1F21, 0x1F93, Key_Greek_iota, Key_grave, 0x1F28, 0x1F9A, Key_Greek_iota, Key_grave, 0x1F29, 0x1F9B, Key_Greek_iota, Key_grave, 0x1F60, 0x1FA2, Key_Greek_iota, Key_grave, 0x1F61, 0x1FA3, Key_Greek_iota, Key_grave, 0x1F68, 0x1FAA, Key_Greek_iota, Key_grave, 0x1F69, 0x1FAB, Key_Greek_iota, Key_asciitilde, Key_Greek_alpha, 0x1FB7, Key_Greek_iota, Key_asciitilde, Key_Greek_eta, 0x1FC7, Key_Greek_iota, Key_asciitilde, Key_Greek_omega, 0x1FF7, Key_Greek_iota, Key_asciitilde, 0x1F00, 0x1F86, Key_Greek_iota, Key_asciitilde, 0x1F01, 0x1F87, Key_Greek_iota, Key_asciitilde, 0x1F08, 0x1F8E, Key_Greek_iota, Key_asciitilde, 0x1F09, 0x1F8F, Key_Greek_iota, Key_asciitilde, 0x1F20, 0x1F96, Key_Greek_iota, Key_asciitilde, 0x1F21, 0x1F97, Key_Greek_iota, Key_asciitilde, 0x1F28, 0x1F9E, Key_Greek_iota, Key_asciitilde, 0x1F29, 0x1F9F, Key_Greek_iota, Key_asciitilde, 0x1F60, 0x1FA6, Key_Greek_iota, Key_asciitilde, 0x1F61, 0x1FA7, Key_Greek_iota, Key_asciitilde, 0x1F68, 0x1FAE, Key_Greek_iota, Key_asciitilde, 0x1F69, 0x1FAF, Key_Greek_iota, Key_acute, Key_Greek_alpha, 0x1FB4, Key_Greek_iota, Key_acute, Key_Greek_eta, 0x1FC4, Key_Greek_iota, Key_acute, Key_Greek_omega, 0x1FF4, Key_Greek_iota, Key_acute, 0x1F00, 0x1F84, Key_Greek_iota, Key_acute, 0x1F01, 0x1F85, Key_Greek_iota, Key_acute, 0x1F08, 0x1F8C, Key_Greek_iota, Key_acute, 0x1F09, 0x1F8D, Key_Greek_iota, Key_acute, 0x1F20, 0x1F94, Key_Greek_iota, Key_acute, 0x1F21, 0x1F95, Key_Greek_iota, Key_acute, 0x1F28, 0x1F9C, Key_Greek_iota, Key_acute, 0x1F29, 0x1F9D, Key_Greek_iota, Key_acute, 0x1F60, 0x1FA4, Key_Greek_iota, Key_acute, 0x1F61, 0x1FA5, Key_Greek_iota, Key_acute, 0x1F68, 0x1FAC, Key_Greek_iota, Key_acute, 0x1F69, 0x1FAD, Key_Greek_iota, Key_dead_grave, Key_Greek_alpha, 0x1FB2, Key_Greek_iota, Key_dead_grave, Key_Greek_eta, 0x1FC2, Key_Greek_iota, Key_dead_grave, Key_Greek_omega, 0x1FF2, Key_Greek_iota, Key_dead_grave, 0x1F00, 0x1F82, Key_Greek_iota, Key_dead_grave, 0x1F01, 0x1F83, Key_Greek_iota, Key_dead_grave, 0x1F08, 0x1F8A, Key_Greek_iota, Key_dead_grave, 0x1F09, 0x1F8B, Key_Greek_iota, Key_dead_grave, 0x1F20, 0x1F92, Key_Greek_iota, Key_dead_grave, 0x1F21, 0x1F93, Key_Greek_iota, Key_dead_grave, 0x1F28, 0x1F9A, Key_Greek_iota, Key_dead_grave, 0x1F29, 0x1F9B, Key_Greek_iota, Key_dead_grave, 0x1F60, 0x1FA2, Key_Greek_iota, Key_dead_grave, 0x1F61, 0x1FA3, Key_Greek_iota, Key_dead_grave, 0x1F68, 0x1FAA, Key_Greek_iota, Key_dead_grave, 0x1F69, 0x1FAB, Key_Greek_iota, Key_dead_acute, Key_Greek_alpha, 0x1FB4, Key_Greek_iota, Key_dead_acute, Key_Greek_eta, 0x1FC4, Key_Greek_iota, Key_dead_acute, Key_Greek_omega, 0x1FF4, Key_Greek_iota, Key_dead_acute, 0x1F00, 0x1F84, Key_Greek_iota, Key_dead_acute, 0x1F01, 0x1F85, Key_Greek_iota, Key_dead_acute, 0x1F08, 0x1F8C, Key_Greek_iota, Key_dead_acute, 0x1F09, 0x1F8D, Key_Greek_iota, Key_dead_acute, 0x1F20, 0x1F94, Key_Greek_iota, Key_dead_acute, 0x1F21, 0x1F95, Key_Greek_iota, Key_dead_acute, 0x1F28, 0x1F9C, Key_Greek_iota, Key_dead_acute, 0x1F29, 0x1F9D, Key_Greek_iota, Key_dead_acute, 0x1F60, 0x1FA4, Key_Greek_iota, Key_dead_acute, 0x1F61, 0x1FA5, Key_Greek_iota, Key_dead_acute, 0x1F68, 0x1FAC, Key_Greek_iota, Key_dead_acute, 0x1F69, 0x1FAD, Key_Greek_iota, Key_dead_tilde, Key_Greek_alpha, 0x1FB7, Key_Greek_iota, Key_dead_tilde, Key_Greek_eta, 0x1FC7, Key_Greek_iota, Key_dead_tilde, Key_Greek_omega, 0x1FF7, Key_Greek_iota, Key_dead_tilde, 0x1F00, 0x1F86, Key_Greek_iota, Key_dead_tilde, 0x1F01, 0x1F87, Key_Greek_iota, Key_dead_tilde, 0x1F08, 0x1F8E, Key_Greek_iota, Key_dead_tilde, 0x1F09, 0x1F8F, Key_Greek_iota, Key_dead_tilde, 0x1F20, 0x1F96, Key_Greek_iota, Key_dead_tilde, 0x1F21, 0x1F97, Key_Greek_iota, Key_dead_tilde, 0x1F28, 0x1F9E, Key_Greek_iota, Key_dead_tilde, 0x1F29, 0x1F9F, Key_Greek_iota, Key_dead_tilde, 0x1F60, 0x1FA6, Key_Greek_iota, Key_dead_tilde, 0x1F61, 0x1FA7, Key_Greek_iota, Key_dead_tilde, 0x1F68, 0x1FAE, Key_Greek_iota, Key_dead_tilde, 0x1F69, 0x1FAF, Key_Greek_iota, Key_dead_psili, Key_Greek_ALPHA, 0x1F88, Key_Greek_iota, Key_dead_psili, Key_Greek_ETA, 0x1F98, Key_Greek_iota, Key_dead_psili, Key_Greek_OMEGA, 0x1FA8, Key_Greek_iota, Key_dead_psili, Key_Greek_alpha, 0x1F80, Key_Greek_iota, Key_dead_psili, Key_Greek_eta, 0x1F90, Key_Greek_iota, Key_dead_psili, Key_Greek_omega, 0x1FA0, Key_Greek_iota, Key_dead_dasia, Key_Greek_ALPHA, 0x1F89, Key_Greek_iota, Key_dead_dasia, Key_Greek_ETA, 0x1F99, Key_Greek_iota, Key_dead_dasia, Key_Greek_OMEGA, 0x1FA9, Key_Greek_iota, Key_dead_dasia, Key_Greek_alpha, 0x1F81, Key_Greek_iota, Key_dead_dasia, Key_Greek_eta, 0x1F91, Key_Greek_iota, Key_dead_dasia, Key_Greek_omega, 0x1FA1, Key_parenleft, Key_1, Key_0, Key_parenright, 0x2469, Key_parenleft, Key_1, Key_1, Key_parenright, 0x246A, Key_parenleft, Key_1, Key_2, Key_parenright, 0x246B, Key_parenleft, Key_1, Key_3, Key_parenright, 0x246C, Key_parenleft, Key_1, Key_4, Key_parenright, 0x246D, Key_parenleft, Key_1, Key_5, Key_parenright, 0x246E, Key_parenleft, Key_1, Key_6, Key_parenright, 0x246F, Key_parenleft, Key_1, Key_7, Key_parenright, 0x2470, Key_parenleft, Key_1, Key_8, Key_parenright, 0x2471, Key_parenleft, Key_1, Key_9, Key_parenright, 0x2472, Key_parenleft, Key_1, Key_KP_Space, Key_parenright, 0x246B, Key_parenleft, Key_1, Key_KP_0, Key_parenright, 0x2469, Key_parenleft, Key_1, Key_KP_1, Key_parenright, 0x246A, Key_parenleft, Key_1, Key_KP_2, Key_parenright, 0x246B, Key_parenleft, Key_1, Key_KP_3, Key_parenright, 0x246C, Key_parenleft, Key_1, Key_KP_4, Key_parenright, 0x246D, Key_parenleft, Key_1, Key_KP_5, Key_parenright, 0x246E, Key_parenleft, Key_1, Key_KP_6, Key_parenright, 0x246F, Key_parenleft, Key_1, Key_KP_7, Key_parenright, 0x2470, Key_parenleft, Key_1, Key_KP_8, Key_parenright, 0x2471, Key_parenleft, Key_1, Key_KP_9, Key_parenright, 0x2472, Key_parenleft, Key_2, Key_0, Key_parenright, 0x2473, Key_parenleft, Key_2, Key_1, Key_parenright, 0x3251, Key_parenleft, Key_2, Key_2, Key_parenright, 0x3252, Key_parenleft, Key_2, Key_3, Key_parenright, 0x3253, Key_parenleft, Key_2, Key_4, Key_parenright, 0x3254, Key_parenleft, Key_2, Key_5, Key_parenright, 0x3255, Key_parenleft, Key_2, Key_6, Key_parenright, 0x3256, Key_parenleft, Key_2, Key_7, Key_parenright, 0x3257, Key_parenleft, Key_2, Key_8, Key_parenright, 0x3258, Key_parenleft, Key_2, Key_9, Key_parenright, 0x3259, Key_parenleft, Key_2, Key_KP_Space, Key_parenright, 0x3252, Key_parenleft, Key_2, Key_KP_0, Key_parenright, 0x2473, Key_parenleft, Key_2, Key_KP_1, Key_parenright, 0x3251, Key_parenleft, Key_2, Key_KP_2, Key_parenright, 0x3252, Key_parenleft, Key_2, Key_KP_3, Key_parenright, 0x3253, Key_parenleft, Key_2, Key_KP_4, Key_parenright, 0x3254, Key_parenleft, Key_2, Key_KP_5, Key_parenright, 0x3255, Key_parenleft, Key_2, Key_KP_6, Key_parenright, 0x3256, Key_parenleft, Key_2, Key_KP_7, Key_parenright, 0x3257, Key_parenleft, Key_2, Key_KP_8, Key_parenright, 0x3258, Key_parenleft, Key_2, Key_KP_9, Key_parenright, 0x3259, Key_parenleft, Key_3, Key_0, Key_parenright, 0x325A, Key_parenleft, Key_3, Key_1, Key_parenright, 0x325B, Key_parenleft, Key_3, Key_2, Key_parenright, 0x325C, Key_parenleft, Key_3, Key_3, Key_parenright, 0x325D, Key_parenleft, Key_3, Key_4, Key_parenright, 0x325E, Key_parenleft, Key_3, Key_5, Key_parenright, 0x325F, Key_parenleft, Key_3, Key_6, Key_parenright, 0x32B1, Key_parenleft, Key_3, Key_7, Key_parenright, 0x32B2, Key_parenleft, Key_3, Key_8, Key_parenright, 0x32B3, Key_parenleft, Key_3, Key_9, Key_parenright, 0x32B4, Key_parenleft, Key_3, Key_KP_Space, Key_parenright, 0x325C, Key_parenleft, Key_3, Key_KP_0, Key_parenright, 0x325A, Key_parenleft, Key_3, Key_KP_1, Key_parenright, 0x325B, Key_parenleft, Key_3, Key_KP_2, Key_parenright, 0x325C, Key_parenleft, Key_3, Key_KP_3, Key_parenright, 0x325D, Key_parenleft, Key_3, Key_KP_4, Key_parenright, 0x325E, Key_parenleft, Key_3, Key_KP_5, Key_parenright, 0x325F, Key_parenleft, Key_3, Key_KP_6, Key_parenright, 0x32B1, Key_parenleft, Key_3, Key_KP_7, Key_parenright, 0x32B2, Key_parenleft, Key_3, Key_KP_8, Key_parenright, 0x32B3, Key_parenleft, Key_3, Key_KP_9, Key_parenright, 0x32B4, Key_parenleft, Key_4, Key_0, Key_parenright, 0x32B5, Key_parenleft, Key_4, Key_1, Key_parenright, 0x32B6, Key_parenleft, Key_4, Key_2, Key_parenright, 0x32B7, Key_parenleft, Key_4, Key_3, Key_parenright, 0x32B8, Key_parenleft, Key_4, Key_4, Key_parenright, 0x32B9, Key_parenleft, Key_4, Key_5, Key_parenright, 0x32BA, Key_parenleft, Key_4, Key_6, Key_parenright, 0x32BB, Key_parenleft, Key_4, Key_7, Key_parenright, 0x32BC, Key_parenleft, Key_4, Key_8, Key_parenright, 0x32BD, Key_parenleft, Key_4, Key_9, Key_parenright, 0x32BE, Key_parenleft, Key_4, Key_KP_Space, Key_parenright, 0x32B7, Key_parenleft, Key_4, Key_KP_0, Key_parenright, 0x32B5, Key_parenleft, Key_4, Key_KP_1, Key_parenright, 0x32B6, Key_parenleft, Key_4, Key_KP_2, Key_parenright, 0x32B7, Key_parenleft, Key_4, Key_KP_3, Key_parenright, 0x32B8, Key_parenleft, Key_4, Key_KP_4, Key_parenright, 0x32B9, Key_parenleft, Key_4, Key_KP_5, Key_parenright, 0x32BA, Key_parenleft, Key_4, Key_KP_6, Key_parenright, 0x32BB, Key_parenleft, Key_4, Key_KP_7, Key_parenright, 0x32BC, Key_parenleft, Key_4, Key_KP_8, Key_parenright, 0x32BD, Key_parenleft, Key_4, Key_KP_9, Key_parenright, 0x32BE, Key_parenleft, Key_5, Key_KP_0, Key_parenright, 0x32BF, Key_parenleft, 0x1100, 0x1161, Key_parenright, 0x326E, Key_parenleft, 0x1102, 0x1161, Key_parenright, 0x326F, Key_parenleft, 0x1103, 0x1161, Key_parenright, 0x3270, Key_parenleft, 0x1105, 0x1161, Key_parenright, 0x3271, Key_parenleft, 0x1106, 0x1161, Key_parenright, 0x3272, Key_parenleft, 0x1107, 0x1161, Key_parenright, 0x3273, Key_parenleft, 0x1109, 0x1161, Key_parenright, 0x3274, Key_parenleft, 0x110B, 0x1161, Key_parenright, 0x3275, Key_parenleft, 0x110C, 0x1161, Key_parenright, 0x3276, Key_parenleft, 0x110E, 0x1161, Key_parenright, 0x3277, Key_parenleft, 0x110F, 0x1161, Key_parenright, 0x3278, Key_parenleft, 0x1110, 0x1161, Key_parenright, 0x3279, Key_parenleft, 0x1111, 0x1161, Key_parenright, 0x327A, Key_parenleft, 0x1112, 0x1161, Key_parenright, 0x327B, Key_parenleft, Key_KP_Space, Key_0, Key_parenright, 0x2473, Key_parenleft, Key_KP_Space, Key_1, Key_parenright, 0x3251, Key_parenleft, Key_KP_Space, Key_2, Key_parenright, 0x3252, Key_parenleft, Key_KP_Space, Key_3, Key_parenright, 0x3253, Key_parenleft, Key_KP_Space, Key_4, Key_parenright, 0x3254, Key_parenleft, Key_KP_Space, Key_5, Key_parenright, 0x3255, Key_parenleft, Key_KP_Space, Key_6, Key_parenright, 0x3256, Key_parenleft, Key_KP_Space, Key_7, Key_parenright, 0x3257, Key_parenleft, Key_KP_Space, Key_8, Key_parenright, 0x3258, Key_parenleft, Key_KP_Space, Key_9, Key_parenright, 0x3259, Key_parenleft, Key_KP_Space, Key_KP_Space, Key_parenright, 0x3252, Key_parenleft, Key_KP_Space, Key_KP_0, Key_parenright, 0x2473, Key_parenleft, Key_KP_Space, Key_KP_1, Key_parenright, 0x3251, Key_parenleft, Key_KP_Space, Key_KP_2, Key_parenright, 0x3252, Key_parenleft, Key_KP_Space, Key_KP_3, Key_parenright, 0x3253, Key_parenleft, Key_KP_Space, Key_KP_4, Key_parenright, 0x3254, Key_parenleft, Key_KP_Space, Key_KP_5, Key_parenright, 0x3255, Key_parenleft, Key_KP_Space, Key_KP_6, Key_parenright, 0x3256, Key_parenleft, Key_KP_Space, Key_KP_7, Key_parenright, 0x3257, Key_parenleft, Key_KP_Space, Key_KP_8, Key_parenright, 0x3258, Key_parenleft, Key_KP_Space, Key_KP_9, Key_parenright, 0x3259, Key_parenleft, Key_KP_1, Key_0, Key_parenright, 0x2469, Key_parenleft, Key_KP_1, Key_1, Key_parenright, 0x246A, Key_parenleft, Key_KP_1, Key_2, Key_parenright, 0x246B, Key_parenleft, Key_KP_1, Key_3, Key_parenright, 0x246C, Key_parenleft, Key_KP_1, Key_4, Key_parenright, 0x246D, Key_parenleft, Key_KP_1, Key_5, Key_parenright, 0x246E, Key_parenleft, Key_KP_1, Key_6, Key_parenright, 0x246F, Key_parenleft, Key_KP_1, Key_7, Key_parenright, 0x2470, Key_parenleft, Key_KP_1, Key_8, Key_parenright, 0x2471, Key_parenleft, Key_KP_1, Key_9, Key_parenright, 0x2472, Key_parenleft, Key_KP_1, Key_KP_Space, Key_parenright, 0x246B, Key_parenleft, Key_KP_1, Key_KP_0, Key_parenright, 0x2469, Key_parenleft, Key_KP_1, Key_KP_1, Key_parenright, 0x246A, Key_parenleft, Key_KP_1, Key_KP_2, Key_parenright, 0x246B, Key_parenleft, Key_KP_1, Key_KP_3, Key_parenright, 0x246C, Key_parenleft, Key_KP_1, Key_KP_4, Key_parenright, 0x246D, Key_parenleft, Key_KP_1, Key_KP_5, Key_parenright, 0x246E, Key_parenleft, Key_KP_1, Key_KP_6, Key_parenright, 0x246F, Key_parenleft, Key_KP_1, Key_KP_7, Key_parenright, 0x2470, Key_parenleft, Key_KP_1, Key_KP_8, Key_parenright, 0x2471, Key_parenleft, Key_KP_1, Key_KP_9, Key_parenright, 0x2472, Key_parenleft, Key_KP_2, Key_0, Key_parenright, 0x2473, Key_parenleft, Key_KP_2, Key_1, Key_parenright, 0x3251, Key_parenleft, Key_KP_2, Key_2, Key_parenright, 0x3252, Key_parenleft, Key_KP_2, Key_3, Key_parenright, 0x3253, Key_parenleft, Key_KP_2, Key_4, Key_parenright, 0x3254, Key_parenleft, Key_KP_2, Key_5, Key_parenright, 0x3255, Key_parenleft, Key_KP_2, Key_6, Key_parenright, 0x3256, Key_parenleft, Key_KP_2, Key_7, Key_parenright, 0x3257, Key_parenleft, Key_KP_2, Key_8, Key_parenright, 0x3258, Key_parenleft, Key_KP_2, Key_9, Key_parenright, 0x3259, Key_parenleft, Key_KP_2, Key_KP_Space, Key_parenright, 0x3252, Key_parenleft, Key_KP_2, Key_KP_0, Key_parenright, 0x2473, Key_parenleft, Key_KP_2, Key_KP_1, Key_parenright, 0x3251, Key_parenleft, Key_KP_2, Key_KP_2, Key_parenright, 0x3252, Key_parenleft, Key_KP_2, Key_KP_3, Key_parenright, 0x3253, Key_parenleft, Key_KP_2, Key_KP_4, Key_parenright, 0x3254, Key_parenleft, Key_KP_2, Key_KP_5, Key_parenright, 0x3255, Key_parenleft, Key_KP_2, Key_KP_6, Key_parenright, 0x3256, Key_parenleft, Key_KP_2, Key_KP_7, Key_parenright, 0x3257, Key_parenleft, Key_KP_2, Key_KP_8, Key_parenright, 0x3258, Key_parenleft, Key_KP_2, Key_KP_9, Key_parenright, 0x3259, Key_parenleft, Key_KP_3, Key_0, Key_parenright, 0x325A, Key_parenleft, Key_KP_3, Key_1, Key_parenright, 0x325B, Key_parenleft, Key_KP_3, Key_2, Key_parenright, 0x325C, Key_parenleft, Key_KP_3, Key_3, Key_parenright, 0x325D, Key_parenleft, Key_KP_3, Key_4, Key_parenright, 0x325E, Key_parenleft, Key_KP_3, Key_5, Key_parenright, 0x325F, Key_parenleft, Key_KP_3, Key_6, Key_parenright, 0x32B1, Key_parenleft, Key_KP_3, Key_7, Key_parenright, 0x32B2, Key_parenleft, Key_KP_3, Key_8, Key_parenright, 0x32B3, Key_parenleft, Key_KP_3, Key_9, Key_parenright, 0x32B4, Key_parenleft, Key_KP_3, Key_KP_Space, Key_parenright, 0x325C, Key_parenleft, Key_KP_3, Key_KP_0, Key_parenright, 0x325A, Key_parenleft, Key_KP_3, Key_KP_1, Key_parenright, 0x325B, Key_parenleft, Key_KP_3, Key_KP_2, Key_parenright, 0x325C, Key_parenleft, Key_KP_3, Key_KP_3, Key_parenright, 0x325D, Key_parenleft, Key_KP_3, Key_KP_4, Key_parenright, 0x325E, Key_parenleft, Key_KP_3, Key_KP_5, Key_parenright, 0x325F, Key_parenleft, Key_KP_3, Key_KP_6, Key_parenright, 0x32B1, Key_parenleft, Key_KP_3, Key_KP_7, Key_parenright, 0x32B2, Key_parenleft, Key_KP_3, Key_KP_8, Key_parenright, 0x32B3, Key_parenleft, Key_KP_3, Key_KP_9, Key_parenright, 0x32B4, Key_parenleft, Key_KP_4, Key_0, Key_parenright, 0x32B5, Key_parenleft, Key_KP_4, Key_1, Key_parenright, 0x32B6, Key_parenleft, Key_KP_4, Key_2, Key_parenright, 0x32B7, Key_parenleft, Key_KP_4, Key_3, Key_parenright, 0x32B8, Key_parenleft, Key_KP_4, Key_4, Key_parenright, 0x32B9, Key_parenleft, Key_KP_4, Key_5, Key_parenright, 0x32BA, Key_parenleft, Key_KP_4, Key_6, Key_parenright, 0x32BB, Key_parenleft, Key_KP_4, Key_7, Key_parenright, 0x32BC, Key_parenleft, Key_KP_4, Key_8, Key_parenright, 0x32BD, Key_parenleft, Key_KP_4, Key_9, Key_parenright, 0x32BE, Key_parenleft, Key_KP_4, Key_KP_Space, Key_parenright, 0x32B7, Key_parenleft, Key_KP_4, Key_KP_0, Key_parenright, 0x32B5, Key_parenleft, Key_KP_4, Key_KP_1, Key_parenright, 0x32B6, Key_parenleft, Key_KP_4, Key_KP_2, Key_parenright, 0x32B7, Key_parenleft, Key_KP_4, Key_KP_3, Key_parenright, 0x32B8, Key_parenleft, Key_KP_4, Key_KP_4, Key_parenright, 0x32B9, Key_parenleft, Key_KP_4, Key_KP_5, Key_parenright, 0x32BA, Key_parenleft, Key_KP_4, Key_KP_6, Key_parenright, 0x32BB, Key_parenleft, Key_KP_4, Key_KP_7, Key_parenright, 0x32BC, Key_parenleft, Key_KP_4, Key_KP_8, Key_parenright, 0x32BD, Key_parenleft, Key_KP_4, Key_KP_9, Key_parenright, 0x32BE, Key_parenleft, Key_KP_5, Key_KP_0, Key_parenright, 0x32BF, Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_ETA, 0x1F9D, Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_alpha, 0x1F85, Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_eta, 0x1F95, Key_Greek_iota, Key_apostrophe, Key_parenleft, Key_Greek_omega, 0x1FA5, Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_ALPHA, 0x1F8C, Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_ETA, 0x1F9C, Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_OMEGA, 0x1FAC, Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_alpha, 0x1F84, Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_eta, 0x1F94, Key_Greek_iota, Key_apostrophe, Key_parenright, Key_Greek_omega, 0x1FA4, Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_ETA, 0x1F9C, Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_alpha, 0x1F84, Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_eta, 0x1F94, Key_Greek_iota, Key_apostrophe, Key_dead_psili, Key_Greek_omega, 0x1FA4, Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_alpha, 0x1F85, Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_eta, 0x1F95, Key_Greek_iota, Key_apostrophe, Key_dead_dasia, Key_Greek_omega, 0x1FA5, Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_ETA, 0x1F9B, Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_alpha, 0x1F83, Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_eta, 0x1F93, Key_Greek_iota, Key_grave, Key_parenleft, Key_Greek_omega, 0x1FA3, Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_ALPHA, 0x1F8A, Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_ETA, 0x1F9A, Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_OMEGA, 0x1FAA, Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_alpha, 0x1F82, Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_eta, 0x1F92, Key_Greek_iota, Key_grave, Key_parenright, Key_Greek_omega, 0x1FA2, Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, Key_Greek_iota, Key_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, Key_Greek_iota, Key_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_ETA, 0x1F9F, Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_alpha, 0x1F87, Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_eta, 0x1F97, Key_Greek_iota, Key_asciitilde, Key_parenleft, Key_Greek_omega, 0x1FA7, Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_ALPHA, 0x1F8E, Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_ETA, 0x1F9E, Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_OMEGA, 0x1FAE, Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_alpha, 0x1F86, Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_eta, 0x1F96, Key_Greek_iota, Key_asciitilde, Key_parenright, Key_Greek_omega, 0x1FA6, Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_eta, 0x1F96, Key_Greek_iota, Key_asciitilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, Key_Greek_iota, Key_asciitilde, Key_dead_dasia, Key_Greek_omega, 0x1FA7, Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_ETA, 0x1F9D, Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_alpha, 0x1F85, Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_eta, 0x1F95, Key_Greek_iota, Key_acute, Key_parenleft, Key_Greek_omega, 0x1FA5, Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_ALPHA, 0x1F8C, Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_ETA, 0x1F9C, Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_OMEGA, 0x1FAC, Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_alpha, 0x1F84, Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_eta, 0x1F94, Key_Greek_iota, Key_acute, Key_parenright, Key_Greek_omega, 0x1FA4, Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, Key_Greek_iota, Key_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, Key_Greek_iota, Key_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_ALPHA, 0x1F8B, Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_ETA, 0x1F9B, Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_OMEGA, 0x1FAB, Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_alpha, 0x1F83, Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_eta, 0x1F93, Key_Greek_iota, Key_dead_grave, Key_parenleft, Key_Greek_omega, 0x1FA3, Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_ALPHA, 0x1F8A, Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_ETA, 0x1F9A, Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_OMEGA, 0x1FAA, Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_alpha, 0x1F82, Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_eta, 0x1F92, Key_Greek_iota, Key_dead_grave, Key_parenright, Key_Greek_omega, 0x1FA2, Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_ALPHA, 0x1F8A, Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_ETA, 0x1F9A, Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_OMEGA, 0x1FAA, Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_alpha, 0x1F82, Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_eta, 0x1F92, Key_Greek_iota, Key_dead_grave, Key_dead_psili, Key_Greek_omega, 0x1FA2, Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8B, Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_ETA, 0x1F9B, Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAB, Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_alpha, 0x1F83, Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_eta, 0x1F93, Key_Greek_iota, Key_dead_grave, Key_dead_dasia, Key_Greek_omega, 0x1FA3, Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_ALPHA, 0x1F8D, Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_ETA, 0x1F9D, Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_OMEGA, 0x1FAD, Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_alpha, 0x1F85, Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_eta, 0x1F95, Key_Greek_iota, Key_dead_acute, Key_parenleft, Key_Greek_omega, 0x1FA5, Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_ALPHA, 0x1F8C, Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_ETA, 0x1F9C, Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_OMEGA, 0x1FAC, Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_alpha, 0x1F84, Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_eta, 0x1F94, Key_Greek_iota, Key_dead_acute, Key_parenright, Key_Greek_omega, 0x1FA4, Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_ALPHA, 0x1F8C, Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_ETA, 0x1F9C, Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_OMEGA, 0x1FAC, Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_alpha, 0x1F84, Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_eta, 0x1F94, Key_Greek_iota, Key_dead_acute, Key_dead_psili, Key_Greek_omega, 0x1FA4, Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8D, Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_ETA, 0x1F9D, Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAD, Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_alpha, 0x1F85, Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_eta, 0x1F95, Key_Greek_iota, Key_dead_acute, Key_dead_dasia, Key_Greek_omega, 0x1FA5, Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_ALPHA, 0x1F8F, Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_ETA, 0x1F9F, Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_OMEGA, 0x1FAF, Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_alpha, 0x1F87, Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_eta, 0x1F97, Key_Greek_iota, Key_dead_tilde, Key_parenleft, Key_Greek_omega, 0x1FA7, Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_ALPHA, 0x1F8E, Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_ETA, 0x1F9E, Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_OMEGA, 0x1FAE, Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_alpha, 0x1F86, Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_eta, 0x1F96, Key_Greek_iota, Key_dead_tilde, Key_parenright, Key_Greek_omega, 0x1FA6, Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_ALPHA, 0x1F8E, Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_ETA, 0x1F9E, Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_OMEGA, 0x1FAE, Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_alpha, 0x1F86, Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_eta, 0x1F96, Key_Greek_iota, Key_dead_tilde, Key_dead_psili, Key_Greek_omega, 0x1FA6, Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_ALPHA, 0x1F8F, Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_ETA, 0x1F9F, Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_OMEGA, 0x1FAF, Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_alpha, 0x1F87, Key_Greek_iota, Key_dead_tilde, Key_dead_dasia, Key_Greek_eta, 0x1F97, }; #endif ibus-qt-1.3.3-Source/qtim/ibus-input-context.cpp000664 001750 001750 00000060447 12325431066 023346 0ustar00tfujiwartfujiwar000000 000000 /* vim:set et ts=4 sts=4 : */ /* * ibus - The Input Bus * * Copyright (c) 2007-2014 Huang Peng * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA */ #include #include #include #include #include #include #include "ibus-input-context.h" #ifdef Q_WS_X11 # include # include # include # include # ifdef HAVE_X11_XKBLIB_H # define HAVE_XKB # include # endif #endif #include #include #include #include "ibus-compose-data.h" typedef struct _IBusComposeTableCompact IBusComposeTableCompact; struct _IBusComposeTableCompact { const quint32 *data; int max_seq_len; int n_index_size; int n_index_stride; }; static const IBusComposeTableCompact ibus_compose_table_compact = { ibus_compose_seqs_compact, 5, 23, 6 }; static const uint ibus_compose_ignore[] = { Key_Shift_L, Key_Shift_R, Key_Control_L, Key_Control_R, Key_Caps_Lock, Key_Shift_Lock, Key_Meta_L, Key_Meta_R, Key_Alt_L, Key_Alt_R, Key_Super_L, Key_Super_R, Key_Hyper_L, Key_Hyper_R, Key_Mode_switch, Key_ISO_Level3_Shift, Key_VoidSymbol }; typedef QInputMethodEvent::Attribute QAttribute; IBusInputContext::IBusInputContext (const BusPointer &bus) : m_bus (bus), m_context (NULL), m_preedit (NULL), m_preedit_visible (false), m_preedit_cursor_pos (0), m_has_focus (false), m_password_mode (false), m_caps (CapPreeditText | CapFocus | CapSurroundingText), m_n_compose (0), m_needs_surrounding_text (false) { Q_ASSERT (!m_bus.isNull ()); memset (m_compose_buffer, 0, sizeof (m_compose_buffer)); createInputContext (); connect (m_bus, SIGNAL (connected (void)), this, SLOT (slotConnected (void))); connect (m_bus, SIGNAL (disconnected (void)), this, SLOT (slotDisconnected (void))); } IBusInputContext::~IBusInputContext (void) { // client->releaseInputContext (this); deleteInputContext (); m_preedit = NULL; m_context = NULL; m_bus = NULL; } bool IBusInputContext::filterEvent (const QEvent *event) { return QInputContext::filterEvent (event); } QFont IBusInputContext::font (void) const { return QInputContext::font (); } QString IBusInputContext::identifierName (void) { return QString ("ibus"); } QString IBusInputContext::language (void) { return QString (""); } void IBusInputContext::mouseHandler (int x, QMouseEvent *event) { QInputContext::mouseHandler (x, event); } void IBusInputContext::reset (void) { } void IBusInputContext::update (void) { QWidget *widget = focusWidget (); if (widget == NULL || m_context.isNull ()) { return; } QRect rect = widget->inputMethodQuery(Qt::ImMicroFocus).toRect (); QPoint topleft = widget->mapToGlobal(QPoint(0,0)); rect.translate (topleft); m_context->setCursorLocation (rect.x (), rect.y (), rect.width (), rect.height ()); if (m_needs_surrounding_text) { QString surroundingText = widget->inputMethodQuery (Qt::ImSurroundingText).toString (); uint cursor_pos = widget->inputMethodQuery (Qt::ImCursorPosition).toUInt (); uint anchor_pos = widget->inputMethodQuery (Qt::ImAnchorPosition).toUInt (); Text *wrappedSurroundingText = new Text (surroundingText); TextPointer wrappedSurroundingTextPointer (wrappedSurroundingText); m_context->setSurroundingText (wrappedSurroundingTextPointer, cursor_pos, anchor_pos); // We don't destroy wrappedSurroundingText because when // wrappedSurroundingTextPointer is destroyed when this function // returns, it calls wrappedSurroundingText->unref() // which, in turn, destroys wrappedSurroundingText. // It would actually crash if we did since wrappedSurroundingText // is already freed. } #if 0 QVariant value; qDebug () << "== update == "; value = widget->inputMethodQuery(Qt::ImMicroFocus); qDebug () << "Qt::ImMicroFocus " << value; value = widget->inputMethodQuery(Qt::ImFont); qDebug () << "Qt::ImFont " <inputMethodQuery(Qt::ImCursorPosition); qDebug () << "Qt::ImCursorPosition " << value; value = widget->inputMethodQuery(Qt::ImSurroundingText); qDebug () << "Qt::ImSurroundingText " << value; value = widget->inputMethodQuery(Qt::ImCurrentSelection); qDebug () << "Qt::ImCurrentSelection " << value; #endif } bool IBusInputContext::isComposing (void) const { return m_preedit_visible && !m_preedit; } void IBusInputContext::setFocusWidget (QWidget *widget) { QInputContext::setFocusWidget (widget); m_has_focus = (widget != NULL); if (m_context.isNull ()) return; m_password_mode = false; if (m_has_focus && widget->inherits ("QLineEdit")) { QLineEdit::EchoMode mode = qobject_cast(widget)->echoMode(); if (mode == QLineEdit::Password || mode == QLineEdit::NoEcho) { m_password_mode = true; } } if (m_has_focus) { m_context->focusIn (); } else { m_context->focusOut (); } update (); } void IBusInputContext::widgetDestroyed (QWidget *widget) { QInputContext::widgetDestroyed (widget); if (m_has_focus) { setFocusWidget (NULL); } update (); } #ifdef Q_WS_X11 static inline bool translate_x_key_event (XEvent *xevent, uint *keyval, uint *keycode, uint *state) { Q_ASSERT (xevent); Q_ASSERT (keyval); Q_ASSERT (keycode); Q_ASSERT (state); if (xevent->type != KeyPress && xevent->type != KeyRelease) return false; *keycode = xevent->xkey.keycode; *state = xevent->xkey.state; if (xevent->type == KeyRelease) *state |= IBus::ReleaseMask; char key_str[64]; /* Follow gtkxim module. * https://git.gnome.org/browse/gtk+/tree/modules/input/gtkimcontextxim.c#n736 * I think XLookupString can get right keyval even if the return value * is 0 but key_str might not be a string. * And XLookupString won't return the negative value in my test. */ XLookupString (&xevent->xkey, key_str, sizeof (key_str), (KeySym *)keyval, 0); return true; } bool IBusInputContext::x11FilterEvent (QWidget *keywidget, XEvent *xevent) { uint keyval = 0; uint keycode = 0; uint state = 0; if (m_password_mode) { return false; } if (!m_has_focus) { m_has_focus = true; if (!m_context.isNull ()) m_context->focusIn (); } translate_x_key_event (xevent, &keyval, &keycode, &state); keycode -= 8; if (!m_context.isNull ()) { if (m_context->processKeyEvent (keyval, keycode, state)) { m_compose_buffer[0] = 0; m_n_compose = 0; return true; } } if (processCompose (keyval, state)) { // qDebug () << "processComose -> true"; return true; } return false; } bool IBusInputContext::processCompose (uint keyval, uint state) { int i; if (state & IBus::ReleaseMask) return false; for (i = 0; ibus_compose_ignore[i] != Key_VoidSymbol; i++) { if (keyval == ibus_compose_ignore[i]) return false; } m_compose_buffer[m_n_compose ++] = keyval; m_compose_buffer[m_n_compose] = 0; if (checkCompactTable (&ibus_compose_table_compact)) { // qDebug () << "checkCompactTable ->true"; return true; } if (checkAlgorithmically ()) { // qDebug () << "checkAlgorithmically ->true"; return true; } if (m_n_compose > 1) { QApplication::beep (); m_compose_buffer[0] = 0; m_n_compose = 0; return true; } else { m_compose_buffer[0] = 0; m_n_compose = 0; return false; } } static int compare_seq_index (const void *key, const void *value) { const uint *keysyms = (const uint *)key; const quint32 *seq = (const quint32 *)value; if (keysyms[0] < seq[0]) return -1; else if (keysyms[0] > seq[0]) return 1; return 0; } static int compare_seq (const void *key, const void *value) { int i = 0; const uint *keysyms = (const uint *)key; const quint32 *seq = (const quint32 *)value; while (keysyms[i]) { if (keysyms[i] < seq[i]) return -1; else if (keysyms[i] > seq[i]) return 1; i++; } return 0; } bool IBusInputContext::checkCompactTable (const IBusComposeTableCompact *table) { int row_stride; const quint32 *seq_index; const quint32 *seq; int i; /* Will never match, if the sequence in the compose buffer is longer * than the sequences in the table. Further, compare_seq (key, val) * will overrun val if key is longer than val. */ if (m_n_compose > table->max_seq_len) return false; seq_index = (const quint32 *)bsearch (m_compose_buffer, table->data, table->n_index_size, sizeof (quint32) * table->n_index_stride, compare_seq_index); if (!seq_index) { return false; } if (seq_index && m_n_compose == 1) { return true; } seq = NULL; for (i = m_n_compose-1; i < table->max_seq_len; i++) { row_stride = i + 1; if (seq_index[i+1] - seq_index[i] > 0) { seq = (const quint32 *) bsearch (m_compose_buffer + 1, table->data + seq_index[i], (seq_index[i+1] - seq_index[i]) / row_stride, sizeof (quint32) * row_stride, compare_seq); if (seq) { if (i == m_n_compose - 1) break; else { return true; } } } } if (!seq) { return false; } else { uint value; value = seq[row_stride - 1]; slotCommitText (new Text (QChar (value))); m_compose_buffer[0] = 0; m_n_compose = 0; return true; } return false; } #define IS_DEAD_KEY(k) \ ((k) >= Key_dead_grave && (k) <= (Key_dead_dasia+1)) quint32 ibus_keyval_to_unicode (uint keyval); bool IBusInputContext::checkAlgorithmically () { int i; UChar combination_buffer[IBUS_MAX_COMPOSE_LEN]; if (m_n_compose >= IBUS_MAX_COMPOSE_LEN) return false; for (i = 0; i < m_n_compose && IS_DEAD_KEY (m_compose_buffer[i]); i++); if (i == m_n_compose) return true; if (i > 0 && i == m_n_compose - 1) { combination_buffer[0] = ibus_keyval_to_unicode (m_compose_buffer[i]); combination_buffer[m_n_compose] = 0; i--; while (i >= 0) { switch (m_compose_buffer[i]) { #define CASE(keysym, unicode) \ case Key_dead_##keysym: combination_buffer[i + 1] = unicode; break CASE (grave, 0x0300); CASE (acute, 0x0301); CASE (circumflex, 0x0302); CASE (tilde, 0x0303); /* Also used with perispomeni, 0x342. */ CASE (macron, 0x0304); CASE (breve, 0x0306); CASE (abovedot, 0x0307); CASE (diaeresis, 0x0308); CASE (hook, 0x0309); CASE (abovering, 0x030A); CASE (doubleacute, 0x030B); CASE (caron, 0x030C); CASE (abovecomma, 0x0313); /* Equivalent to psili */ CASE (abovereversedcomma, 0x0314); /* Equivalent to dasia */ CASE (horn, 0x031B); /* Legacy use for psili, 0x313 (or 0x343). */ CASE (belowdot, 0x0323); CASE (cedilla, 0x0327); CASE (ogonek, 0x0328); /* Legacy use for dasia, 0x314.*/ CASE (iota, 0x0345); CASE (voiced_sound, 0x3099); /* Per Markus Kuhn keysyms.txt file. */ CASE (semivoiced_sound, 0x309A); /* Per Markus Kuhn keysyms.txt file. */ /* The following cases are to be removed once xkeyboard-config, * xorg are fully updated. **/ /* Workaround for typo in 1.4.x xserver-xorg */ case 0xfe66: combination_buffer[i + 1] = 0x314; break; /* CASE (dasia, 0x314); */ /* CASE (perispomeni, 0x342); */ /* CASE (psili, 0x343); */ #undef CASE default: combination_buffer[i + 1] = ibus_keyval_to_unicode (m_compose_buffer[i]); } i--; } /* If the buffer normalizes to a single character, * then modify the order of combination_buffer accordingly, if necessary, * and return TRUE. **/ #if 0 if (check_normalize_nfc (combination_buffer, m_n_compose)) { gunichar value; combination_utf8 = g_ucs4_to_utf8 (combination_buffer, -1, NULL, NULL, NULL); nfc = g_utf8_normalize (combination_utf8, -1, G_NORMALIZE_NFC); value = g_utf8_get_char (nfc); gtk_im_context_simple_commit_char (GTK_IM_CONTEXT (context_simple), value); context_simple->compose_buffer[0] = 0; g_free (combination_utf8); g_free (nfc); return TRUE; } #endif UErrorCode state = U_ZERO_ERROR; UChar result[IBUS_MAX_COMPOSE_LEN + 1]; i = unorm_normalize (combination_buffer, m_n_compose, UNORM_NFC, 0, result, IBUS_MAX_COMPOSE_LEN + 1, &state); // qDebug () << "combination_buffer = " << QString::fromUtf16(combination_buffer) << "m_n_compose" << m_n_compose; // qDebug () << "result = " << QString::fromUtf16(result) << "i = " << i << state; if (i == 1) { slotCommitText (new Text (QChar (result[0]))); m_compose_buffer[0] = 0; m_n_compose = 0; return true; } } return false; } #endif void IBusInputContext::createInputContext (void) { if (!m_context.isNull ()) { deleteInputContext (); } if (!m_bus->isConnected ()) { qDebug () << "IBusInputContext::createInputContext:" << "no connection to ibus-daemon"; return; } m_context = InputContext::create (m_bus, "Qt"); if (m_context.isNull ()) { qWarning () << "IBusInputContext::createInputContext:" << "create input context failed"; return; } /* set capabilities */ m_context->setCapabilities (m_caps); connect (m_context, SIGNAL (commitText (const TextPointer &)), this, SLOT (slotCommitText (const TextPointer &))); connect (m_context, SIGNAL (updatePreeditText (const TextPointer &, uint, bool)), this, SLOT (slotUpdatePreeditText (const TextPointer &, uint, bool))); connect (m_context, SIGNAL (showPreeditText (void)), this, SLOT (slotShowPreeditText (void))); connect (m_context, SIGNAL (hidePreeditText (void)), this, SLOT (slotHidePreeditText (void))); connect (m_context, SIGNAL (deleteSurroundingText (int, uint)), this, SLOT (slotDeleteSurroundingText (int, uint))); connect (m_context, SIGNAL (requireSurroundingText (void)), this, SLOT (slotRequireSurroundingText (void))); if (m_has_focus) { m_context->focusIn (); } } void IBusInputContext::deleteInputContext (void) { /* release context */ m_context = NULL; } void IBusInputContext::slotCommitText (const TextPointer &text) { if (text.isNull ()) { qWarning () << "IBusInputContext::commitText:" << "text == null"; return; } QInputMethodEvent event; event.setCommitString (text->text ()); sendEvent (event); update (); } static bool sortSegments (const AttributePointer &attr_a, const AttributePointer &attr_b) { return attr_a->start () < attr_b->start (); } /* * KateViewInternal::inputMethodEvent() in kdelibs doesn't support the * duplicated format ranges. * This function separates each AttributePointer with the minimum size. * E.g. * attrs[i = 0]: [0 8] * attrs[j = 1]: [6 10] * attrs[j = 2]: [4 8] * If i == 0, the default min_end == 8 == attr_i->start () + attr_i->length () * If j == 1, the min_end becomes 6 == attr_j->start () * but it's not the minimum min_end yet. * If j == 2, the min_end becomes 4 == attr_j->start () * Now min_end gets the minimum min_end. * After checks the min_end between j = 0 to attrs.size(), * attr_i gets the minimum min_end. * Let's split attr_i's range [0 8] with [0 4] and [4 8] * and then * attrs[i = 0]: [0 4] * attrs[i = 1]: [4 8] * attrs[j = 2]: [6 10] * attrs[j = 3]: [4 8] * increment i = i + 1 == 1 and apply the same split. * after split all attrs with the minimum rages, sort the attrs with * the attr->start() so that same range formats can be consolidated into * one format in IBusInputContext::displayPreeditText(). */ static inline void sortAttrs (QList &attrs) { for (int i = 0; i < attrs.size (); i++) { AttributePointer attr_i = attrs[i]; uint min_end = attr_i->start () + attr_i->length (); for (int j = 0; j < attrs.size (); j++) { if (i == j) { continue; } AttributePointer attr_j = attrs[j]; if (attr_i->start () < attr_j->start () && attr_j->start () < min_end) { min_end = attr_j->start (); } if (attr_i->start () < attr_j->start () + attr_j->length () && attr_j->start () + attr_j->length () < min_end) { min_end = attr_j->start () + attr_j->length (); } } if (min_end == attr_i->start () + attr_i->length ()) { continue; } attrs.removeAt (i); int n = i; AttributePointer attr1 = new Attribute (attr_i->type (), attr_i->value (), attr_i->start (), min_end); attrs.insert (n++, attr1); AttributePointer attr2 = new Attribute (attr_i->type (), attr_i->value (), min_end, attr_i->end ()); attrs.insert (n++, attr2); } qSort (attrs.begin (), attrs.end (), sortSegments); } void IBusInputContext::displayPreeditText (const TextPointer &text, uint cursor_pos, bool visible) { QList attrs_sortable; QList qattrs; QString string; if (visible) { // append cursor pos qattrs.append (QAttribute (QInputMethodEvent::Cursor, cursor_pos, true, 0)); AttrListPointer attrs = text->attrs (); for (uint i = 0; i < attrs->size (); i++) { AttributePointer attr = attrs->get (i); attrs_sortable.append (attr); } sortAttrs (attrs_sortable); for (int i = 0; i < attrs_sortable.size (); i++) { QTextCharFormat format; AttributePointer attr = attrs_sortable[i]; int size = qattrs.size (); // The first index 0 is used by QInputMethodEvent::Cursor above. const int first_index = 1; if (size > first_index) { QAttribute qattr = qattrs[size - 1]; if(qattr.start == (int) attr->start () && qattr.length == (int) attr->length ()) { format = qvariant_cast (qattr.value).toCharFormat (); } } switch (attr->type ()) { case Attribute::TypeUnderline: switch (attr->value ()) { case Attribute::UnderlineNone: format.setUnderlineStyle (QTextCharFormat::NoUnderline); break; case Attribute::UnderlineError: format.setUnderlineStyle (QTextCharFormat::WaveUnderline); break; case Attribute::UnderlineSingle: case Attribute::UnderlineLow: case Attribute::UnderlineDouble: default: format.setUnderlineStyle (QTextCharFormat::SingleUnderline); break; } break; case Attribute::TypeForeground: format.setForeground (QBrush (QColor (attr->value ()))); break; case Attribute::TypeBackground: format.setBackground (QBrush (QColor (attr->value ()))); break; default: qWarning () << "IBusInputContext::displayPreeditText:" << "unknow Attribute type" << attr->type (); continue; } if (size > first_index) { QAttribute qattr = qattrs[size - 1]; if(qattr.start == (int) attr->start () && qattr.length == (int) attr->length()) { qattrs.removeAt (size - 1); } } qattrs.append (QAttribute (QInputMethodEvent::TextFormat, attr->start (), attr->length (), QVariant (format))); } QInputMethodEvent event (text->text (), qattrs); sendEvent (event); } else { qattrs.append (QAttribute (QInputMethodEvent::Cursor, 0, true, 0)); QInputMethodEvent event ("", qattrs); sendEvent (event); } update (); } void IBusInputContext::slotUpdatePreeditText (const TextPointer &text, uint cursor_pos, bool visible) { // set visible to false, if text is empty visible = visible && !text->text ().isEmpty (); // set cursor at end, if pos is greater than the text length if (cursor_pos > (uint)text->text ().length ()) cursor_pos = text->text ().length (); bool update = (m_preedit_visible != visible) || visible; m_preedit = text; m_preedit_visible = visible; m_preedit_cursor_pos = cursor_pos; if (update) { displayPreeditText (m_preedit, m_preedit_cursor_pos, visible); } } void IBusInputContext::slotShowPreeditText (void) { if (m_preedit_visible) return; m_preedit_visible = true; displayPreeditText (m_preedit, m_preedit_cursor_pos, m_preedit_visible); } void IBusInputContext::slotHidePreeditText (void) { if (!m_preedit_visible) return; m_preedit_visible = false; displayPreeditText (m_preedit, m_preedit_cursor_pos, m_preedit_visible); } void IBusInputContext::slotConnected (void) { displayPreeditText (m_preedit, m_preedit_cursor_pos, false); createInputContext (); } void IBusInputContext::slotDisconnected (void) { displayPreeditText (m_preedit, m_preedit_cursor_pos, false); deleteInputContext (); } void IBusInputContext::slotDeleteSurroundingText (int offset, uint nchars) { QWidget *widget = focusWidget(); if (widget == NULL) return; int cursor = widget->inputMethodQuery(Qt::ImCursorPosition).toInt(); cursor += offset; if (cursor < 0) { offset -= cursor; nchars += cursor; } QInputMethodEvent event; event.setCommitString ("", offset, nchars); sendEvent (event); update (); } void IBusInputContext::slotRequireSurroundingText (void) { m_needs_surrounding_text = true; update(); } ibus-qt-1.3.3-Source/cmake/FindICU.cmake000664 001750 001750 00000002076 12325431066 021404 0ustar00tfujiwartfujiwar000000 000000 find_program(ICU_CONFIG_EXECUTABLE NAMES icu-config DOC "icu-config executable") mark_as_advanced(ICU_CONFIG_EXECUTABLE) if(ICU_CONFIG_EXECUTABLE) set(ICU_FOUND "YES") else(ICU_CONFIG_EXECUTABLE) set(ICU_FOUND "NO") # if(ICU_FIND_REQUIRED) # message(FATAL_ERROR "Could not find icu") # endif(ICU_FIND_REQUIRED) endif(ICU_CONFIG_EXECUTABLE) if(ICU_FOUND) # get include dirs exec_program("${ICU_CONFIG_EXECUTABLE} --cppflags-searchpath|sed s/^-I//" OUTPUT_VARIABLE ICU_INCLUDE_DIRS RETURN_VALUE ERROR_CODE ) separate_arguments(ICU_INCLUDE_DIRS) # get libraries exec_program("${ICU_CONFIG_EXECUTABLE} --ldflags-searchpath" OUTPUT_VARIABLE ICU_LIBRARY_DIRS RETURN_VALUE ERROR_CODE ) separate_arguments(ICU_LIBRARY_DIRS) exec_program("${ICU_CONFIG_EXECUTABLE} --ldflags-libsonly" OUTPUT_VARIABLE ICU_LIBRARIES RETURN_VALUE ERROR_CODE ) separate_arguments(ICU_LIBRARIES) endif(ICU_FOUND) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(ICU DEFAULT_MSG ICU_LIBRARIES ICU_LIBRARY_DIRS ICU_INCLUDE_DIRS) ibus-qt-1.3.3-Source/README000664 001750 001750 00000000105 12325431066 016750 0ustar00tfujiwartfujiwar000000 000000 ibus-qt It includes ibus qt library and ibus qt input method plugin. ibus-qt-1.3.3-Source/ibus-qt.spec.in000664 001750 001750 00000003735 12325431066 020751 0ustar00tfujiwartfujiwar000000 000000 %define ibus_version 1.3.7 Name: @CPACK_PACKAGE_NAME@ Version: @CPACK_PACKAGE_VERSION@ Release: 1%{?dist} Summary: Qt IBus library and Qt input method plugin License: GPLv2+ Group: System Environment/Libraries URL: http://code.google.com/p/ibus/ Source0: http://ibus.googlecode.com/files/%{name}-%{version}-Source.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake BuildRequires: qt-devel >= 4.5 BuildRequires: dbus-devel >= 1.2 BuildRequires: ibus-devel >= %ibus_version BuildRequires: libicu-devel >= 4.0 BuildRequires: doxygen >= 1.6 Requires: ibus >= %ibus_version %description Qt IBus library and Qt input method plugin. %package devel Summary: Development tools for ibus qt Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel The ibus-qt-devel package contains the header files for ibus qt library. %package docs Summary: Development documents for ibus qt Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description docs The ibus-qt-docs package contains developer documentation for ibus qt library. %prep %setup -q -n %{name}-%{version}-Source %build %cmake \ -DCMAKE_INSTALL_PREFIX=%{_usr} \ -DLIBDIR=%{_libdir} make \ VERBOSE=1 \ C_DEFINES="$RPM_OPT_FLAGS" \ CXX_DEFINES="$RPM_OPT_FLAGS" \ %{?_smp_mflags} make docs %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT # %find_lang %{name} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %clean rm -rf $RPM_BUILD_ROOT %files # -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS README INSTALL %{_libdir}/libibus-qt.so.* %{_libdir}/qt4/plugins/inputmethods/libqtim-ibus.so %files devel %defattr(-,root,root,-) %{_includedir}/* %{_libdir}/libibus-qt.so %files docs %defattr(-,root,root,-) %doc docs/html %changelog * Mon Jul 27 2009 Peng Huang - @CPACK_PACKAGE_VERSION@-1 - The first version. ibus-qt-1.3.3-Source/COPYING000664 001750 001750 00000043103 12325431066 017130 0ustar00tfujiwartfujiwar000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. ibus-qt-1.3.3-Source/codereview.settings000664 001750 001750 00000000153 12325431066 022011 0ustar00tfujiwartfujiwar000000 000000 # This file is used by "git cl" to get code review information. CODE_REVIEW_SERVER: codereview.appspot.com ibus-qt-1.3.3-Source/TODO000664 001750 001750 00000000574 12325431066 016572 0ustar00tfujiwartfujiwar000000 000000 == data struct == IBusSerializable phuang 100% IBusText phuang 100% IBusAttribute liudl 100% IBusAttrList liudl 100% IBusProperty luoxs 100% IBusPropList luoxs 100% IBusLookupTable luoxs 100% IBusEngineDesc luoxs 100% IBusComponent luoxs 100% IBusEngine luoxs 80% ibus-qt-1.3.3-Source/debian/libibus-qt-dev.install000664 001750 001750 00000000072 12325431066 023534 0ustar00tfujiwartfujiwar000000 000000 debian/tmp/usr/include/* debian/tmp/usr/lib/libibus-qt.so ibus-qt-1.3.3-Source/debian/changelog000664 001750 001750 00000003415 12325431066 021173 0ustar00tfujiwartfujiwar000000 000000 ibus-qt (1.3.0-1) unstable; urgency=low * build for lucid. -- Peng Huang Fri, 16 Apr 2010 14:45:00 +0800 ibus-qt (1.3.0-1) unstable; urgency=low * New upstream release. * debian/control: bump standards version to 3.8.4. * debian/source/format: 3.0. * Fix "FTBFS with binutils-gold" (Closes: #554862) - debian/patches/binutils-gold: added. -- LI Daobing Sat, 10 Apr 2010 16:25:47 +0800 ibus-qt (1.2.0.20091217-1) unstable; urgency=low * New upstream release. * debian/control: - build depends on doxygen. * debian/clean: updated * debian/rules: update clean section. -- LI Daobing Thu, 17 Dec 2009 20:37:40 +0800 ibus-qt (1.2.0.20091206-1) unstable; urgency=low * New upstream release. -- LI Daobing Thu, 10 Dec 2009 19:28:40 +0800 ibus-qt (1.2.0.20091014-1) unstable; urgency=low * new upstream release. * debian/rules: updated. -- LI Daobing Wed, 14 Oct 2009 18:48:52 +0800 ibus-qt (1.2.0.20090822-2) unstable; urgency=low * split ibus-qt to libibus-qt, libibus-qt-dev, ibus-qt4 -- Asias He Fri, 28 Aug 2009 16:21:31 +0800 ibus-qt (1.2.0.20090822-1) unstable; urgency=low * new upstream release. - Fix "Composite key stops working" (Closes: #541784) * debian/control: - bump standards version to 3.8.3. - add libicu-dev, libibus-dev to build-depends. - change version of debhelper from 7.0.50 to 7 * debian/rules: - use debhelper 7. -- LI Daobing Mon, 24 Aug 2009 22:30:28 +0800 ibus-qt (1.2.0.20090728-1) unstable; urgency=low * Initial release (Closes: #539022) -- LI Daobing Tue, 28 Jul 2009 22:32:34 +0800 ibus-qt-1.3.3-Source/debian/ibus-qt4.install000664 001750 001750 00000000060 12325431066 022352 0ustar00tfujiwartfujiwar000000 000000 debian/tmp/usr/lib/qt4/* debian/tmp/usr/share/* ibus-qt-1.3.3-Source/debian/control000664 001750 001750 00000003346 12325431066 020727 0ustar00tfujiwartfujiwar000000 000000 Source: ibus-qt Section: utils Priority: optional Maintainer: LI Daobing Uploaders: Asias He Build-Depends: debhelper (>= 7), cmake, pkg-config, libqt4-dev, libdbus-1-dev, libx11-dev, libicu-dev, libibus-dev, doxygen Standards-Version: 3.8.4 Homepage: http://code.google.com/p/ibus Vcs-Bzr: lp:~lidaobing/ibus/ibus-qt Vcs-Browser: https://code.launchpad.net/~lidaobing/ibus/ibus-qt Package: ibus-qt4 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: qt-immodule for ibus (QT4) IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. It also may help developers to develop input method easily. . ibus-qt4 is the QT4 client of ibus, it provide a qt-immodule for ibus. Package: libibus-qt1 Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: qt-immodule for ibus (QT4) IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. It also may help developers to develop input method easily. . libibus-qt1 is the library of ibus-qt. Package: libibus-qt-dev Section: libdevel Architecture: any Depends: libibus-qt1 (= ${binary:Version}), libqt4-dev, libibus-dev, libdbus-1-dev, ${shlibs:Depends}, ${misc:Depends} Description: qt-immodule for ibus (QT4) IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. It also may help developers to develop input method easily. . This package contains the header files which is needed for developing the ibus-qt applications. ibus-qt-1.3.3-Source/debian/compat000664 001750 001750 00000000002 12325431066 020514 0ustar00tfujiwartfujiwar000000 000000 7 ibus-qt-1.3.3-Source/debian/rules000775 001750 001750 00000002370 12325431066 020400 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This has to be exported to make some magic below work. export DH_OPTIONS build: build-stamp build-stamp: dh_testdir cmake -DCMAKE_SKIP_RPATH=ON -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_INSTALL_PREFIX="/usr" . dh_auto_configure $(MAKE) touch $@ clean: dh_testdir dh_testroot dh_auto_clean dh_clean rm -f build-stamp [ ! -f Makefile ] || make clean || true rm -rf CMakeFiles/ src/CMakeFiles/ qtim/CMakeFiles/ test/CMakeFiles docs/CMakeFiles rm -f Makefile test/Makefile test/cmake_install.cmake rm -rf obj-*-linux-gnu install: build dh_testdir dh_testroot dh_prep dh_installdirs $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install dh_install --list-missing --fail-missing binary-indep: install # Build architecture independant packages using the common target. binary-arch: install dh_testdir -s dh_testroot -s dh_installchangelogs -s dh_installdocs -s dh_installman -s dh_link -s dh_strip -s dh_compress -s dh_fixperms -s dh_makeshlibs -Nibus-qt4 -s dh_installdeb -s dh_shlibdeps -s dh_gencontrol -s dh_md5sums -s dh_builddeb -s binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install \ install-indep install-arch ibus-qt-1.3.3-Source/debian/source/format000664 001750 001750 00000000014 12325431066 022024 0ustar00tfujiwartfujiwar000000 000000 3.0 (quilt) ibus-qt-1.3.3-Source/debian/clean000664 001750 001750 00000000440 12325431066 020321 0ustar00tfujiwartfujiwar000000 000000 src/libibus-qt.so qtim/libqtim-ibus.so CMakeCache.txt CPackConfig.cmake CPackSourceConfig.cmake Makefile cmake_install.cmake ibus-qt.spec install_manifest.txt qtim/Makefile qtim/cmake_install.cmake src/Makefile src/cmake_install.cmake docs/Doxyfile docs/Makefile docs/cmake_install.cmake ibus-qt-1.3.3-Source/debian/watch000664 001750 001750 00000000174 12325431066 020351 0ustar00tfujiwartfujiwar000000 000000 version=3 http://code.google.com/p/ibus/downloads/list \ http://ibus.googlecode.com/files/ibus-qt-([0-9].*)-Source\.tar\.gz ibus-qt-1.3.3-Source/debian/libibus-qt1.install000664 001750 001750 00000000045 12325431066 023041 0ustar00tfujiwartfujiwar000000 000000 debian/tmp/usr/lib/libibus-qt.so.1* ibus-qt-1.3.3-Source/debian/copyright000664 001750 001750 00000002427 12325431066 021256 0ustar00tfujiwartfujiwar000000 000000 This package was debianized by: LI Daobing on Tue, 28 Jul 2009 22:32:34 +0800 It was downloaded from: http://code.google.com/p/ibus Upstream Author: Huang Peng Copyright: Copyright (C) 2007-2008 Huang Peng License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. The Debian packaging is: Copyright (C) 2009 LI Daobing and is licensed under the same license as ibus-qt. ibus-qt-1.3.3-Source/debian/patches/binutils-gold000664 001750 001750 00000001704 12325431066 023446 0ustar00tfujiwartfujiwar000000 000000 Description: fix FTBFS with binutils-gold Author: LI Daobing Bug-Debian: http://bugs.debian.org/554862 Forwarded: http://code.google.com/p/ibus/issues/detail?id=853 Last-Update: 2010-04-10 --- ibus-qt-1.3.0.orig/CMakeLists.txt +++ ibus-qt-1.3.0/CMakeLists.txt @@ -67,7 +67,7 @@ configure_file(docs/Doxyfile.in docs/Dox find_package(X11 REQUIRED) # check qt -find_package(Qt4 4.5 COMPONENTS QtCore QtGui QtDBus REQUIRED) +find_package(Qt4 4.5 COMPONENTS QtCore QtGui QtDBus QtXml REQUIRED) include(${QT_USE_FILE}) # check dbus --- ibus-qt-1.3.0.orig/src/CMakeLists.txt +++ ibus-qt-1.3.0/src/CMakeLists.txt @@ -93,8 +93,10 @@ target_link_libraries( ibus-qt debug ${QT_QTCORE_LIBRARY_DEBUG} debug ${QT_QTDBUS_LIBRARY_DEBUG} + debug ${QT_QTXML_LIBRARY_DEBUG} optimized ${QT_QTCORE_LIBRARY_RELEASE} optimized ${QT_QTDBUS_LIBRARY_RELEASE} + optimized ${QT_QTXML_LIBRARY_RELEASE} ${DBUS_LIBRARIES} ) ibus-qt-1.3.3-Source/debian/patches/series000664 001750 001750 00000000016 12325431066 022157 0ustar00tfujiwartfujiwar000000 000000 binutils-gold ibus-qt-1.3.3-Source/docs/CMakeLists.txt000664 001750 001750 00000000124 12325431066 021561 0ustar00tfujiwartfujiwar000000 000000 add_custom_target(docs COMMAND ${DOXYGEN_EXECUTABLE} SOURCES Doxyfile ) ibus-qt-1.3.3-Source/docs/Doxyfile.in000664 001750 001750 00000176176 12325431066 021161 0ustar00tfujiwartfujiwar000000 000000 # Doxyfile 1.6.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = ibus-qt # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @CPACK_PACKAGE_VERSION@ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = /Users/dimitri/doxygen/mail/1.5.7/doxywizard/ # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it parses. # With this tag you can assign which parser to use for a given extension. # Doxygen has a built-in mapping, but you can override or extend it using this tag. # The format is ext=language, where ext is a file extension, and language is one of # the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, # Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), # use: inc=Fortran f=C. Note that for custom extensions you also need to set # FILE_PATTERNS otherwise the files are not read by doxygen. EXTENSION_MAPPING = # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen to replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penality. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by # doxygen. The layout file controls the global structure of the generated output files # in an output format independent way. The create the layout file that represents # doxygen's defaults, run doxygen with the -l option. You can optionally specify a # file name after the option, if omitted DoxygenLayout.xml will be used as the name # of the layout file. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ${CMAKE_SOURCE_DIR}/src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.cpp *.h # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = qibus*proxy.* \ qibus*adaptor.* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # If the HTML_TIMESTAMP tag is set to YES then the generated HTML # documentation will contain the timesstamp. HTML_TIMESTAMP = NO # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER # are set, an additional index file will be generated that can be used as input for # Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated # HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. # For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see # Qt Help Project / Custom Filters. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's # filter section matches. # Qt Help Project / Filter Attributes. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list. USE_INLINE_TREES = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # When the SEARCHENGINE tag is enable doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP) # there is already a search function so this one should typically # be disabled. SEARCHENGINE = YES #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES ibus-qt-1.3.3-Source/INSTALL000664 001750 001750 00000000327 12325431066 017127 0ustar00tfujiwartfujiwar000000 000000 # how to build mkdir build cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Wall" # -DLIBDIR=lib64 make VERBOSE=1 make install # DESTDIR= make docs # to create API document ibus-qt-1.3.3-Source/AUTHORS000664 001750 001750 00000000054 12325431066 017143 0ustar00tfujiwartfujiwar000000 000000 Peng Huang ibus-qt-1.3.3-Source/test/CMakeLists.txt000664 001750 001750 00000001300 12325431066 021605 0ustar00tfujiwartfujiwar000000 000000 include_directories( ${QT_QTCORE_INCLUDE_DIR} ${QT_QTDBUS_INCLUDE_DIR} ${DBUS_INCLUDE_DIRS} ${IBUS_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/../src ) link_directories( ${DBUS_LIBRARY_DIRS} ${ICU_LIBRARY_DIRS} ) set( demo_engine_SRCS qibusdemoengine.cpp main.cpp ) set( demo_engine_MOC_HDRS qibusdemoengine.h ) QT4_AUTOMOC(${demo_engine_SRCS}) QT4_WRAP_CPP( demo_engine_MOC_SRCS ${demo_engine_MOC_HDRS} ) add_executable( demo-engine ${demo_engine_SRCS} ${demo_engine_MOC_SRCS} ) target_link_libraries( demo-engine debug ${QT_QTGUI_LIBRARY_DEBUG} optimized ${QT_QTGUI_LIBRARY_RELEASE} ${ICU_LIBRARIES} ibus-qt ) ibus-qt-1.3.3-Source/test/qibusdemoengine.h000664 001750 001750 00000001267 12325431066 022410 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_HANGUL_ENGINE_H_ #define __Q_IBUS_HANGUL_ENGINE_H_ #include using namespace IBus; class DemoEngine : public Engine { Q_OBJECT public : Q_INVOKABLE DemoEngine (const QString &name); virtual ~DemoEngine (); private : void propertyActivate (const QString &prop_name, int prop_state); void closeLookupTable (); private : // virtual function bool processKeyEvent (uint keyval, uint keycode, uint state); private : QString m_context; // store keyboard input LookupTablePointer m_lookupTable; PropertyPointer m_prop; PropListPointer m_propList; TextPointer m_candicate; }; #endif ibus-qt-1.3.3-Source/test/moc_qibusdemoengine.cxx_parameters000664 001750 001750 00000000767 12325431136 026046 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/ibus-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/home/tfujiwar/tmp/a/test/../src -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/test/moc_qibusdemoengine.cxx /home/tfujiwar/tmp/a/test/qibusdemoengine.h ibus-qt-1.3.3-Source/test/main.cpp000664 001750 001750 00000005720 12325431066 020507 0ustar00tfujiwartfujiwar000000 000000 #include #include "qibusdemoengine.h" using namespace IBus; int main (int argc, char **argv) { QCoreApplication app (argc, argv); #if 0 ComponentPointer cmpt = new Component; if ( !newComponentFromFile(*cmpt, "component/m17n.xml") ) { qDebug () << "main::newComponentFromFile error!"; return -1; } Bus bus; if ( !bus.isConnected() ) { qDebug () << "main::bus is not connected!"; return -1; } EngineFactory *engineFactory = EngineFactory::getEngineFactory(bus.getConnection()); engineFactory->addMetaObject("kn:inscript", &(DemoEngine::staticMetaObject)); if ( !bus.registerObject ("/org/freedesktop/IBus/Factory", engineFactory) ) { qDebug () << "main::registerObject error!"; return -1; } if ( !bus.registerComponent(cmpt) ) { qDebug () << "main::registerComponent error!"; return -1; } #endif #if 0 ComponentPointer cmpt = new Component; if ( !newComponentFromFile(*cmpt, "component/hangul.xml") ) { qDebug () << "main::newComponentFromFile error!"; return -1; } Bus bus; if ( !bus.isConnected() ) { qDebug () << "main::bus is not connected!"; return -1; } EngineFactory *engineFactory = EngineFactory::getEngineFactory(bus.getConnection()); engineFactory->addMetaObject("hangul", &(DemoEngine::staticMetaObject)); if ( !bus.registerObject ("/org/freedesktop/IBus/Factory", engineFactory) ) { qDebug () << "main::registerObject error!"; return -1; } if ( !bus.registerComponent(cmpt) ) { qDebug () << "main::registerComponent error!"; return -1; } #endif #if 1 ComponentPointer cmpt = new Component("org.freedesktop.IBus.Qt.DemoEngine", "Qt Demo Engine", "0.1.0", "GPL", "Peng Huang ", "http://code.google.com/p/ibus/", "", "ibus-qt"); EngineDescPointer engine = new EngineDesc("qtdemo", "Qt Demo Input Method", "Qt Demo Input Method", "en", "GPL", "Peng Huang ", "ibus", "us"); cmpt->addEngine(engine); QString stream; cmpt->output(stream); qDebug () << stream; Bus bus; if ( !bus.isConnected() ) { qDebug () << "bus is not connected!"; return -1; } EngineFactory *engineFactory = EngineFactory::getEngineFactory(bus.getConnection()); engineFactory->addMetaObject("qtdemo", &(DemoEngine::staticMetaObject)); bus.registerObject ("/org/freedesktop/IBus/Factory", engineFactory); if ( !bus.registerComponent(cmpt) ) { qDebug () << "registerComponent error!"; return -1; } #endif return QCoreApplication::exec (); } ibus-qt-1.3.3-Source/test/qibusdemoengine.cpp000664 001750 001750 00000014641 12325431066 022743 0ustar00tfujiwartfujiwar000000 000000 #include "qibusdemoengine.h" #include DemoEngine::DemoEngine (const QString &name) : Engine(name) { m_lookupTable = NULL; m_candicate = NULL; } DemoEngine::~DemoEngine () {} void DemoEngine::closeLookupTable () { m_lookupTable->clean (); hidePreeditText (); hideAuxiliaryText (); hideLookupTable (); } // follows are virtual functions void DemoEngine::propertyActivate (const QString &prop_name, int prop_state) { qDebug () << "Activate"; TextPointer tooltip = new Text ("toggle to english"); TextPointer label = new Text ("setup"); PropertyPointer prop = new Property ("setup", "/home/doyle/IME/ibus-pinyin/icons/english.svg", label, tooltip, true, true, TypeNormal, 0, NULL); updateProperty (prop); } bool DemoEngine::processKeyEvent (uint keyval, uint keycode, uint modifiers) { if (modifiers & ReleaseMask) { return false; } uint indexOfcandidate = 0; TextPointer tooltip = NULL; TextPointer label = NULL; PropListPointer props = NULL; PropertyPointer prop = NULL; TextPointer attributeText = NULL; switch (keyval) { case Key_a : /* attributeText = new Text ("Apple"); attributeText->appendAttribute (Attribute::TypeUnderline, Attribute::UnderlineLow, 0, -1); attributeText->appendAttribute (Attribute::TypeForeground, 0xff0000, 0, -1); updatePreeditText (attributeText, 0, TRUE); break; */ case Key_b : attributeText = new Text ("Banana"); attributeText->appendAttribute (Attribute::TypeUnderline, Attribute::UnderlineSingle, 0, -1); attributeText->appendAttribute (Attribute::TypeBackground, 0xff0000, 0, -1); updatePreeditText (attributeText, 0, TRUE); break; case Key_c : updateAuxiliaryText (new Text ("CCCCC"), TRUE); break; case Key_p : label = new Text ("setup"); tooltip = new Text ("toggle to english"); prop = new Property ("setup", "/home/doyle/IME/ibus-pinyin/icons/chinese.svg", label, tooltip, true, true, TypeNormal, 0, NULL); props = new PropList (); props->appendProperty (prop); registerProperties (props); break; case Key_d : { m_lookupTable = new LookupTable (true, true, 5, 0); m_lookupTable->appendLabel (new Text ("1")); m_lookupTable->appendLabel (new Text ("2")); m_lookupTable->appendLabel (new Text ("3")); m_lookupTable->appendLabel (new Text ("4")); m_lookupTable->appendLabel (new Text ("5")); attributeText = new Text("ibus"); attributeText->appendAttribute (Attribute::TypeForeground, 0xff0000, 0, -1); m_lookupTable->appendCandidate (attributeText); m_lookupTable->appendCandidate (new Text ("wubi")); m_lookupTable->appendCandidate (new Text ("chewing")); m_lookupTable->appendCandidate (new Text ("IBM")); m_lookupTable->appendCandidate (new Text ("Yahoo")); m_lookupTable->appendCandidate (new Text ("dbus")); m_lookupTable->appendCandidate (new Text ("redhat")); m_lookupTable->appendCandidate (new Text ("bupt")); m_lookupTable->appendCandidate (new Text ("smth")); m_lookupTable->appendCandidate (new Text ("sogou")); m_lookupTable->appendCandidate (new Text ("google")); m_lookupTable->appendCandidate (new Text ("ziguang")); updateLookupTable (m_lookupTable, true); break; } case Key_e : commitText (new Text("commitText")); break; case Key_j : PageDownLookupTable (); break; case Key_k : PageUpLookupTable (); break; case Key_h : CursorUpLookupTable (); break; case Key_l : CursorDownLookupTable (); break; case Key_Up : m_lookupTable->cursorUp(); updateLookupTable (m_lookupTable, true); break; case Key_Down : m_lookupTable->cursorDown(); updateLookupTable (m_lookupTable, true); break; case Key_Left : m_lookupTable->cursorUp(); updateLookupTable (m_lookupTable, true); break; case Key_Right : m_lookupTable->cursorDown(); updateLookupTable (m_lookupTable, true); break; case Key_Page_Up : m_lookupTable->pageUp (); updateLookupTable (m_lookupTable, true); break; case Key_Page_Down : m_lookupTable->pageDown (); updateLookupTable (m_lookupTable, true); break; case Key_s : showLookupTable (); break; case Key_g : hideLookupTable (); break; case Key_i : hidePreeditText (); break; case Key_m : hideAuxiliaryText (); break; case Key_n : break; case Key_Escape : closeLookupTable (); case Key_1 : case Key_2 : case Key_3 : case Key_4 : case Key_5 : case Key_6 : case Key_7 : case Key_8 : case Key_9 : indexOfcandidate = keyval - 49; if ( m_lookupTable->candidate(0) != NULL ) { if ( (m_candicate = m_lookupTable->candidate(indexOfcandidate)) != NULL ) { commitText (m_candicate); closeLookupTable (); } break; } commitText (new Text (static_cast(keyval))); break; default: qDebug () << "Unknown key input!"; return false; } return true; } ibus-qt-1.3.3-Source/src/moc_qibusinputcontext.cxx_parameters000664 001750 001750 00000000610 12325431136 026273 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusinputcontext.cxx /home/tfujiwar/tmp/a/src/qibusinputcontext.h ibus-qt-1.3.3-Source/src/qibusobject.h000664 001750 001750 00000002005 12325431066 021343 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_OBJECT_H__ #define __Q_IBUS_OBJECT_H__ #include #include #include "qibuspointer.h" #ifdef QT_USE_NAMESPACE # undef QT_USE_NAMESPACE # define QT_USE_NAMESPACE IBus #endif namespace IBus { class Object; typedef Pointer ObjectPointer; class Object : public QObject { Q_OBJECT template friend class Pointer; public: // Q_INVOKABLE Object () : m_referenced (false), m_refcount(1) {} Object () : m_referenced (false), m_refcount(1) {} virtual ~Object (); virtual void destroy (); private: Object * ref () { if (m_referenced) { m_refcount.ref (); } else { m_referenced = true; } return this; } void unref () { if (! m_refcount.deref ()) { delete this; } } bool is_referenced () const { return m_referenced; } bool m_referenced; QAtomicInt m_refcount; }; }; Q_DECLARE_METATYPE(IBus::ObjectPointer) #endif ibus-qt-1.3.3-Source/src/qibusobject.cpp000664 001750 001750 00000000563 12325431066 021705 0ustar00tfujiwartfujiwar000000 000000 #include #include "qibusobject.h" namespace IBus { /** * @brief Destructor of Object * * @return */ Object::~Object () { if (m_referenced && m_refcount != 0) { qWarning () << "Object::~Object:" << "Delete an object with refcount != 0"; } } /** * @brief Destroy the object * * @return */ void Object::destroy () { delete this; } }; ibus-qt-1.3.3-Source/src/qibusconfig.cpp000664 001750 001750 00000002774 12325431066 021712 0ustar00tfujiwartfujiwar000000 000000 #include #include "qibusconfigproxy.h" #include "qibusconfig.h" namespace IBus { Config::Config (const QDBusConnection &conn): m_conn(conn) { QString service = "org.freedesktop.IBus.Config"; QString path = "/org/freedesktop/IBus/Config"; m_config = new IBusConfigProxy(service, path, m_conn); if ( !m_config ) { qDebug () << "Config::Config, new IBusConfigAdaptor error!"; } } Config::~Config () { if ( m_config ) { delete m_config; m_config = NULL; } } bool Config::getValue (const QString §ion, const QString &name) { QDBusPendingReply<> reply = m_config->GetValue(section, name); reply.waitForFinished (); if (reply.isError ()) { qDebug () << "Config::getValue:" << reply.error (); return false; } return true; } bool Config::setValue (const QString §ion, const QString &name, const QDBusVariant &value) { QDBusPendingReply<> reply = m_config->SetValue(section, name, value); reply.waitForFinished (); if (reply.isError ()) { qDebug () << "Config::setValue:" << reply.error (); return false; } return true; } bool Config::unset (const QString §ion, const QString &name) { QDBusPendingReply<> reply = m_config->Unset(section, name); reply.waitForFinished (); if (reply.isError ()) { qDebug () << "Config::unset:" << reply.error (); return false; } return true; } void Config::destroy (void) { m_config->Destroy(); } }; ibus-qt-1.3.3-Source/src/CMakeLists.txt000664 001750 001750 00000004550 12325431066 021427 0ustar00tfujiwartfujiwar000000 000000 include_directories( ${QT_QTCORE_INCLUDE_DIR} ${QT_QTDBUS_INCLUDE_DIR} ${DBUS_INCLUDE_DIRS} ) link_directories( ${DBUS_LIBRARY_DIRS} ) set( ibus_qt_SRCS qibusobject.cpp qibusserializable.cpp qibusattribute.cpp qibusattrlist.cpp qibusproperty.cpp qibusproplist.cpp qibustext.cpp qibuslookuptable.cpp qibusenginedesc.cpp qibuscomponent.cpp qibusibusproxy.cpp qibusdbusproxy.cpp qibusinputcontextproxy.cpp qibusbus.cpp qibusinputcontext.cpp qibusobservedpath.cpp qibusengineadaptor.cpp qibusengine.cpp qibusfactoryadaptor.cpp qibusenginefactory.cpp qibusconfigadaptor.cpp qibusconfigproxy.cpp qibusconfigservice.cpp qibusconfig.cpp ) set( ibus_qt_HDRS qibusobject.h qibusserializable.h qibusattribute.h qibusattrlist.h qibusproperty.h qibusproplist.h qibustext.h qibuslookuptable.h qibusenginedesc.h qibuscomponent.h qibusibusproxy.h qibusdbusproxy.h qibusinputcontextproxy.h qibusbus.h qibusinputcontext.h qibusobservedpath.h qibusengineadaptor.h qibusengine.h qibusfactoryadaptor.h qibusenginefactory.h qibusconfigadaptor.h qibusconfigproxy.h qibusconfigservice.h qibusconfig.h ) # QT4_ADD_DBUS_INTERFACE( # ibus_qt_SRCS # ${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.freedesktop.IBus.xml # basename # ) # # QT4_AUTOMOC(${ibus_qt_SRCS}) QT4_WRAP_CPP( ibus_qt_MOC_SRCS ${ibus_qt_HDRS} ) add_library( ibus-qt SHARED ${ibus_qt_SRCS} ${ibus_qt_MOC_SRCS} ) set_target_properties( ibus-qt PROPERTIES VERSION ${LIB_VERSION} SOVERSION ${LIB_SOVERSION} ) target_link_libraries( ibus-qt debug ${QT_QTCORE_LIBRARY_DEBUG} debug ${QT_QTGUI_LIBRARY_DEBUG} debug ${QT_QTDBUS_LIBRARY_DEBUG} debug ${QT_QTXML_LIBRARY_DEBUG} optimized ${QT_QTCORE_LIBRARY_RELEASE} optimized ${QT_QTGUI_LIBRARY_RELEASE} optimized ${QT_QTDBUS_LIBRARY_RELEASE} optimized ${QT_QTXML_LIBRARY_RELEASE} ${DBUS_LIBRARIES} ${X11_LIBRARIES} ) install(TARGETS ibus-qt LIBRARY DESTINATION ${LIBDIR}) install(FILES ${ibus_qt_HDRS} DESTINATION include/ibus-qt COMPONENT Devel) add_executable( ibus-test ibus.cpp ) target_link_libraries( ibus-test ibus-qt ) # install(TARGETS ibus-test # RUNTIME DESTINATION bin) ibus-qt-1.3.3-Source/src/moc_qibusconfigadaptor.cxx_parameters000664 001750 001750 00000000612 12325431136 026351 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusconfigadaptor.cxx /home/tfujiwar/tmp/a/src/qibusconfigadaptor.h ibus-qt-1.3.3-Source/src/qibusconfig.h000664 001750 001750 00000001240 12325431066 021342 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_CONFIG_H_ #define __Q_IBUS_CONFIG_H_ #include #include #include "qibusobject.h" class IBusConfigProxy; namespace IBus { class Config : public QObject { Q_OBJECT public : Config (const QDBusConnection &conn); virtual ~Config (); public : bool getValue (const QString §ion, const QString &name); // need to process return value; bool setValue (const QString §ion, const QString &name, const QDBusVariant &value); bool unset (const QString §ion, const QString &name); void destroy (void); private : QDBusConnection m_conn; IBusConfigProxy *m_config; }; }; #endif ibus-qt-1.3.3-Source/src/moc_qibusengineadaptor.cxx_parameters000664 001750 001750 00000000612 12325431136 026351 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusengineadaptor.cxx /home/tfujiwar/tmp/a/src/qibusengineadaptor.h ibus-qt-1.3.3-Source/src/qibusibusproxy.h000664 001750 001750 00000005323 12325431066 022147 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -p qibusibusproxy -c IBusProxy -v org.freedesktop.IBus.xml org.freedesktop.IBus * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef QIBUSIBUSPROXY_H_1268725630 #define QIBUSIBUSPROXY_H_1268725630 #include #include #include #include #include #include #include #include /* * Proxy class for interface org.freedesktop.IBus */ class IBusProxy: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.freedesktop.IBus"; } public: IBusProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); ~IBusProxy(); public Q_SLOTS: // METHODS inline QDBusPendingReply CreateInputContext(const QString &name) { QList argumentList; argumentList << qVariantFromValue(name); return asyncCallWithArgumentList(QLatin1String("CreateInputContext"), argumentList); } inline QDBusPendingReply<> Exit(bool restart) { QList argumentList; argumentList << qVariantFromValue(restart); return asyncCallWithArgumentList(QLatin1String("Exit"), argumentList); } inline QDBusPendingReply GetAddress() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("GetAddress"), argumentList); } inline QDBusPendingReply ListActiveEngines() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("ListActiveEngines"), argumentList); } inline QDBusPendingReply ListEngines() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("ListEngines"), argumentList); } inline QDBusPendingReply Ping(const QDBusVariant &data) { QList argumentList; argumentList << qVariantFromValue(data); return asyncCallWithArgumentList(QLatin1String("Ping"), argumentList); } inline QDBusPendingReply<> RegisterComponent(const QDBusVariant &components) { QList argumentList; argumentList << qVariantFromValue(components); return asyncCallWithArgumentList(QLatin1String("RegisterComponent"), argumentList); } Q_SIGNALS: // SIGNALS }; namespace org { namespace freedesktop { typedef ::IBusProxy IBus; } } #endif ibus-qt-1.3.3-Source/src/moc_qibusconfigproxy.cxx_parameters000664 001750 001750 00000000606 12325431136 026103 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusconfigproxy.cxx /home/tfujiwar/tmp/a/src/qibusconfigproxy.h ibus-qt-1.3.3-Source/src/moc_qibusbus.cxx_parameters000664 001750 001750 00000000566 12325431136 024332 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusbus.cxx /home/tfujiwar/tmp/a/src/qibusbus.h ibus-qt-1.3.3-Source/src/qibusenginedesc.cpp000664 001750 001750 00000006762 12325431066 022552 0ustar00tfujiwartfujiwar000000 000000 #include "qibusenginedesc.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(EngineDesc, IBusEngineDesc); bool EngineDesc::serialize (QDBusArgument &argument) { if (!Serializable::serialize (argument)) return false; argument << m_name; argument << m_longname; argument << m_description; argument << m_language; argument << m_license; argument << m_author; argument << m_icon; argument << m_layout; argument << m_hotkeys; argument << m_rank; return true; } bool EngineDesc::deserialize (const QDBusArgument &argument) { if (!Serializable::deserialize (argument)) return false; argument >> m_name; argument >> m_longname; argument >> m_description; argument >> m_language; argument >> m_license; argument >> m_author; argument >> m_icon; argument >> m_layout; argument >> m_hotkeys; argument >> m_rank; return true; } // generate xml stream via QT-lib void EngineDesc::output (QString & output) const { QXmlStreamWriter stream(&output); stream.setAutoFormatting(true); stream.writeStartElement("engine"); stream.writeTextElement("name", m_name); stream.writeTextElement("longname", m_longname); stream.writeTextElement("description", m_description); stream.writeTextElement("language", m_language); stream.writeTextElement("license", m_license); stream.writeTextElement("author", m_author); stream.writeTextElement("icon", m_icon); stream.writeTextElement("layout", m_layout); stream.writeTextElement("hotkeys", m_hotkeys); QString stringRank; stringRank = stringRank.number(m_rank); stream.writeTextElement("rank", stringRank); stream.writeEndElement(); } bool EngineDesc::parseXmlNode (const QDomNode & node) { if ( node.nodeName().compare("engine") ) { return false; } bool errFlag = false; QDomNode child = node.firstChild(); for ( ; !child.isNull() ; child = child.nextSibling() ) { if ( !child.nodeName().compare("name") ) { m_name = child.toElement().text(); } else if ( !child.nodeName().compare("longname") ) { m_longname = child.toElement().text(); } else if ( !child.nodeName().compare("description") ) { m_description = child.toElement().text(); } else if ( !child.nodeName().compare("language") ) { m_language = child.toElement().text(); } else if ( !child.nodeName().compare("license") ) { m_license = child.toElement().text(); } else if ( !child.nodeName().compare("author") ) { m_author = child.toElement().text(); } else if ( !child.nodeName().compare("icon") ) { m_icon = child.toElement().text(); } else if ( !child.nodeName().compare("layout") ) { m_layout = child.toElement().text(); } else if ( !child.nodeName().compare("hotkeys") ) { m_hotkeys = child.toElement().text(); } else if ( !child.nodeName().compare("rank") ) { m_rank = child.toElement().text().toUInt(); } else { QString s; QXmlStreamWriter stream(&s); stream.writeTextElement(child.nodeName(), child.toElement().text()); qDebug() << "EngineDesc::parseXmlNode, Unknown element, \"<" << s << "\""; errFlag = true; break; } } if ( errFlag ) { return false; } return true; } }; ibus-qt-1.3.3-Source/src/qibusattribute.cpp000664 001750 001750 00000001142 12325431066 022434 0ustar00tfujiwartfujiwar000000 000000 #include "qibusattribute.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(Attribute, IBusAttribute); bool Attribute::serialize (QDBusArgument &argument) { if (!Serializable::serialize (argument)) { return false; } argument << m_type; argument << m_value; argument << m_start; argument << m_end; return true; } bool Attribute::deserialize (const QDBusArgument &argument) { if (!Serializable::deserialize (argument)) { return false; } argument >> m_type; argument >> m_value; argument >> m_start; argument >> m_end; return true; } }; ibus-qt-1.3.3-Source/src/moc_qibusconfigservice.cxx_parameters000664 001750 001750 00000000612 12325431136 026357 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusconfigservice.cxx /home/tfujiwar/tmp/a/src/qibusconfigservice.h ibus-qt-1.3.3-Source/src/qibusenginefactory.h000664 001750 001750 00000002011 12325431066 022727 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_FACTORY_ADAPTOR_H_ #define __Q_IBUS_FACTORY_ADAPTOR_H_ #include #include #include #include "qibusobject.h" class IBusFactoryAdaptor; namespace IBus { class Engine; typedef Pointer EnginePointer; class EngineFactory : public Object { Q_OBJECT; private : Q_INVOKABLE EngineFactory (const QDBusConnection &conn, uint id = 0); ~EngineFactory (); public: void addMetaObject (const QString &name, const QMetaObject *metaObject); static EngineFactory *getEngineFactory (const QDBusConnection &conn); protected: virtual QString createEngine (const QString &name); private Q_SLOTS: Q_INVOKABLE QDBusObjectPath CreateEngine (const QString &name); Q_INVOKABLE void Destroy (); private : uint m_id; QDBusConnection m_conn; QMap m_engineMap; QLinkedList m_engineLList; IBusFactoryAdaptor *m_factoryAdaptor; static EngineFactory *m_factory; }; }; #endif ibus-qt-1.3.3-Source/src/moc_qibusenginedesc.cxx_parameters000664 001750 001750 00000000604 12325431136 025636 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusenginedesc.cxx /home/tfujiwar/tmp/a/src/qibusenginedesc.h ibus-qt-1.3.3-Source/src/moc_qibusinputcontextproxy.cxx_parameters000664 001750 001750 00000000622 12325431136 027400 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusinputcontextproxy.cxx /home/tfujiwar/tmp/a/src/qibusinputcontextproxy.h ibus-qt-1.3.3-Source/src/qibuslookuptable.cpp000664 001750 001750 00000010231 12325431066 022751 0ustar00tfujiwartfujiwar000000 000000 #include "qibuslookuptable.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(LookupTable, IBusLookupTable); bool LookupTable::serialize (QDBusArgument & argument) { if ( !Serializable::serialize(argument) ) return false; // read variables of basic type into argument argument << m_pageSize; argument << m_cursorPos; argument << m_cursorVisible; argument << m_round; argument << m_orientation; argument.beginArray (qMetaTypeId()); for ( int i = 0; i < m_candidates.size(); ++i ) { argument << m_candidates[i]; } argument.endArray(); argument.beginArray (qMetaTypeId()); for ( int i = 0; i < m_labels.size(); ++i ) { argument << m_labels[i]; } argument.endArray(); return true; } bool LookupTable::deserialize (const QDBusArgument & argument) { if ( !Serializable::deserialize(argument) ) return false; // clear vector m_candidates.clear(); m_labels.clear(); argument >> m_pageSize; argument >> m_cursorPos; argument >> m_cursorVisible; argument >> m_round; argument >> m_orientation; argument.beginArray(); while ( !argument.atEnd() ); { TextPointer tp; argument >> tp; m_candidates.append(tp); } argument.endArray(); argument.beginArray(); while ( !argument.atEnd() ); { TextPointer tp; argument >> tp; m_labels.append(tp); } argument.endArray(); return true; } void LookupTable::appendCandidate(const TextPointer & e) { m_candidates.append(e); } void LookupTable::appendLabel(const TextPointer & e) { m_labels.append(e); } TextPointer LookupTable::candidate(uint index) const { if ( index >= static_cast(m_candidates.size()) ) return NULL; // pageNum: which page is cursor located in ? uint pageNum = m_cursorPos / m_pageSize; index = pageNum * m_pageSize + index; return m_candidates[index]; } TextPointer LookupTable::label(const uint index) const { if ( index >= static_cast(m_labels.size()) ) return NULL; return m_labels[index]; } void LookupTable::setCursorPos(const uint cursorPos) { m_cursorPos = cursorPos; } uint LookupTable::cursorPosInPage() const { return (m_cursorPos % m_pageSize); } void LookupTable::setCursorVisible(bool visible) { m_cursorVisible = visible; } void LookupTable::setPageSize(const uint pageSize) { m_pageSize = pageSize; } void LookupTable::setOrientation (int orientation) { m_orientation = orientation; } void LookupTable::clean (void) { m_candidates.clear (); } bool LookupTable::pageUp() { if ( m_cursorPos >= m_pageSize ) { m_cursorPos -= m_pageSize; return true; } // here, cursor points to first page if ( !m_round ) { return false; } // set the right position of cursor uint tmpCursorPos = (m_candidates.size() / m_pageSize) * m_pageSize + cursorPosInPage(); if ( tmpCursorPos >= static_cast(m_candidates.size()) ) m_cursorPos = m_candidates.size() - 1; else m_cursorPos = tmpCursorPos; return true; } bool LookupTable::pageDown() { if ( (m_candidates.size() / m_pageSize) > (m_cursorPos / m_pageSize) ) { if ( (m_cursorPos + m_pageSize) < static_cast(m_candidates.size()) ) m_cursorPos = m_cursorPos + m_pageSize; else m_cursorPos = ((m_cursorPos / m_pageSize) * m_pageSize) + cursorPosInPage(); return true; } // curosr points to last page if ( !m_round ) return false; m_cursorPos = m_cursorPos % m_pageSize; return true; } bool LookupTable::cursorUp() { if ( m_cursorPos == 0 ) { // cursor points to the first candidate of first page if ( !m_round ) { return false; } m_cursorPos = m_candidates.size() - 1; return true; } --m_cursorPos; return true; } bool LookupTable::cursorDown() { if ( ++m_cursorPos < static_cast(m_candidates.size()) ) { return true; } if ( m_round ) { m_cursorPos = 0; return true; } return false; } }; ibus-qt-1.3.3-Source/src/qibuspointer.h000664 001750 001750 00000002467 12325431066 021571 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_POINTER_H__ #define __Q_IBUS_POINTER_H__ #include #include namespace IBus { template class Pointer { public: Pointer (T *object = 0) : p (0) { set (object); } Pointer (const Pointer &src) : p (0) { set (src.get ()); } template Pointer (const Pointer &src): p (0) { set (dynamic_cast (src.get ())); } ~Pointer () { set (0); } Pointer &operator= (T *object) { set (object); return *this; } Pointer &operator= (const Pointer &src) { set (src.get ()); return *this; } template Pointer &operator= (const Pointer &src) { set (dynamic_cast (src.get ())); return *this; } T &operator* () const { return *get (); } T *operator-> () const { return get (); } operator T* () const { return get (); } operator bool () const { return !isNull (); } T *get () const { return p; } bool isNull () const { return p == 0; } protected: T *p; void set (T *object) { if (p) p->unref (); if (object) object->ref (); p = object; } }; }; #endif ibus-qt-1.3.3-Source/src/qibusengineadaptor.h000664 001750 001750 00000013176 12325431066 022730 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibusengineadaptor -c IBusEngineAdaptor -v org.freedesktop.IBus.Engine.xml org.freedesktop.IBus.Engine * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #ifndef QIBUSENGINEADAPTOR_H_1268725630 #define QIBUSENGINEADAPTOR_H_1268725630 #include #include class QByteArray; template class QList; template class QMap; class QString; class QStringList; class QVariant; /* * Adaptor class for interface org.freedesktop.IBus.Engine */ class IBusEngineAdaptor: public QDBusAbstractAdaptor { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.freedesktop.IBus.Engine") Q_CLASSINFO("D-Bus Introspection", "" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" "") public: IBusEngineAdaptor(QObject *parent); virtual ~IBusEngineAdaptor(); public: // PROPERTIES public Q_SLOTS: // METHODS void CandidateClicked(uint index, uint button, uint state); void CursorDown(); void CursorUp(); void Destroy(); void Disable(); void Enable(); void FocusIn(); void FocusOut(); void PageDown(); void PageUp(); bool ProcessKeyEvent(uint keyval, uint keycode, uint state); void PropertyActivate(const QString &prop_name, int prop_state); void PropertyHide(const QString &prop_name); void PropertyShow(const QString &prop_name); void Reset(); void SetCapabilities(uint cap); void SetCursorLocation(int x, int y, int w, int h); Q_SIGNALS: // SIGNALS void CommitText(const QDBusVariant &text); void CursorDownLookupTable(); void CursorUpLookupTable(); void ForwardKeyEvent(uint keyval, uint keycode, uint state); void HideAuxiliaryText(); void HideLookupTable(); void HidePreeditText(); void PageDownLookupTable(); void PageUpLookupTable(); void RegisterProperties(const QDBusVariant &props); void ShowAuxiliaryText(); void ShowLookupTable(); void ShowPreeditText(); void UpdateAuxiliaryText(const QDBusVariant &text, bool visible); void UpdateLookupTable(const QDBusVariant &lookup_table, bool visible); void UpdatePreeditText(const QDBusVariant &text, uint cursor_pos, bool visible, uint mode); void UpdateProperty(const QDBusVariant &prop); }; #endif ibus-qt-1.3.3-Source/src/qibusproperty.cpp000664 001750 001750 00000003353 12325431066 022323 0ustar00tfujiwartfujiwar000000 000000 #include "qibusproperty.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(Property, IBusProperty); bool Property::serialize (QDBusArgument &argument) { if (!Serializable::serialize (argument)) { return false; } argument << m_key; argument << m_type; argument << m_label; argument << m_icon; argument << m_tooltip; argument << m_sensitive; argument << m_visible; argument << m_state; if ( !m_subProps ) { m_subProps = new PropList(); } argument << m_subProps; return true; } bool Property::deserialize (const QDBusArgument &argument) { if (!Serializable::deserialize (argument)) { return false; } argument >> m_key; argument >> m_type; argument >> m_label; argument >> m_icon; argument >> m_tooltip; argument >> m_sensitive; argument >> m_visible; argument >> m_state; argument >> m_subProps; return true; } void Property::setLabel (const TextPointer & lable) { if ( !lable.isNull() ) { m_label = new Text; return ; } m_label = lable; } void Property::setVisible (bool visible) { m_visible = visible; } void Property::setSubProps(const PropListPointer & props) { if ( !props ) { m_subProps = new PropList; return ; } m_subProps = props; } bool Property::update (const PropertyPointer prop) { if ( m_key == prop->m_key ) { m_icon = prop->m_icon; m_label = prop->m_label; m_tooltip = prop->m_tooltip; m_visible = prop->m_visible; m_sensitive = prop->m_sensitive; m_state = prop->m_state; return true; } if ( !m_subProps.isNull() ) return m_subProps->updateProperty(prop); return false; } }; ibus-qt-1.3.3-Source/src/moc_qibusproplist.cxx_parameters000664 001750 001750 00000000600 12325431136 025402 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusproplist.cxx /home/tfujiwar/tmp/a/src/qibusproplist.h ibus-qt-1.3.3-Source/src/moc_qibustext.cxx_parameters000664 001750 001750 00000000570 12325431136 024520 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibustext.cxx /home/tfujiwar/tmp/a/src/qibustext.h ibus-qt-1.3.3-Source/src/qibusfactoryadaptor.h000664 001750 001750 00000002770 12325431066 023130 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibusfactoryadaptor -c IBusFactoryAdaptor -v org.freedesktop.IBus.EngineFactory.xml org.freedesktop.IBus.EngineFactory * * qdbusxml2cpp is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #ifndef QIBUSFACTORYADAPTOR_H_1251169083 #define QIBUSFACTORYADAPTOR_H_1251169083 #include #include class QByteArray; template class QList; template class QMap; class QString; class QStringList; class QVariant; /* * Adaptor class for interface org.freedesktop.IBus.EngineFactory */ class IBusFactoryAdaptor: public QDBusAbstractAdaptor { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.freedesktop.IBus.EngineFactory") Q_CLASSINFO("D-Bus Introspection", "" " \n" " \n" " \n" " \n" " \n" " \n" " \n" "") public: IBusFactoryAdaptor(QObject *parent); virtual ~IBusFactoryAdaptor(); public: // PROPERTIES public Q_SLOTS: // METHODS QDBusObjectPath CreateEngine(const QString &engine_name); void Destroy(); Q_SIGNALS: // SIGNALS }; #endif ibus-qt-1.3.3-Source/src/qibuspaneladaptor.cpp000664 001750 001750 00000013022 12325431066 023103 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibuspaneladaptor -c IBusPanelAdaptor -v org.freedesktop.IBus.Panel.xml org.freedesktop.IBus.Panel * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #include "qibuspaneladaptor.h" #include #include #include #include #include #include #include /* * Implementation of adaptor class IBusPanelAdaptor */ IBusPanelAdaptor::IBusPanelAdaptor(QObject *parent) : QDBusAbstractAdaptor(parent) { // constructor setAutoRelaySignals(true); } IBusPanelAdaptor::~IBusPanelAdaptor() { // destructor } void IBusPanelAdaptor::CursorDownLookupTable() { // handle method call org.freedesktop.IBus.Panel.CursorDownLookupTable QMetaObject::invokeMethod(parent(), "CursorDownLookupTable"); } void IBusPanelAdaptor::CursorUpLookupTable() { // handle method call org.freedesktop.IBus.Panel.CursorUpLookupTable QMetaObject::invokeMethod(parent(), "CursorUpLookupTable"); } void IBusPanelAdaptor::Destroy() { // handle method call org.freedesktop.IBus.Panel.Destroy QMetaObject::invokeMethod(parent(), "Destroy"); } void IBusPanelAdaptor::FocusIn(const QDBusObjectPath &ic) { // handle method call org.freedesktop.IBus.Panel.FocusIn QMetaObject::invokeMethod(parent(), "FocusIn", Q_ARG(QDBusObjectPath, ic)); } void IBusPanelAdaptor::FocusOut(const QDBusObjectPath &ic) { // handle method call org.freedesktop.IBus.Panel.FocusOut QMetaObject::invokeMethod(parent(), "FocusOut", Q_ARG(QDBusObjectPath, ic)); } void IBusPanelAdaptor::HideAuxiliaryText() { // handle method call org.freedesktop.IBus.Panel.HideAuxiliaryText QMetaObject::invokeMethod(parent(), "HideAuxiliaryText"); } void IBusPanelAdaptor::HideLanguageBar() { // handle method call org.freedesktop.IBus.Panel.HideLanguageBar QMetaObject::invokeMethod(parent(), "HideLanguageBar"); } void IBusPanelAdaptor::HideLookupTable() { // handle method call org.freedesktop.IBus.Panel.HideLookupTable QMetaObject::invokeMethod(parent(), "HideLookupTable"); } void IBusPanelAdaptor::HidePreeditText() { // handle method call org.freedesktop.IBus.Panel.HidePreeditText QMetaObject::invokeMethod(parent(), "HidePreeditText"); } void IBusPanelAdaptor::PageDownLookupTable() { // handle method call org.freedesktop.IBus.Panel.PageDownLookupTable QMetaObject::invokeMethod(parent(), "PageDownLookupTable"); } void IBusPanelAdaptor::PageUpLookupTable() { // handle method call org.freedesktop.IBus.Panel.PageUpLookupTable QMetaObject::invokeMethod(parent(), "PageUpLookupTable"); } void IBusPanelAdaptor::RegisterProperties(const QDBusVariant &props) { // handle method call org.freedesktop.IBus.Panel.RegisterProperties QMetaObject::invokeMethod(parent(), "RegisterProperties", Q_ARG(QDBusVariant, props)); } void IBusPanelAdaptor::Reset() { // handle method call org.freedesktop.IBus.Panel.Reset QMetaObject::invokeMethod(parent(), "Reset"); } void IBusPanelAdaptor::SetCursorLocation(int x, int y, int w, int h) { // handle method call org.freedesktop.IBus.Panel.SetCursorLocation QMetaObject::invokeMethod(parent(), "SetCursorLocation", Q_ARG(int, x), Q_ARG(int, y), Q_ARG(int, w), Q_ARG(int, h)); } void IBusPanelAdaptor::ShowAuxiliaryText() { // handle method call org.freedesktop.IBus.Panel.ShowAuxiliaryText QMetaObject::invokeMethod(parent(), "ShowAuxiliaryText"); } void IBusPanelAdaptor::ShowLanguageBar() { // handle method call org.freedesktop.IBus.Panel.ShowLanguageBar QMetaObject::invokeMethod(parent(), "ShowLanguageBar"); } void IBusPanelAdaptor::ShowLookupTable() { // handle method call org.freedesktop.IBus.Panel.ShowLookupTable QMetaObject::invokeMethod(parent(), "ShowLookupTable"); } void IBusPanelAdaptor::ShowPreeditText() { // handle method call org.freedesktop.IBus.Panel.ShowPreeditText QMetaObject::invokeMethod(parent(), "ShowPreeditText"); } void IBusPanelAdaptor::StartSetup() { // handle method call org.freedesktop.IBus.Panel.StartSetup QMetaObject::invokeMethod(parent(), "StartSetup"); } void IBusPanelAdaptor::StateChanged() { // handle method call org.freedesktop.IBus.Panel.StateChanged QMetaObject::invokeMethod(parent(), "StateChanged"); } void IBusPanelAdaptor::UpdateAuxiliaryText(const QDBusVariant &text, bool visible) { // handle method call org.freedesktop.IBus.Panel.UpdateAuxiliaryText QMetaObject::invokeMethod(parent(), "UpdateAuxiliaryText", Q_ARG(QDBusVariant, text), Q_ARG(bool, visible)); } void IBusPanelAdaptor::UpdateLookupTable(const QDBusVariant &lookup_table, bool visible) { // handle method call org.freedesktop.IBus.Panel.UpdateLookupTable QMetaObject::invokeMethod(parent(), "UpdateLookupTable", Q_ARG(QDBusVariant, lookup_table), Q_ARG(bool, visible)); } void IBusPanelAdaptor::UpdatePreeditText(const QDBusVariant &text, uint cursor_pos, bool visible) { // handle method call org.freedesktop.IBus.Panel.UpdatePreeditText QMetaObject::invokeMethod(parent(), "UpdatePreeditText", Q_ARG(QDBusVariant, text), Q_ARG(uint, cursor_pos), Q_ARG(bool, visible)); } void IBusPanelAdaptor::UpdateProperty(const QDBusVariant &prop) { // handle method call org.freedesktop.IBus.Panel.UpdateProperty QMetaObject::invokeMethod(parent(), "UpdateProperty", Q_ARG(QDBusVariant, prop)); } ibus-qt-1.3.3-Source/src/qibusibusproxy.cpp000664 001750 001750 00000001322 12325431066 022475 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -p qibusibusproxy -c IBusProxy -v org.freedesktop.IBus.xml org.freedesktop.IBus * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #include "qibusibusproxy.h" /* * Implementation of interface class IBusProxy */ IBusProxy::IBusProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) { } IBusProxy::~IBusProxy() { } ibus-qt-1.3.3-Source/src/qibusconfigservice.h000664 001750 001750 00000002333 12325431066 022727 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_CONFIG_H_ #define __Q_IBUS_CONFIG_H_ #include #include #include "qibusobject.h" class IBusConfigAdaptor; namespace IBus { class ConfigService; typedef Pointer ConfigServicePointer; class ConfigService : public QObject { Q_OBJECT public : ConfigService (const QDBusConnection &conn); virtual ~ConfigService (); private : // developpers need to implement following functions virtual const QDBusVariant getValue (const QString §ion, const QString &name) { QDBusVariant variant; return variant; } virtual void setValue (const QString §ion, const QString &name, const QDBusVariant &value) {} virtual void unset (const QString §ion, const QString &name) {} virtual void destroy (void) {} public : Q_INVOKABLE const QDBusVariant GetValue (const QString §ion, const QString &name); Q_INVOKABLE void SetValue (const QString §ion, const QString &name, const QDBusVariant &value); Q_INVOKABLE void Unset (const QString §ion, const QString &name); Q_INVOKABLE void Destroy (void); private : QDBusConnection m_conn; IBusConfigAdaptor *m_config; }; }; #endif ibus-qt-1.3.3-Source/src/qibusconfigadaptor.cpp000664 001750 001750 00000003543 12325431066 023260 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibusconfigadaptor -c IBusConfigAdaptor -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #include "qibusconfigadaptor.h" #include #include #include #include #include #include #include /* * Implementation of adaptor class IBusConfigAdaptor */ IBusConfigAdaptor::IBusConfigAdaptor(QObject *parent) : QDBusAbstractAdaptor(parent) { // constructor setAutoRelaySignals(true); } IBusConfigAdaptor::~IBusConfigAdaptor() { // destructor } void IBusConfigAdaptor::Destroy() { // handle method call org.freedesktop.IBus.Config.Destroy QMetaObject::invokeMethod(parent(), "Destroy"); } QDBusVariant IBusConfigAdaptor::GetValue(const QString §ion, const QString &name) { // handle method call org.freedesktop.IBus.Config.GetValue QDBusVariant out0; QMetaObject::invokeMethod(parent(), "GetValue", Q_RETURN_ARG(QDBusVariant, out0), Q_ARG(QString, section), Q_ARG(QString, name)); return out0; } void IBusConfigAdaptor::SetValue(const QString §ion, const QString &name, const QDBusVariant &value) { // handle method call org.freedesktop.IBus.Config.SetValue QMetaObject::invokeMethod(parent(), "SetValue", Q_ARG(QString, section), Q_ARG(QString, name), Q_ARG(QDBusVariant, value)); } void IBusConfigAdaptor::Unset(const QString §ion, const QString &name) { // handle method call org.freedesktop.IBus.Config.Unset QMetaObject::invokeMethod(parent(), "Unset", Q_ARG(QString, section), Q_ARG(QString, name)); } ibus-qt-1.3.3-Source/src/moc_qibuscomponent.cxx_parameters000664 001750 001750 00000000602 12325431136 025532 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibuscomponent.cxx /home/tfujiwar/tmp/a/src/qibuscomponent.h ibus-qt-1.3.3-Source/src/qibusenginefactory.cpp000664 001750 001750 00000003730 12325431066 023273 0ustar00tfujiwartfujiwar000000 000000 #include "qibusenginefactory.h" #include "qibusfactoryadaptor.h" #include "qibusengine.h" namespace IBus { EngineFactory *EngineFactory::m_factory = NULL; EngineFactory::EngineFactory (const QDBusConnection &conn, uint id) : m_conn (conn) { m_id = id; m_factoryAdaptor = new IBusFactoryAdaptor (this); } EngineFactory::~EngineFactory () { if ( m_factoryAdaptor != NULL ) { delete m_factoryAdaptor; m_factoryAdaptor = NULL; } if ( m_factory != NULL ) { delete m_factory; m_factory = NULL; } } EngineFactory *EngineFactory::getEngineFactory (const QDBusConnection &conn) { if ( m_factory == NULL ) { m_factory = new EngineFactory(conn); } return m_factory; } QString EngineFactory::createEngine (const QString &engineName) { QString path = "/org/freedesktop/IBus/Engine/" + engineName + "_" + QString::number(++m_id); if ( !m_engineMap.contains(engineName) ) { qDebug () << "EngineFactory::createEngine, can not create engine!"; return ""; } const QMetaObject *mo = m_engineMap[engineName]; EnginePointer engine = qobject_cast(mo->newInstance (Q_ARG(QString, engineName))); if ( engine.isNull() ) { qDebug () << "EngineFactory::createEngine, newInstance error!"; return ""; } if ( !m_conn.isConnected() ) { qDebug () << "EngineFactory::createEngine, connection is not open"; return ""; } if ( !m_conn.registerObject (path, engine) ) { qDebug () << "EngineFactory::createEngine, registerObject error!"; return ""; } m_engineLList.append(engine); return path; } QDBusObjectPath EngineFactory::CreateEngine (const QString &engineName) { return QDBusObjectPath (createEngine (engineName)); } void EngineFactory::Destroy () { delete this; } void EngineFactory::addMetaObject(const QString &name, const QMetaObject *metaObject) { Q_ASSERT(metaObject); m_engineMap[name] = metaObject; } }; ibus-qt-1.3.3-Source/src/qibuslookuptable.h000664 001750 001750 00000004036 12325431066 022424 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_LOOKUP_TABLE_H_ #define __Q_IBUS_LOOKUP_TABLE_H_ #include "qibusserializable.h" #include "qibustext.h" #include "qibustypes.h" namespace IBus { class LookupTable; typedef Pointer LookupTablePointer; class LookupTable: public Serializable { Q_OBJECT; public: LookupTable (uint pageSize = 5, uint cursorPos = 0, bool cursorVisible = true, bool round = true, int orientation = OrientationSystem ): m_pageSize (pageSize), m_cursorPos (cursorPos), m_cursorVisible (cursorVisible), m_round (round), m_orientation (orientation) {} ~LookupTable() {} public: virtual bool serialize (QDBusArgument & argument); virtual bool deserialize (const QDBusArgument & argument); void appendCandidate (const TextPointer & e); void appendLabel (const TextPointer & e); TextPointer candidate (uint index) const; TextPointer label (const uint index) const; const QVector & candidates () const { return m_candidates; } const QVector & labels () const { return m_labels; } uint cursorPos () const { return m_cursorPos; } uint pageSize () const {return m_pageSize; } bool isCursorVisible () const { return m_cursorVisible; } bool isRound () const { return m_round; } int orientation () const { return m_orientation; } void setCursorPos (const uint cursorPos); void setCursorVisible (bool visible); void setPageSize (uint pageSize); void setOrientation (int orientation); uint cursorPosInPage () const; void clean (void); bool pageUp(); bool pageDown(); bool cursorUp(); bool cursorDown(); private: uint m_pageSize; uint m_cursorPos; bool m_cursorVisible; bool m_round; int m_orientation; QVector m_candidates; QVector m_labels; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/qibusserializable.cpp000664 001750 001750 00000005741 12325431066 023110 0ustar00tfujiwartfujiwar000000 000000 #include "qibusserializable.h" #include namespace IBus { QHash Serializable::type_table INIT_PRIO_HIGH; IBUS_DECLARE_SERIALIZABLE(Serializable, IBusSerializable); void Serializable::setAttachment (const QString &key, const SerializablePointer &value) { m_attachments[key] = value; } SerializablePointer Serializable::getAttachment (const QString &key) const { SerializablePointer p; if (m_attachments.contains (key)) p = m_attachments.value (key); return p; } SerializablePointer Serializable::removeAttachment (const QString &key) { SerializablePointer p = m_attachments.value (key, p); if (p) m_attachments.remove (key); return p; } bool Serializable::serialize (QDBusArgument &argument) { QMap::const_iterator i; argument.beginMap (QVariant::String, qMetaTypeId()); for (i = m_attachments.begin (); i != m_attachments.end (); i++) { argument.beginMapEntry (); argument << i.key (); argument << i.value (); argument.endMapEntry (); } argument.endMap (); return true; } bool Serializable::deserialize (const QDBusArgument &argument) { argument.beginMap (); while (!argument.atEnd()) { QString key; SerializablePointer p; argument.beginMapEntry (); argument >> key; argument >> p; argument.endMapEntry (); m_attachments[key] = p; } argument.endMap (); return true; } SerializablePointer Serializable::createInstance(const QString &name) { SerializablePointer p; if (type_table.contains (name)) { p = type_table[name](); } else { qWarning () << "Serializable::createInstance:" << "create" << name << "failed"; } return p; } void Serializable::registerObject (const QString &name, NewInstanceFunc _new) { if (type_table.contains (name)) { qFatal ("registerObject failed! name %s has been registered", (char *)name.data ()); } if (_new == NULL) { qFatal ("registerObject failed! _new should not be NULL"); } Serializable::type_table[name] = _new; } void Serializable::unregisterObject (const QString &name) { if (!type_table.contains (name)) { qFatal ("unregisterObject failed! name %s has not been registered", (char *)name.data ()); } Serializable::type_table.remove(name); } #if 0 QDBusArgument& operator<< (QDBusArgument& argument, const SerializablePointer &p) { argument.beginStructure (); argument << p->getMetaInfo ()->getName (); p->serialize (argument); argument.endStructure (); return argument; } const QDBusArgument& operator>> (const QDBusArgument& argument, SerializablePointer &p) { QString name; argument.beginStructure (); argument >> name; p = Serializable::createInstance (name); if (!p->deserialize (argument)) p = NULL; argument.endStructure (); return argument; } #endif }; ibus-qt-1.3.3-Source/src/qibuskeysyms.h000664 001750 001750 00000173330 12325431066 021613 0ustar00tfujiwartfujiwar000000 000000 /* ibus - The Input Bus * Copyright (C) 2008-2009 Huang Peng * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ /** * SECTION: ibuskeysyms * @short_description: Key symbol definition. * @stability: Stable * @see_also: #IBusKeymap, #IBusHotkeyProfile * * This section defines the key symbols (keysym) used in IBus. * Those keysym data is converted from keysymdef.h in * FreeDesktop. * * Most of the key symbols are not explicit documented, * because they are self-explaining. */ #ifndef __Q_IBUS_KEYSYMS_H__ #define __Q_IBUS_KEYSYMS_H__ namespace IBus { typedef enum { Key_VoidSymbol = 0xffffff, Key_BackSpace = 0xff08, Key_Tab = 0xff09, Key_Linefeed = 0xff0a, Key_Clear = 0xff0b, Key_Return = 0xff0d, Key_Pause = 0xff13, Key_Scroll_Lock = 0xff14, Key_Sys_Req = 0xff15, Key_Escape = 0xff1b, Key_Delete = 0xffff, /** * IBUS_Multi_key: * * Key for composing characters. * A.k.a. Compose Key. */ Key_Multi_key = 0xff20, /** * IBUS_Codeinput: * * International and multi-key character composition. */ Key_Codeinput = 0xff37, Key_SingleCandidate = 0xff3c, Key_MultipleCandidate = 0xff3d, Key_PreviousCandidate = 0xff3e, /** * IBUS_Kanji: * * Japanese keyboard support. */ Key_Kanji = 0xff21, /** * IBUS_Muhenkan: * * Japanese keyboard support. */ Key_Muhenkan = 0xff22, /** * IBUS_Henkan_Mode: * * Japanese keyboard support. */ Key_Henkan_Mode = 0xff23, /** * IBUS_Henkan: * * Japanese keyboard support. */ Key_Henkan = 0xff23, /** * IBUS_Romaji: * * Japanese keyboard support. */ Key_Romaji = 0xff24, /** * IBUS_Hiragana: * * Japanese keyboard support. */ Key_Hiragana = 0xff25, /** * IBUS_Katakana: * * Japanese keyboard support. */ Key_Katakana = 0xff26, /** * IBUS_Hiragana_Katakana: * * Japanese keyboard support. */ Key_Hiragana_Katakana = 0xff27, Key_Zenkaku = 0xff28, Key_Hankaku = 0xff29, Key_Zenkaku_Hankaku = 0xff2a, Key_Touroku = 0xff2b, Key_Massyo = 0xff2c, Key_Kana_Lock = 0xff2d, Key_Kana_Shift = 0xff2e, Key_Eisu_Shift = 0xff2f, Key_Eisu_toggle = 0xff30, Key_Kanji_Bangou = 0xff37, Key_Zen_Koho = 0xff3d, Key_Mae_Koho = 0xff3e, Key_Home = 0xff50, Key_Left = 0xff51, Key_Up = 0xff52, Key_Right = 0xff53, Key_Down = 0xff54, Key_Prior = 0xff55, Key_Page_Up = 0xff55, Key_Next = 0xff56, Key_Page_Down = 0xff56, Key_End = 0xff57, Key_Begin = 0xff58, Key_Select = 0xff60, Key_Print = 0xff61, Key_Execute = 0xff62, Key_Insert = 0xff63, Key_Undo = 0xff65, Key_Redo = 0xff66, Key_Menu = 0xff67, Key_Find = 0xff68, Key_Cancel = 0xff69, Key_Help = 0xff6a, Key_Break = 0xff6b, Key_Mode_switch = 0xff7e, Key_script_switch = 0xff7e, Key_Num_Lock = 0xff7f, Key_KP_Space = 0xff80, Key_KP_Tab = 0xff89, Key_KP_Enter = 0xff8d, Key_KP_F1 = 0xff91, Key_KP_F2 = 0xff92, Key_KP_F3 = 0xff93, Key_KP_F4 = 0xff94, Key_KP_Home = 0xff95, Key_KP_Left = 0xff96, Key_KP_Up = 0xff97, Key_KP_Right = 0xff98, Key_KP_Down = 0xff99, Key_KP_Prior = 0xff9a, Key_KP_Page_Up = 0xff9a, Key_KP_Next = 0xff9b, Key_KP_Page_Down = 0xff9b, Key_KP_End = 0xff9c, Key_KP_Begin = 0xff9d, Key_KP_Insert = 0xff9e, Key_KP_Delete = 0xff9f, Key_KP_Equal = 0xffbd, Key_KP_Multiply = 0xffaa, Key_KP_Add = 0xffab, Key_KP_Separator = 0xffac, Key_KP_Subtract = 0xffad, Key_KP_Decimal = 0xffae, Key_KP_Divide = 0xffaf, Key_KP_0 = 0xffb0, Key_KP_1 = 0xffb1, Key_KP_2 = 0xffb2, Key_KP_3 = 0xffb3, Key_KP_4 = 0xffb4, Key_KP_5 = 0xffb5, Key_KP_6 = 0xffb6, Key_KP_7 = 0xffb7, Key_KP_8 = 0xffb8, Key_KP_9 = 0xffb9, Key_F1 = 0xffbe, Key_F2 = 0xffbf, Key_F3 = 0xffc0, Key_F4 = 0xffc1, Key_F5 = 0xffc2, Key_F6 = 0xffc3, Key_F7 = 0xffc4, Key_F8 = 0xffc5, Key_F9 = 0xffc6, Key_F10 = 0xffc7, Key_F11 = 0xffc8, Key_L1 = 0xffc8, Key_F12 = 0xffc9, Key_L2 = 0xffc9, Key_F13 = 0xffca, Key_L3 = 0xffca, Key_F14 = 0xffcb, Key_L4 = 0xffcb, Key_F15 = 0xffcc, Key_L5 = 0xffcc, Key_F16 = 0xffcd, Key_L6 = 0xffcd, Key_F17 = 0xffce, Key_L7 = 0xffce, Key_F18 = 0xffcf, Key_L8 = 0xffcf, Key_F19 = 0xffd0, Key_L9 = 0xffd0, Key_F20 = 0xffd1, Key_L10 = 0xffd1, Key_F21 = 0xffd2, Key_R1 = 0xffd2, Key_F22 = 0xffd3, Key_R2 = 0xffd3, Key_F23 = 0xffd4, Key_R3 = 0xffd4, Key_F24 = 0xffd5, Key_R4 = 0xffd5, Key_F25 = 0xffd6, Key_R5 = 0xffd6, Key_F26 = 0xffd7, Key_R6 = 0xffd7, Key_F27 = 0xffd8, Key_R7 = 0xffd8, Key_F28 = 0xffd9, Key_R8 = 0xffd9, Key_F29 = 0xffda, Key_R9 = 0xffda, Key_F30 = 0xffdb, Key_R10 = 0xffdb, Key_F31 = 0xffdc, Key_R11 = 0xffdc, Key_F32 = 0xffdd, Key_R12 = 0xffdd, Key_F33 = 0xffde, Key_R13 = 0xffde, Key_F34 = 0xffdf, Key_R14 = 0xffdf, Key_F35 = 0xffe0, Key_R15 = 0xffe0, Key_Shift_L = 0xffe1, Key_Shift_R = 0xffe2, Key_Control_L = 0xffe3, Key_Control_R = 0xffe4, Key_Caps_Lock = 0xffe5, Key_Shift_Lock = 0xffe6, Key_Meta_L = 0xffe7, Key_Meta_R = 0xffe8, Key_Alt_L = 0xffe9, Key_Alt_R = 0xffea, Key_Super_L = 0xffeb, Key_Super_R = 0xffec, Key_Hyper_L = 0xffed, Key_Hyper_R = 0xffee, Key_ISO_Lock = 0xfe01, Key_ISO_Level2_Latch = 0xfe02, Key_ISO_Level3_Shift = 0xfe03, Key_ISO_Level3_Latch = 0xfe04, Key_ISO_Level3_Lock = 0xfe05, Key_ISO_Level5_Shift = 0xfe11, Key_ISO_Level5_Latch = 0xfe12, Key_ISO_Level5_Lock = 0xfe13, Key_ISO_Group_Shift = 0xff7e, Key_ISO_Group_Latch = 0xfe06, Key_ISO_Group_Lock = 0xfe07, Key_ISO_Next_Group = 0xfe08, Key_ISO_Next_Group_Lock = 0xfe09, Key_ISO_Prev_Group = 0xfe0a, Key_ISO_Prev_Group_Lock = 0xfe0b, Key_ISO_First_Group = 0xfe0c, Key_ISO_First_Group_Lock = 0xfe0d, Key_ISO_Last_Group = 0xfe0e, Key_ISO_Last_Group_Lock = 0xfe0f, Key_ISO_Left_Tab = 0xfe20, Key_ISO_Move_Line_Up = 0xfe21, Key_ISO_Move_Line_Down = 0xfe22, Key_ISO_Partial_Line_Up = 0xfe23, Key_ISO_Partial_Line_Down = 0xfe24, Key_ISO_Partial_Space_Left = 0xfe25, Key_ISO_Partial_Space_Right = 0xfe26, Key_ISO_Set_Margin_Left = 0xfe27, Key_ISO_Set_Margin_Right = 0xfe28, Key_ISO_Release_Margin_Left = 0xfe29, Key_ISO_Release_Margin_Right = 0xfe2a, Key_ISO_Release_Both_Margins = 0xfe2b, Key_ISO_Fast_Cursor_Left = 0xfe2c, Key_ISO_Fast_Cursor_Right = 0xfe2d, Key_ISO_Fast_Cursor_Up = 0xfe2e, Key_ISO_Fast_Cursor_Down = 0xfe2f, Key_ISO_Continuous_Underline = 0xfe30, Key_ISO_Discontinuous_Underline = 0xfe31, Key_ISO_Emphasize = 0xfe32, Key_ISO_Center_Object = 0xfe33, Key_ISO_Enter = 0xfe34, Key_dead_grave = 0xfe50, Key_dead_acute = 0xfe51, Key_dead_circumflex = 0xfe52, Key_dead_tilde = 0xfe53, Key_dead_perispomeni = 0xfe53, Key_dead_macron = 0xfe54, Key_dead_breve = 0xfe55, Key_dead_abovedot = 0xfe56, Key_dead_diaeresis = 0xfe57, Key_dead_abovering = 0xfe58, Key_dead_doubleacute = 0xfe59, Key_dead_caron = 0xfe5a, Key_dead_cedilla = 0xfe5b, Key_dead_ogonek = 0xfe5c, Key_dead_iota = 0xfe5d, Key_dead_voiced_sound = 0xfe5e, Key_dead_semivoiced_sound = 0xfe5f, Key_dead_belowdot = 0xfe60, Key_dead_hook = 0xfe61, Key_dead_horn = 0xfe62, Key_dead_stroke = 0xfe63, Key_dead_abovecomma = 0xfe64, Key_dead_psili = 0xfe64, Key_dead_abovereversedcomma = 0xfe65, Key_dead_dasia = 0xfe65, Key_dead_belowring = 0xfe67, Key_dead_belowmacron = 0xfe68, Key_dead_belowcircumflex = 0xfe69, Key_dead_belowtilde = 0xfe6a, Key_dead_belowbreve = 0xfe6b, Key_dead_belowdiaeresis = 0xfe6c, Key_First_Virtual_Screen = 0xfed0, Key_Prev_Virtual_Screen = 0xfed1, Key_Next_Virtual_Screen = 0xfed2, Key_Last_Virtual_Screen = 0xfed4, Key_Terminate_Server = 0xfed5, Key_AccessX_Enable = 0xfe70, Key_AccessX_Feedback_Enable = 0xfe71, Key_RepeatKeys_Enable = 0xfe72, Key_SlowKeys_Enable = 0xfe73, Key_BounceKeys_Enable = 0xfe74, Key_StickyKeys_Enable = 0xfe75, Key_MouseKeys_Enable = 0xfe76, Key_MouseKeys_Accel_Enable = 0xfe77, Key_Overlay1_Enable = 0xfe78, Key_Overlay2_Enable = 0xfe79, Key_AudibleBell_Enable = 0xfe7a, Key_Pointer_Left = 0xfee0, Key_Pointer_Right = 0xfee1, Key_Pointer_Up = 0xfee2, Key_Pointer_Down = 0xfee3, Key_Pointer_UpLeft = 0xfee4, Key_Pointer_UpRight = 0xfee5, Key_Pointer_DownLeft = 0xfee6, Key_Pointer_DownRight = 0xfee7, Key_Pointer_Button_Dflt = 0xfee8, Key_Pointer_Button1 = 0xfee9, Key_Pointer_Button2 = 0xfeea, Key_Pointer_Button3 = 0xfeeb, Key_Pointer_Button4 = 0xfeec, Key_Pointer_Button5 = 0xfeed, Key_Pointer_DblClick_Dflt = 0xfeee, Key_Pointer_DblClick1 = 0xfeef, Key_Pointer_DblClick2 = 0xfef0, Key_Pointer_DblClick3 = 0xfef1, Key_Pointer_DblClick4 = 0xfef2, Key_Pointer_DblClick5 = 0xfef3, Key_Pointer_Drag_Dflt = 0xfef4, Key_Pointer_Drag1 = 0xfef5, Key_Pointer_Drag2 = 0xfef6, Key_Pointer_Drag3 = 0xfef7, Key_Pointer_Drag4 = 0xfef8, Key_Pointer_Drag5 = 0xfefd, Key_Pointer_EnableKeys = 0xfef9, Key_Pointer_Accelerate = 0xfefa, Key_Pointer_DfltBtnNext = 0xfefb, Key_Pointer_DfltBtnPrev = 0xfefc, Key_3270_Duplicate = 0xfd01, Key_3270_FieldMark = 0xfd02, Key_3270_Right2 = 0xfd03, Key_3270_Left2 = 0xfd04, Key_3270_BackTab = 0xfd05, Key_3270_EraseEOF = 0xfd06, Key_3270_EraseInput = 0xfd07, Key_3270_Reset = 0xfd08, Key_3270_Quit = 0xfd09, Key_3270_PA1 = 0xfd0a, Key_3270_PA2 = 0xfd0b, Key_3270_PA3 = 0xfd0c, Key_3270_Test = 0xfd0d, Key_3270_Attn = 0xfd0e, Key_3270_CursorBlink = 0xfd0f, Key_3270_AltCursor = 0xfd10, Key_3270_KeyClick = 0xfd11, Key_3270_Jump = 0xfd12, Key_3270_Ident = 0xfd13, Key_3270_Rule = 0xfd14, Key_3270_Copy = 0xfd15, Key_3270_Play = 0xfd16, Key_3270_Setup = 0xfd17, Key_3270_Record = 0xfd18, Key_3270_ChangeScreen = 0xfd19, Key_3270_DeleteWord = 0xfd1a, Key_3270_ExSelect = 0xfd1b, Key_3270_CursorSelect = 0xfd1c, Key_3270_PrintScreen = 0xfd1d, Key_3270_Enter = 0xfd1e, Key_space = 0x020, Key_exclam = 0x021, Key_quotedbl = 0x022, Key_numbersign = 0x023, Key_dollar = 0x024, Key_percent = 0x025, Key_ampersand = 0x026, Key_apostrophe = 0x027, Key_quoteright = 0x027, Key_parenleft = 0x028, Key_parenright = 0x029, Key_asterisk = 0x02a, Key_plus = 0x02b, Key_comma = 0x02c, Key_minus = 0x02d, Key_period = 0x02e, Key_slash = 0x02f, Key_0 = 0x030, Key_1 = 0x031, Key_2 = 0x032, Key_3 = 0x033, Key_4 = 0x034, Key_5 = 0x035, Key_6 = 0x036, Key_7 = 0x037, Key_8 = 0x038, Key_9 = 0x039, Key_colon = 0x03a, Key_semicolon = 0x03b, Key_less = 0x03c, Key_equal = 0x03d, Key_greater = 0x03e, Key_question = 0x03f, Key_at = 0x040, Key_A = 0x041, Key_B = 0x042, Key_C = 0x043, Key_D = 0x044, Key_E = 0x045, Key_F = 0x046, Key_G = 0x047, Key_H = 0x048, Key_I = 0x049, Key_J = 0x04a, Key_K = 0x04b, Key_L = 0x04c, Key_M = 0x04d, Key_N = 0x04e, Key_O = 0x04f, Key_P = 0x050, Key_Q = 0x051, Key_R = 0x052, Key_S = 0x053, Key_T = 0x054, Key_U = 0x055, Key_V = 0x056, Key_W = 0x057, Key_X = 0x058, Key_Y = 0x059, Key_Z = 0x05a, Key_bracketleft = 0x05b, Key_backslash = 0x05c, Key_bracketright = 0x05d, Key_asciicircum = 0x05e, Key_underscore = 0x05f, Key_grave = 0x060, Key_quoteleft = 0x060, Key_a = 0x061, Key_b = 0x062, Key_c = 0x063, Key_d = 0x064, Key_e = 0x065, Key_f = 0x066, Key_g = 0x067, Key_h = 0x068, Key_i = 0x069, Key_j = 0x06a, Key_k = 0x06b, Key_l = 0x06c, Key_m = 0x06d, Key_n = 0x06e, Key_o = 0x06f, Key_p = 0x070, Key_q = 0x071, Key_r = 0x072, Key_s = 0x073, Key_t = 0x074, Key_u = 0x075, Key_v = 0x076, Key_w = 0x077, Key_x = 0x078, Key_y = 0x079, Key_z = 0x07a, Key_braceleft = 0x07b, Key_bar = 0x07c, Key_braceright = 0x07d, Key_asciitilde = 0x07e, Key_nobreakspace = 0x0a0, Key_exclamdown = 0x0a1, Key_cent = 0x0a2, Key_sterling = 0x0a3, Key_currency = 0x0a4, Key_yen = 0x0a5, Key_brokenbar = 0x0a6, Key_section = 0x0a7, Key_diaeresis = 0x0a8, Key_copyright = 0x0a9, Key_ordfeminine = 0x0aa, Key_guillemotleft = 0x0ab, Key_notsign = 0x0ac, Key_hyphen = 0x0ad, Key_registered = 0x0ae, Key_macron = 0x0af, Key_degree = 0x0b0, Key_plusminus = 0x0b1, Key_twosuperior = 0x0b2, Key_threesuperior = 0x0b3, Key_acute = 0x0b4, Key_mu = 0x0b5, Key_paragraph = 0x0b6, Key_periodcentered = 0x0b7, Key_cedilla = 0x0b8, Key_onesuperior = 0x0b9, Key_masculine = 0x0ba, Key_guillemotright = 0x0bb, Key_onequarter = 0x0bc, Key_onehalf = 0x0bd, Key_threequarters = 0x0be, Key_questiondown = 0x0bf, Key_Agrave = 0x0c0, Key_Aacute = 0x0c1, Key_Acircumflex = 0x0c2, Key_Atilde = 0x0c3, Key_Adiaeresis = 0x0c4, Key_Aring = 0x0c5, Key_AE = 0x0c6, Key_Ccedilla = 0x0c7, Key_Egrave = 0x0c8, Key_Eacute = 0x0c9, Key_Ecircumflex = 0x0ca, Key_Ediaeresis = 0x0cb, Key_Igrave = 0x0cc, Key_Iacute = 0x0cd, Key_Icircumflex = 0x0ce, Key_Idiaeresis = 0x0cf, Key_ETH = 0x0d0, Key_Eth = 0x0d0, Key_Ntilde = 0x0d1, Key_Ograve = 0x0d2, Key_Oacute = 0x0d3, Key_Ocircumflex = 0x0d4, Key_Otilde = 0x0d5, Key_Odiaeresis = 0x0d6, Key_multiply = 0x0d7, Key_Oslash = 0x0d8, Key_Ooblique = 0x0d8, Key_Ugrave = 0x0d9, Key_Uacute = 0x0da, Key_Ucircumflex = 0x0db, Key_Udiaeresis = 0x0dc, Key_Yacute = 0x0dd, Key_THORN = 0x0de, Key_Thorn = 0x0de, Key_ssharp = 0x0df, Key_agrave = 0x0e0, Key_aacute = 0x0e1, Key_acircumflex = 0x0e2, Key_atilde = 0x0e3, Key_adiaeresis = 0x0e4, Key_aring = 0x0e5, Key_ae = 0x0e6, Key_ccedilla = 0x0e7, Key_egrave = 0x0e8, Key_eacute = 0x0e9, Key_ecircumflex = 0x0ea, Key_ediaeresis = 0x0eb, Key_igrave = 0x0ec, Key_iacute = 0x0ed, Key_icircumflex = 0x0ee, Key_idiaeresis = 0x0ef, Key_eth = 0x0f0, Key_ntilde = 0x0f1, Key_ograve = 0x0f2, Key_oacute = 0x0f3, Key_ocircumflex = 0x0f4, Key_otilde = 0x0f5, Key_odiaeresis = 0x0f6, Key_division = 0x0f7, Key_oslash = 0x0f8, Key_ooblique = 0x0f8, Key_ugrave = 0x0f9, Key_uacute = 0x0fa, Key_ucircumflex = 0x0fb, Key_udiaeresis = 0x0fc, Key_yacute = 0x0fd, Key_thorn = 0x0fe, Key_ydiaeresis = 0x0ff, Key_Aogonek = 0x1a1, Key_breve = 0x1a2, Key_Lstroke = 0x1a3, Key_Lcaron = 0x1a5, Key_Sacute = 0x1a6, Key_Scaron = 0x1a9, Key_Scedilla = 0x1aa, Key_Tcaron = 0x1ab, Key_Zacute = 0x1ac, Key_Zcaron = 0x1ae, Key_Zabovedot = 0x1af, Key_aogonek = 0x1b1, Key_ogonek = 0x1b2, Key_lstroke = 0x1b3, Key_lcaron = 0x1b5, Key_sacute = 0x1b6, Key_caron = 0x1b7, Key_scaron = 0x1b9, Key_scedilla = 0x1ba, Key_tcaron = 0x1bb, Key_zacute = 0x1bc, Key_doubleacute = 0x1bd, Key_zcaron = 0x1be, Key_zabovedot = 0x1bf, Key_Racute = 0x1c0, Key_Abreve = 0x1c3, Key_Lacute = 0x1c5, Key_Cacute = 0x1c6, Key_Ccaron = 0x1c8, Key_Eogonek = 0x1ca, Key_Ecaron = 0x1cc, Key_Dcaron = 0x1cf, Key_Dstroke = 0x1d0, Key_Nacute = 0x1d1, Key_Ncaron = 0x1d2, Key_Odoubleacute = 0x1d5, Key_Rcaron = 0x1d8, Key_Uring = 0x1d9, Key_Udoubleacute = 0x1db, Key_Tcedilla = 0x1de, Key_racute = 0x1e0, Key_abreve = 0x1e3, Key_lacute = 0x1e5, Key_cacute = 0x1e6, Key_ccaron = 0x1e8, Key_eogonek = 0x1ea, Key_ecaron = 0x1ec, Key_dcaron = 0x1ef, Key_dstroke = 0x1f0, Key_nacute = 0x1f1, Key_ncaron = 0x1f2, Key_odoubleacute = 0x1f5, Key_udoubleacute = 0x1fb, Key_rcaron = 0x1f8, Key_uring = 0x1f9, Key_tcedilla = 0x1fe, Key_abovedot = 0x1ff, Key_Hstroke = 0x2a1, Key_Hcircumflex = 0x2a6, Key_Iabovedot = 0x2a9, Key_Gbreve = 0x2ab, Key_Jcircumflex = 0x2ac, Key_hstroke = 0x2b1, Key_hcircumflex = 0x2b6, Key_idotless = 0x2b9, Key_gbreve = 0x2bb, Key_jcircumflex = 0x2bc, Key_Cabovedot = 0x2c5, Key_Ccircumflex = 0x2c6, Key_Gabovedot = 0x2d5, Key_Gcircumflex = 0x2d8, Key_Ubreve = 0x2dd, Key_Scircumflex = 0x2de, Key_cabovedot = 0x2e5, Key_ccircumflex = 0x2e6, Key_gabovedot = 0x2f5, Key_gcircumflex = 0x2f8, Key_ubreve = 0x2fd, Key_scircumflex = 0x2fe, Key_kra = 0x3a2, Key_kappa = 0x3a2, Key_Rcedilla = 0x3a3, Key_Itilde = 0x3a5, Key_Lcedilla = 0x3a6, Key_Emacron = 0x3aa, Key_Gcedilla = 0x3ab, Key_Tslash = 0x3ac, Key_rcedilla = 0x3b3, Key_itilde = 0x3b5, Key_lcedilla = 0x3b6, Key_emacron = 0x3ba, Key_gcedilla = 0x3bb, Key_tslash = 0x3bc, Key_ENG = 0x3bd, Key_eng = 0x3bf, Key_Amacron = 0x3c0, Key_Iogonek = 0x3c7, Key_Eabovedot = 0x3cc, Key_Imacron = 0x3cf, Key_Ncedilla = 0x3d1, Key_Omacron = 0x3d2, Key_Kcedilla = 0x3d3, Key_Uogonek = 0x3d9, Key_Utilde = 0x3dd, Key_Umacron = 0x3de, Key_amacron = 0x3e0, Key_iogonek = 0x3e7, Key_eabovedot = 0x3ec, Key_imacron = 0x3ef, Key_ncedilla = 0x3f1, Key_omacron = 0x3f2, Key_kcedilla = 0x3f3, Key_uogonek = 0x3f9, Key_utilde = 0x3fd, Key_umacron = 0x3fe, Key_Babovedot = 0x1001e02, Key_babovedot = 0x1001e03, Key_Dabovedot = 0x1001e0a, Key_Wgrave = 0x1001e80, Key_Wacute = 0x1001e82, Key_dabovedot = 0x1001e0b, Key_Ygrave = 0x1001ef2, Key_Fabovedot = 0x1001e1e, Key_fabovedot = 0x1001e1f, Key_Mabovedot = 0x1001e40, Key_mabovedot = 0x1001e41, Key_Pabovedot = 0x1001e56, Key_wgrave = 0x1001e81, Key_pabovedot = 0x1001e57, Key_wacute = 0x1001e83, Key_Sabovedot = 0x1001e60, Key_ygrave = 0x1001ef3, Key_Wdiaeresis = 0x1001e84, Key_wdiaeresis = 0x1001e85, Key_sabovedot = 0x1001e61, Key_Wcircumflex = 0x1000174, Key_Tabovedot = 0x1001e6a, Key_Ycircumflex = 0x1000176, Key_wcircumflex = 0x1000175, Key_tabovedot = 0x1001e6b, Key_ycircumflex = 0x1000177, Key_OE = 0x13bc, Key_oe = 0x13bd, Key_Ydiaeresis = 0x13be, Key_overline = 0x47e, Key_kana_fullstop = 0x4a1, Key_kana_openingbracket = 0x4a2, Key_kana_closingbracket = 0x4a3, Key_kana_comma = 0x4a4, Key_kana_conjunctive = 0x4a5, Key_kana_middledot = 0x4a5, Key_kana_WO = 0x4a6, Key_kana_a = 0x4a7, Key_kana_i = 0x4a8, Key_kana_u = 0x4a9, Key_kana_e = 0x4aa, Key_kana_o = 0x4ab, Key_kana_ya = 0x4ac, Key_kana_yu = 0x4ad, Key_kana_yo = 0x4ae, Key_kana_tsu = 0x4af, Key_kana_tu = 0x4af, Key_prolongedsound = 0x4b0, Key_kana_A = 0x4b1, Key_kana_I = 0x4b2, Key_kana_U = 0x4b3, Key_kana_E = 0x4b4, Key_kana_O = 0x4b5, Key_kana_KA = 0x4b6, Key_kana_KI = 0x4b7, Key_kana_KU = 0x4b8, Key_kana_KE = 0x4b9, Key_kana_KO = 0x4ba, Key_kana_SA = 0x4bb, Key_kana_SHI = 0x4bc, Key_kana_SU = 0x4bd, Key_kana_SE = 0x4be, Key_kana_SO = 0x4bf, Key_kana_TA = 0x4c0, Key_kana_CHI = 0x4c1, Key_kana_TI = 0x4c1, Key_kana_TSU = 0x4c2, Key_kana_TU = 0x4c2, Key_kana_TE = 0x4c3, Key_kana_TO = 0x4c4, Key_kana_NA = 0x4c5, Key_kana_NI = 0x4c6, Key_kana_NU = 0x4c7, Key_kana_NE = 0x4c8, Key_kana_NO = 0x4c9, Key_kana_HA = 0x4ca, Key_kana_HI = 0x4cb, Key_kana_FU = 0x4cc, Key_kana_HU = 0x4cc, Key_kana_HE = 0x4cd, Key_kana_HO = 0x4ce, Key_kana_MA = 0x4cf, Key_kana_MI = 0x4d0, Key_kana_MU = 0x4d1, Key_kana_ME = 0x4d2, Key_kana_MO = 0x4d3, Key_kana_YA = 0x4d4, Key_kana_YU = 0x4d5, Key_kana_YO = 0x4d6, Key_kana_RA = 0x4d7, Key_kana_RI = 0x4d8, Key_kana_RU = 0x4d9, Key_kana_RE = 0x4da, Key_kana_RO = 0x4db, Key_kana_WA = 0x4dc, Key_kana_N = 0x4dd, Key_voicedsound = 0x4de, Key_semivoicedsound = 0x4df, Key_kana_switch = 0xff7e, Key_Farsi_0 = 0x10006f0, Key_Farsi_1 = 0x10006f1, Key_Farsi_2 = 0x10006f2, Key_Farsi_3 = 0x10006f3, Key_Farsi_4 = 0x10006f4, Key_Farsi_5 = 0x10006f5, Key_Farsi_6 = 0x10006f6, Key_Farsi_7 = 0x10006f7, Key_Farsi_8 = 0x10006f8, Key_Farsi_9 = 0x10006f9, Key_Arabic_percent = 0x100066a, Key_Arabic_superscript_alef = 0x1000670, Key_Arabic_tteh = 0x1000679, Key_Arabic_peh = 0x100067e, Key_Arabic_tcheh = 0x1000686, Key_Arabic_ddal = 0x1000688, Key_Arabic_rreh = 0x1000691, Key_Arabic_comma = 0x5ac, Key_Arabic_fullstop = 0x10006d4, Key_Arabic_0 = 0x1000660, Key_Arabic_1 = 0x1000661, Key_Arabic_2 = 0x1000662, Key_Arabic_3 = 0x1000663, Key_Arabic_4 = 0x1000664, Key_Arabic_5 = 0x1000665, Key_Arabic_6 = 0x1000666, Key_Arabic_7 = 0x1000667, Key_Arabic_8 = 0x1000668, Key_Arabic_9 = 0x1000669, Key_Arabic_semicolon = 0x5bb, Key_Arabic_question_mark = 0x5bf, Key_Arabic_hamza = 0x5c1, Key_Arabic_maddaonalef = 0x5c2, Key_Arabic_hamzaonalef = 0x5c3, Key_Arabic_hamzaonwaw = 0x5c4, Key_Arabic_hamzaunderalef = 0x5c5, Key_Arabic_hamzaonyeh = 0x5c6, Key_Arabic_alef = 0x5c7, Key_Arabic_beh = 0x5c8, Key_Arabic_tehmarbuta = 0x5c9, Key_Arabic_teh = 0x5ca, Key_Arabic_theh = 0x5cb, Key_Arabic_jeem = 0x5cc, Key_Arabic_hah = 0x5cd, Key_Arabic_khah = 0x5ce, Key_Arabic_dal = 0x5cf, Key_Arabic_thal = 0x5d0, Key_Arabic_ra = 0x5d1, Key_Arabic_zain = 0x5d2, Key_Arabic_seen = 0x5d3, Key_Arabic_sheen = 0x5d4, Key_Arabic_sad = 0x5d5, Key_Arabic_dad = 0x5d6, Key_Arabic_tah = 0x5d7, Key_Arabic_zah = 0x5d8, Key_Arabic_ain = 0x5d9, Key_Arabic_ghain = 0x5da, Key_Arabic_tatweel = 0x5e0, Key_Arabic_feh = 0x5e1, Key_Arabic_qaf = 0x5e2, Key_Arabic_kaf = 0x5e3, Key_Arabic_lam = 0x5e4, Key_Arabic_meem = 0x5e5, Key_Arabic_noon = 0x5e6, Key_Arabic_ha = 0x5e7, Key_Arabic_heh = 0x5e7, Key_Arabic_waw = 0x5e8, Key_Arabic_alefmaksura = 0x5e9, Key_Arabic_yeh = 0x5ea, Key_Arabic_fathatan = 0x5eb, Key_Arabic_dammatan = 0x5ec, Key_Arabic_kasratan = 0x5ed, Key_Arabic_fatha = 0x5ee, Key_Arabic_damma = 0x5ef, Key_Arabic_kasra = 0x5f0, Key_Arabic_shadda = 0x5f1, Key_Arabic_sukun = 0x5f2, Key_Arabic_madda_above = 0x1000653, Key_Arabic_hamza_above = 0x1000654, Key_Arabic_hamza_below = 0x1000655, Key_Arabic_jeh = 0x1000698, Key_Arabic_veh = 0x10006a4, Key_Arabic_keheh = 0x10006a9, Key_Arabic_gaf = 0x10006af, Key_Arabic_noon_ghunna = 0x10006ba, Key_Arabic_heh_doachashmee = 0x10006be, Key_Farsi_yeh = 0x10006cc, Key_Arabic_farsi_yeh = 0x10006cc, Key_Arabic_yeh_baree = 0x10006d2, Key_Arabic_heh_goal = 0x10006c1, Key_Arabic_switch = 0xff7e, Key_Cyrillic_GHE_bar = 0x1000492, Key_Cyrillic_ghe_bar = 0x1000493, Key_Cyrillic_ZHE_descender = 0x1000496, Key_Cyrillic_zhe_descender = 0x1000497, Key_Cyrillic_KA_descender = 0x100049a, Key_Cyrillic_ka_descender = 0x100049b, Key_Cyrillic_KA_vertstroke = 0x100049c, Key_Cyrillic_ka_vertstroke = 0x100049d, Key_Cyrillic_EN_descender = 0x10004a2, Key_Cyrillic_en_descender = 0x10004a3, Key_Cyrillic_U_straight = 0x10004ae, Key_Cyrillic_u_straight = 0x10004af, Key_Cyrillic_U_straight_bar = 0x10004b0, Key_Cyrillic_u_straight_bar = 0x10004b1, Key_Cyrillic_HA_descender = 0x10004b2, Key_Cyrillic_ha_descender = 0x10004b3, Key_Cyrillic_CHE_descender = 0x10004b6, Key_Cyrillic_che_descender = 0x10004b7, Key_Cyrillic_CHE_vertstroke = 0x10004b8, Key_Cyrillic_che_vertstroke = 0x10004b9, Key_Cyrillic_SHHA = 0x10004ba, Key_Cyrillic_shha = 0x10004bb, Key_Cyrillic_SCHWA = 0x10004d8, Key_Cyrillic_schwa = 0x10004d9, Key_Cyrillic_I_macron = 0x10004e2, Key_Cyrillic_i_macron = 0x10004e3, Key_Cyrillic_O_bar = 0x10004e8, Key_Cyrillic_o_bar = 0x10004e9, Key_Cyrillic_U_macron = 0x10004ee, Key_Cyrillic_u_macron = 0x10004ef, Key_Serbian_dje = 0x6a1, Key_Macedonia_gje = 0x6a2, Key_Cyrillic_io = 0x6a3, Key_Ukrainian_ie = 0x6a4, Key_Ukranian_je = 0x6a4, Key_Macedonia_dse = 0x6a5, Key_Ukrainian_i = 0x6a6, Key_Ukranian_i = 0x6a6, Key_Ukrainian_yi = 0x6a7, Key_Ukranian_yi = 0x6a7, Key_Cyrillic_je = 0x6a8, Key_Serbian_je = 0x6a8, Key_Cyrillic_lje = 0x6a9, Key_Serbian_lje = 0x6a9, Key_Cyrillic_nje = 0x6aa, Key_Serbian_nje = 0x6aa, Key_Serbian_tshe = 0x6ab, Key_Macedonia_kje = 0x6ac, Key_Ukrainian_ghe_with_upturn = 0x6ad, Key_Byelorussian_shortu = 0x6ae, Key_Cyrillic_dzhe = 0x6af, Key_Serbian_dze = 0x6af, Key_numerosign = 0x6b0, Key_Serbian_DJE = 0x6b1, Key_Macedonia_GJE = 0x6b2, Key_Cyrillic_IO = 0x6b3, Key_Ukrainian_IE = 0x6b4, Key_Ukranian_JE = 0x6b4, Key_Macedonia_DSE = 0x6b5, Key_Ukrainian_I = 0x6b6, Key_Ukranian_I = 0x6b6, Key_Ukrainian_YI = 0x6b7, Key_Ukranian_YI = 0x6b7, Key_Cyrillic_JE = 0x6b8, Key_Serbian_JE = 0x6b8, Key_Cyrillic_LJE = 0x6b9, Key_Serbian_LJE = 0x6b9, Key_Cyrillic_NJE = 0x6ba, Key_Serbian_NJE = 0x6ba, Key_Serbian_TSHE = 0x6bb, Key_Macedonia_KJE = 0x6bc, Key_Ukrainian_GHE_WITH_UPTURN = 0x6bd, Key_Byelorussian_SHORTU = 0x6be, Key_Cyrillic_DZHE = 0x6bf, Key_Serbian_DZE = 0x6bf, Key_Cyrillic_yu = 0x6c0, Key_Cyrillic_a = 0x6c1, Key_Cyrillic_be = 0x6c2, Key_Cyrillic_tse = 0x6c3, Key_Cyrillic_de = 0x6c4, Key_Cyrillic_ie = 0x6c5, Key_Cyrillic_ef = 0x6c6, Key_Cyrillic_ghe = 0x6c7, Key_Cyrillic_ha = 0x6c8, Key_Cyrillic_i = 0x6c9, Key_Cyrillic_shorti = 0x6ca, Key_Cyrillic_ka = 0x6cb, Key_Cyrillic_el = 0x6cc, Key_Cyrillic_em = 0x6cd, Key_Cyrillic_en = 0x6ce, Key_Cyrillic_o = 0x6cf, Key_Cyrillic_pe = 0x6d0, Key_Cyrillic_ya = 0x6d1, Key_Cyrillic_er = 0x6d2, Key_Cyrillic_es = 0x6d3, Key_Cyrillic_te = 0x6d4, Key_Cyrillic_u = 0x6d5, Key_Cyrillic_zhe = 0x6d6, Key_Cyrillic_ve = 0x6d7, Key_Cyrillic_softsign = 0x6d8, Key_Cyrillic_yeru = 0x6d9, Key_Cyrillic_ze = 0x6da, Key_Cyrillic_sha = 0x6db, Key_Cyrillic_e = 0x6dc, Key_Cyrillic_shcha = 0x6dd, Key_Cyrillic_che = 0x6de, Key_Cyrillic_hardsign = 0x6df, Key_Cyrillic_YU = 0x6e0, Key_Cyrillic_A = 0x6e1, Key_Cyrillic_BE = 0x6e2, Key_Cyrillic_TSE = 0x6e3, Key_Cyrillic_DE = 0x6e4, Key_Cyrillic_IE = 0x6e5, Key_Cyrillic_EF = 0x6e6, Key_Cyrillic_GHE = 0x6e7, Key_Cyrillic_HA = 0x6e8, Key_Cyrillic_I = 0x6e9, Key_Cyrillic_SHORTI = 0x6ea, Key_Cyrillic_KA = 0x6eb, Key_Cyrillic_EL = 0x6ec, Key_Cyrillic_EM = 0x6ed, Key_Cyrillic_EN = 0x6ee, Key_Cyrillic_O = 0x6ef, Key_Cyrillic_PE = 0x6f0, Key_Cyrillic_YA = 0x6f1, Key_Cyrillic_ER = 0x6f2, Key_Cyrillic_ES = 0x6f3, Key_Cyrillic_TE = 0x6f4, Key_Cyrillic_U = 0x6f5, Key_Cyrillic_ZHE = 0x6f6, Key_Cyrillic_VE = 0x6f7, Key_Cyrillic_SOFTSIGN = 0x6f8, Key_Cyrillic_YERU = 0x6f9, Key_Cyrillic_ZE = 0x6fa, Key_Cyrillic_SHA = 0x6fb, Key_Cyrillic_E = 0x6fc, Key_Cyrillic_SHCHA = 0x6fd, Key_Cyrillic_CHE = 0x6fe, Key_Cyrillic_HARDSIGN = 0x6ff, Key_Greek_ALPHAaccent = 0x7a1, Key_Greek_EPSILONaccent = 0x7a2, Key_Greek_ETAaccent = 0x7a3, Key_Greek_IOTAaccent = 0x7a4, Key_Greek_IOTAdieresis = 0x7a5, Key_Greek_IOTAdiaeresis = 0x7a5, Key_Greek_OMICRONaccent = 0x7a7, Key_Greek_UPSILONaccent = 0x7a8, Key_Greek_UPSILONdieresis = 0x7a9, Key_Greek_OMEGAaccent = 0x7ab, Key_Greek_accentdieresis = 0x7ae, Key_Greek_horizbar = 0x7af, Key_Greek_alphaaccent = 0x7b1, Key_Greek_epsilonaccent = 0x7b2, Key_Greek_etaaccent = 0x7b3, Key_Greek_iotaaccent = 0x7b4, Key_Greek_iotadieresis = 0x7b5, Key_Greek_iotaaccentdieresis = 0x7b6, Key_Greek_omicronaccent = 0x7b7, Key_Greek_upsilonaccent = 0x7b8, Key_Greek_upsilondieresis = 0x7b9, Key_Greek_upsilonaccentdieresis = 0x7ba, Key_Greek_omegaaccent = 0x7bb, Key_Greek_ALPHA = 0x7c1, Key_Greek_BETA = 0x7c2, Key_Greek_GAMMA = 0x7c3, Key_Greek_DELTA = 0x7c4, Key_Greek_EPSILON = 0x7c5, Key_Greek_ZETA = 0x7c6, Key_Greek_ETA = 0x7c7, Key_Greek_THETA = 0x7c8, Key_Greek_IOTA = 0x7c9, Key_Greek_KAPPA = 0x7ca, Key_Greek_LAMDA = 0x7cb, Key_Greek_LAMBDA = 0x7cb, Key_Greek_MU = 0x7cc, Key_Greek_NU = 0x7cd, Key_Greek_XI = 0x7ce, Key_Greek_OMICRON = 0x7cf, Key_Greek_PI = 0x7d0, Key_Greek_RHO = 0x7d1, Key_Greek_SIGMA = 0x7d2, Key_Greek_TAU = 0x7d4, Key_Greek_UPSILON = 0x7d5, Key_Greek_PHI = 0x7d6, Key_Greek_CHI = 0x7d7, Key_Greek_PSI = 0x7d8, Key_Greek_OMEGA = 0x7d9, Key_Greek_alpha = 0x7e1, Key_Greek_beta = 0x7e2, Key_Greek_gamma = 0x7e3, Key_Greek_delta = 0x7e4, Key_Greek_epsilon = 0x7e5, Key_Greek_zeta = 0x7e6, Key_Greek_eta = 0x7e7, Key_Greek_theta = 0x7e8, Key_Greek_iota = 0x7e9, Key_Greek_kappa = 0x7ea, Key_Greek_lamda = 0x7eb, Key_Greek_lambda = 0x7eb, Key_Greek_mu = 0x7ec, Key_Greek_nu = 0x7ed, Key_Greek_xi = 0x7ee, Key_Greek_omicron = 0x7ef, Key_Greek_pi = 0x7f0, Key_Greek_rho = 0x7f1, Key_Greek_sigma = 0x7f2, Key_Greek_finalsmallsigma = 0x7f3, Key_Greek_tau = 0x7f4, Key_Greek_upsilon = 0x7f5, Key_Greek_phi = 0x7f6, Key_Greek_chi = 0x7f7, Key_Greek_psi = 0x7f8, Key_Greek_omega = 0x7f9, Key_Greek_switch = 0xff7e, Key_leftradical = 0x8a1, Key_topleftradical = 0x8a2, Key_horizconnector = 0x8a3, Key_topintegral = 0x8a4, Key_botintegral = 0x8a5, Key_vertconnector = 0x8a6, Key_topleftsqbracket = 0x8a7, Key_botleftsqbracket = 0x8a8, Key_toprightsqbracket = 0x8a9, Key_botrightsqbracket = 0x8aa, Key_topleftparens = 0x8ab, Key_botleftparens = 0x8ac, Key_toprightparens = 0x8ad, Key_botrightparens = 0x8ae, Key_leftmiddlecurlybrace = 0x8af, Key_rightmiddlecurlybrace = 0x8b0, Key_topleftsummation = 0x8b1, Key_botleftsummation = 0x8b2, Key_topvertsummationconnector = 0x8b3, Key_botvertsummationconnector = 0x8b4, Key_toprightsummation = 0x8b5, Key_botrightsummation = 0x8b6, Key_rightmiddlesummation = 0x8b7, Key_lessthanequal = 0x8bc, Key_notequal = 0x8bd, Key_greaterthanequal = 0x8be, Key_integral = 0x8bf, Key_therefore = 0x8c0, Key_variation = 0x8c1, Key_infinity = 0x8c2, Key_nabla = 0x8c5, Key_approximate = 0x8c8, Key_similarequal = 0x8c9, Key_ifonlyif = 0x8cd, Key_implies = 0x8ce, Key_identical = 0x8cf, Key_radical = 0x8d6, Key_includedin = 0x8da, Key_includes = 0x8db, Key_intersection = 0x8dc, Key_union = 0x8dd, Key_logicaland = 0x8de, Key_logicalor = 0x8df, Key_partialderivative = 0x8ef, Key_function = 0x8f6, Key_leftarrow = 0x8fb, Key_uparrow = 0x8fc, Key_rightarrow = 0x8fd, Key_downarrow = 0x8fe, Key_blank = 0x9df, Key_soliddiamond = 0x9e0, Key_checkerboard = 0x9e1, Key_ht = 0x9e2, Key_ff = 0x9e3, Key_cr = 0x9e4, Key_lf = 0x9e5, Key_nl = 0x9e8, Key_vt = 0x9e9, Key_lowrightcorner = 0x9ea, Key_uprightcorner = 0x9eb, Key_upleftcorner = 0x9ec, Key_lowleftcorner = 0x9ed, Key_crossinglines = 0x9ee, Key_horizlinescan1 = 0x9ef, Key_horizlinescan3 = 0x9f0, Key_horizlinescan5 = 0x9f1, Key_horizlinescan7 = 0x9f2, Key_horizlinescan9 = 0x9f3, Key_leftt = 0x9f4, Key_rightt = 0x9f5, Key_bott = 0x9f6, Key_topt = 0x9f7, Key_vertbar = 0x9f8, Key_emspace = 0xaa1, Key_enspace = 0xaa2, Key_em3space = 0xaa3, Key_em4space = 0xaa4, Key_digitspace = 0xaa5, Key_punctspace = 0xaa6, Key_thinspace = 0xaa7, Key_hairspace = 0xaa8, Key_emdash = 0xaa9, Key_endash = 0xaaa, Key_signifblank = 0xaac, Key_ellipsis = 0xaae, Key_doubbaselinedot = 0xaaf, Key_onethird = 0xab0, Key_twothirds = 0xab1, Key_onefifth = 0xab2, Key_twofifths = 0xab3, Key_threefifths = 0xab4, Key_fourfifths = 0xab5, Key_onesixth = 0xab6, Key_fivesixths = 0xab7, Key_careof = 0xab8, Key_figdash = 0xabb, Key_leftanglebracket = 0xabc, Key_decimalpoint = 0xabd, Key_rightanglebracket = 0xabe, Key_marker = 0xabf, Key_oneeighth = 0xac3, Key_threeeighths = 0xac4, Key_fiveeighths = 0xac5, Key_seveneighths = 0xac6, Key_trademark = 0xac9, Key_signaturemark = 0xaca, Key_trademarkincircle = 0xacb, Key_leftopentriangle = 0xacc, Key_rightopentriangle = 0xacd, Key_emopencircle = 0xace, Key_emopenrectangle = 0xacf, Key_leftsinglequotemark = 0xad0, Key_rightsinglequotemark = 0xad1, Key_leftdoublequotemark = 0xad2, Key_rightdoublequotemark = 0xad3, Key_prescription = 0xad4, Key_minutes = 0xad6, Key_seconds = 0xad7, Key_latincross = 0xad9, Key_hexagram = 0xada, Key_filledrectbullet = 0xadb, Key_filledlefttribullet = 0xadc, Key_filledrighttribullet = 0xadd, Key_emfilledcircle = 0xade, Key_emfilledrect = 0xadf, Key_enopencircbullet = 0xae0, Key_enopensquarebullet = 0xae1, Key_openrectbullet = 0xae2, Key_opentribulletup = 0xae3, Key_opentribulletdown = 0xae4, Key_openstar = 0xae5, Key_enfilledcircbullet = 0xae6, Key_enfilledsqbullet = 0xae7, Key_filledtribulletup = 0xae8, Key_filledtribulletdown = 0xae9, Key_leftpointer = 0xaea, Key_rightpointer = 0xaeb, Key_club = 0xaec, Key_diamond = 0xaed, Key_heart = 0xaee, Key_maltesecross = 0xaf0, Key_dagger = 0xaf1, Key_doubledagger = 0xaf2, Key_checkmark = 0xaf3, Key_ballotcross = 0xaf4, Key_musicalsharp = 0xaf5, Key_musicalflat = 0xaf6, Key_malesymbol = 0xaf7, Key_femalesymbol = 0xaf8, Key_telephone = 0xaf9, Key_telephonerecorder = 0xafa, Key_phonographcopyright = 0xafb, Key_caret = 0xafc, Key_singlelowquotemark = 0xafd, Key_doublelowquotemark = 0xafe, Key_cursor = 0xaff, Key_leftcaret = 0xba3, Key_rightcaret = 0xba6, Key_downcaret = 0xba8, Key_upcaret = 0xba9, Key_overbar = 0xbc0, Key_downtack = 0xbc2, Key_upshoe = 0xbc3, Key_downstile = 0xbc4, Key_underbar = 0xbc6, Key_jot = 0xbca, Key_quad = 0xbcc, Key_uptack = 0xbce, Key_circle = 0xbcf, Key_upstile = 0xbd3, Key_downshoe = 0xbd6, Key_rightshoe = 0xbd8, Key_leftshoe = 0xbda, Key_lefttack = 0xbdc, Key_righttack = 0xbfc, Key_hebrew_doublelowline = 0xcdf, Key_hebrew_aleph = 0xce0, Key_hebrew_bet = 0xce1, Key_hebrew_beth = 0xce1, Key_hebrew_gimel = 0xce2, Key_hebrew_gimmel = 0xce2, Key_hebrew_dalet = 0xce3, Key_hebrew_daleth = 0xce3, Key_hebrew_he = 0xce4, Key_hebrew_waw = 0xce5, Key_hebrew_zain = 0xce6, Key_hebrew_zayin = 0xce6, Key_hebrew_chet = 0xce7, Key_hebrew_het = 0xce7, Key_hebrew_tet = 0xce8, Key_hebrew_teth = 0xce8, Key_hebrew_yod = 0xce9, Key_hebrew_finalkaph = 0xcea, Key_hebrew_kaph = 0xceb, Key_hebrew_lamed = 0xcec, Key_hebrew_finalmem = 0xced, Key_hebrew_mem = 0xcee, Key_hebrew_finalnun = 0xcef, Key_hebrew_nun = 0xcf0, Key_hebrew_samech = 0xcf1, Key_hebrew_samekh = 0xcf1, Key_hebrew_ayin = 0xcf2, Key_hebrew_finalpe = 0xcf3, Key_hebrew_pe = 0xcf4, Key_hebrew_finalzade = 0xcf5, Key_hebrew_finalzadi = 0xcf5, Key_hebrew_zade = 0xcf6, Key_hebrew_zadi = 0xcf6, Key_hebrew_qoph = 0xcf7, Key_hebrew_kuf = 0xcf7, Key_hebrew_resh = 0xcf8, Key_hebrew_shin = 0xcf9, Key_hebrew_taw = 0xcfa, Key_hebrew_taf = 0xcfa, Key_Hebrew_switch = 0xff7e, Key_Thai_kokai = 0xda1, Key_Thai_khokhai = 0xda2, Key_Thai_khokhuat = 0xda3, Key_Thai_khokhwai = 0xda4, Key_Thai_khokhon = 0xda5, Key_Thai_khorakhang = 0xda6, Key_Thai_ngongu = 0xda7, Key_Thai_chochan = 0xda8, Key_Thai_choching = 0xda9, Key_Thai_chochang = 0xdaa, Key_Thai_soso = 0xdab, Key_Thai_chochoe = 0xdac, Key_Thai_yoying = 0xdad, Key_Thai_dochada = 0xdae, Key_Thai_topatak = 0xdaf, Key_Thai_thothan = 0xdb0, Key_Thai_thonangmontho = 0xdb1, Key_Thai_thophuthao = 0xdb2, Key_Thai_nonen = 0xdb3, Key_Thai_dodek = 0xdb4, Key_Thai_totao = 0xdb5, Key_Thai_thothung = 0xdb6, Key_Thai_thothahan = 0xdb7, Key_Thai_thothong = 0xdb8, Key_Thai_nonu = 0xdb9, Key_Thai_bobaimai = 0xdba, Key_Thai_popla = 0xdbb, Key_Thai_phophung = 0xdbc, Key_Thai_fofa = 0xdbd, Key_Thai_phophan = 0xdbe, Key_Thai_fofan = 0xdbf, Key_Thai_phosamphao = 0xdc0, Key_Thai_moma = 0xdc1, Key_Thai_yoyak = 0xdc2, Key_Thai_rorua = 0xdc3, Key_Thai_ru = 0xdc4, Key_Thai_loling = 0xdc5, Key_Thai_lu = 0xdc6, Key_Thai_wowaen = 0xdc7, Key_Thai_sosala = 0xdc8, Key_Thai_sorusi = 0xdc9, Key_Thai_sosua = 0xdca, Key_Thai_hohip = 0xdcb, Key_Thai_lochula = 0xdcc, Key_Thai_oang = 0xdcd, Key_Thai_honokhuk = 0xdce, Key_Thai_paiyannoi = 0xdcf, Key_Thai_saraa = 0xdd0, Key_Thai_maihanakat = 0xdd1, Key_Thai_saraaa = 0xdd2, Key_Thai_saraam = 0xdd3, Key_Thai_sarai = 0xdd4, Key_Thai_saraii = 0xdd5, Key_Thai_saraue = 0xdd6, Key_Thai_sarauee = 0xdd7, Key_Thai_sarau = 0xdd8, Key_Thai_sarauu = 0xdd9, Key_Thai_phinthu = 0xdda, Key_Thai_maihanakat_maitho = 0xdde, Key_Thai_baht = 0xddf, Key_Thai_sarae = 0xde0, Key_Thai_saraae = 0xde1, Key_Thai_sarao = 0xde2, Key_Thai_saraaimaimuan = 0xde3, Key_Thai_saraaimaimalai = 0xde4, Key_Thai_lakkhangyao = 0xde5, Key_Thai_maiyamok = 0xde6, Key_Thai_maitaikhu = 0xde7, Key_Thai_maiek = 0xde8, Key_Thai_maitho = 0xde9, Key_Thai_maitri = 0xdea, Key_Thai_maichattawa = 0xdeb, Key_Thai_thanthakhat = 0xdec, Key_Thai_nikhahit = 0xded, Key_Thai_leksun = 0xdf0, Key_Thai_leknung = 0xdf1, Key_Thai_leksong = 0xdf2, Key_Thai_leksam = 0xdf3, Key_Thai_leksi = 0xdf4, Key_Thai_lekha = 0xdf5, Key_Thai_lekhok = 0xdf6, Key_Thai_lekchet = 0xdf7, Key_Thai_lekpaet = 0xdf8, Key_Thai_lekkao = 0xdf9, Key_Hangul = 0xff31, Key_Hangul_Start = 0xff32, Key_Hangul_End = 0xff33, Key_Hangul_Hanja = 0xff34, Key_Hangul_Jamo = 0xff35, Key_Hangul_Romaja = 0xff36, Key_Hangul_Codeinput = 0xff37, Key_Hangul_Jeonja = 0xff38, Key_Hangul_Banja = 0xff39, Key_Hangul_PreHanja = 0xff3a, Key_Hangul_PostHanja = 0xff3b, Key_Hangul_SingleCandidate = 0xff3c, Key_Hangul_MultipleCandidate = 0xff3d, Key_Hangul_PreviousCandidate = 0xff3e, Key_Hangul_Special = 0xff3f, Key_Hangul_switch = 0xff7e, Key_Hangul_Kiyeog = 0xea1, Key_Hangul_SsangKiyeog = 0xea2, Key_Hangul_KiyeogSios = 0xea3, Key_Hangul_Nieun = 0xea4, Key_Hangul_NieunJieuj = 0xea5, Key_Hangul_NieunHieuh = 0xea6, Key_Hangul_Dikeud = 0xea7, Key_Hangul_SsangDikeud = 0xea8, Key_Hangul_Rieul = 0xea9, Key_Hangul_RieulKiyeog = 0xeaa, Key_Hangul_RieulMieum = 0xeab, Key_Hangul_RieulPieub = 0xeac, Key_Hangul_RieulSios = 0xead, Key_Hangul_RieulTieut = 0xeae, Key_Hangul_RieulPhieuf = 0xeaf, Key_Hangul_RieulHieuh = 0xeb0, Key_Hangul_Mieum = 0xeb1, Key_Hangul_Pieub = 0xeb2, Key_Hangul_SsangPieub = 0xeb3, Key_Hangul_PieubSios = 0xeb4, Key_Hangul_Sios = 0xeb5, Key_Hangul_SsangSios = 0xeb6, Key_Hangul_Ieung = 0xeb7, Key_Hangul_Jieuj = 0xeb8, Key_Hangul_SsangJieuj = 0xeb9, Key_Hangul_Cieuc = 0xeba, Key_Hangul_Khieuq = 0xebb, Key_Hangul_Tieut = 0xebc, Key_Hangul_Phieuf = 0xebd, Key_Hangul_Hieuh = 0xebe, Key_Hangul_A = 0xebf, Key_Hangul_AE = 0xec0, Key_Hangul_YA = 0xec1, Key_Hangul_YAE = 0xec2, Key_Hangul_EO = 0xec3, Key_Hangul_E = 0xec4, Key_Hangul_YEO = 0xec5, Key_Hangul_YE = 0xec6, Key_Hangul_O = 0xec7, Key_Hangul_WA = 0xec8, Key_Hangul_WAE = 0xec9, Key_Hangul_OE = 0xeca, Key_Hangul_YO = 0xecb, Key_Hangul_U = 0xecc, Key_Hangul_WEO = 0xecd, Key_Hangul_WE = 0xece, Key_Hangul_WI = 0xecf, Key_Hangul_YU = 0xed0, Key_Hangul_EU = 0xed1, Key_Hangul_YI = 0xed2, Key_Hangul_I = 0xed3, Key_Hangul_J_Kiyeog = 0xed4, Key_Hangul_J_SsangKiyeog = 0xed5, Key_Hangul_J_KiyeogSios = 0xed6, Key_Hangul_J_Nieun = 0xed7, Key_Hangul_J_NieunJieuj = 0xed8, Key_Hangul_J_NieunHieuh = 0xed9, Key_Hangul_J_Dikeud = 0xeda, Key_Hangul_J_Rieul = 0xedb, Key_Hangul_J_RieulKiyeog = 0xedc, Key_Hangul_J_RieulMieum = 0xedd, Key_Hangul_J_RieulPieub = 0xede, Key_Hangul_J_RieulSios = 0xedf, Key_Hangul_J_RieulTieut = 0xee0, Key_Hangul_J_RieulPhieuf = 0xee1, Key_Hangul_J_RieulHieuh = 0xee2, Key_Hangul_J_Mieum = 0xee3, Key_Hangul_J_Pieub = 0xee4, Key_Hangul_J_PieubSios = 0xee5, Key_Hangul_J_Sios = 0xee6, Key_Hangul_J_SsangSios = 0xee7, Key_Hangul_J_Ieung = 0xee8, Key_Hangul_J_Jieuj = 0xee9, Key_Hangul_J_Cieuc = 0xeea, Key_Hangul_J_Khieuq = 0xeeb, Key_Hangul_J_Tieut = 0xeec, Key_Hangul_J_Phieuf = 0xeed, Key_Hangul_J_Hieuh = 0xeee, Key_Hangul_RieulYeorinHieuh = 0xeef, Key_Hangul_SunkyeongeumMieum = 0xef0, Key_Hangul_SunkyeongeumPieub = 0xef1, Key_Hangul_PanSios = 0xef2, Key_Hangul_KkogjiDalrinIeung = 0xef3, Key_Hangul_SunkyeongeumPhieuf = 0xef4, Key_Hangul_YeorinHieuh = 0xef5, Key_Hangul_AraeA = 0xef6, Key_Hangul_AraeAE = 0xef7, Key_Hangul_J_PanSios = 0xef8, Key_Hangul_J_KkogjiDalrinIeung = 0xef9, Key_Hangul_J_YeorinHieuh = 0xefa, Key_Korean_Won = 0xeff, Key_Armenian_ligature_ew = 0x1000587, Key_Armenian_full_stop = 0x1000589, Key_Armenian_verjaket = 0x1000589, Key_Armenian_separation_mark = 0x100055d, Key_Armenian_but = 0x100055d, Key_Armenian_hyphen = 0x100058a, Key_Armenian_yentamna = 0x100058a, Key_Armenian_exclam = 0x100055c, Key_Armenian_amanak = 0x100055c, Key_Armenian_accent = 0x100055b, Key_Armenian_shesht = 0x100055b, Key_Armenian_question = 0x100055e, Key_Armenian_paruyk = 0x100055e, Key_Armenian_AYB = 0x1000531, Key_Armenian_ayb = 0x1000561, Key_Armenian_BEN = 0x1000532, Key_Armenian_ben = 0x1000562, Key_Armenian_GIM = 0x1000533, Key_Armenian_gim = 0x1000563, Key_Armenian_DA = 0x1000534, Key_Armenian_da = 0x1000564, Key_Armenian_YECH = 0x1000535, Key_Armenian_yech = 0x1000565, Key_Armenian_ZA = 0x1000536, Key_Armenian_za = 0x1000566, Key_Armenian_E = 0x1000537, Key_Armenian_e = 0x1000567, Key_Armenian_AT = 0x1000538, Key_Armenian_at = 0x1000568, Key_Armenian_TO = 0x1000539, Key_Armenian_to = 0x1000569, Key_Armenian_ZHE = 0x100053a, Key_Armenian_zhe = 0x100056a, Key_Armenian_INI = 0x100053b, Key_Armenian_ini = 0x100056b, Key_Armenian_LYUN = 0x100053c, Key_Armenian_lyun = 0x100056c, Key_Armenian_KHE = 0x100053d, Key_Armenian_khe = 0x100056d, Key_Armenian_TSA = 0x100053e, Key_Armenian_tsa = 0x100056e, Key_Armenian_KEN = 0x100053f, Key_Armenian_ken = 0x100056f, Key_Armenian_HO = 0x1000540, Key_Armenian_ho = 0x1000570, Key_Armenian_DZA = 0x1000541, Key_Armenian_dza = 0x1000571, Key_Armenian_GHAT = 0x1000542, Key_Armenian_ghat = 0x1000572, Key_Armenian_TCHE = 0x1000543, Key_Armenian_tche = 0x1000573, Key_Armenian_MEN = 0x1000544, Key_Armenian_men = 0x1000574, Key_Armenian_HI = 0x1000545, Key_Armenian_hi = 0x1000575, Key_Armenian_NU = 0x1000546, Key_Armenian_nu = 0x1000576, Key_Armenian_SHA = 0x1000547, Key_Armenian_sha = 0x1000577, Key_Armenian_VO = 0x1000548, Key_Armenian_vo = 0x1000578, Key_Armenian_CHA = 0x1000549, Key_Armenian_cha = 0x1000579, Key_Armenian_PE = 0x100054a, Key_Armenian_pe = 0x100057a, Key_Armenian_JE = 0x100054b, Key_Armenian_je = 0x100057b, Key_Armenian_RA = 0x100054c, Key_Armenian_ra = 0x100057c, Key_Armenian_SE = 0x100054d, Key_Armenian_se = 0x100057d, Key_Armenian_VEV = 0x100054e, Key_Armenian_vev = 0x100057e, Key_Armenian_TYUN = 0x100054f, Key_Armenian_tyun = 0x100057f, Key_Armenian_RE = 0x1000550, Key_Armenian_re = 0x1000580, Key_Armenian_TSO = 0x1000551, Key_Armenian_tso = 0x1000581, Key_Armenian_VYUN = 0x1000552, Key_Armenian_vyun = 0x1000582, Key_Armenian_PYUR = 0x1000553, Key_Armenian_pyur = 0x1000583, Key_Armenian_KE = 0x1000554, Key_Armenian_ke = 0x1000584, Key_Armenian_O = 0x1000555, Key_Armenian_o = 0x1000585, Key_Armenian_FE = 0x1000556, Key_Armenian_fe = 0x1000586, Key_Armenian_apostrophe = 0x100055a, Key_Georgian_an = 0x10010d0, Key_Georgian_ban = 0x10010d1, Key_Georgian_gan = 0x10010d2, Key_Georgian_don = 0x10010d3, Key_Georgian_en = 0x10010d4, Key_Georgian_vin = 0x10010d5, Key_Georgian_zen = 0x10010d6, Key_Georgian_tan = 0x10010d7, Key_Georgian_in = 0x10010d8, Key_Georgian_kan = 0x10010d9, Key_Georgian_las = 0x10010da, Key_Georgian_man = 0x10010db, Key_Georgian_nar = 0x10010dc, Key_Georgian_on = 0x10010dd, Key_Georgian_par = 0x10010de, Key_Georgian_zhar = 0x10010df, Key_Georgian_rae = 0x10010e0, Key_Georgian_san = 0x10010e1, Key_Georgian_tar = 0x10010e2, Key_Georgian_un = 0x10010e3, Key_Georgian_phar = 0x10010e4, Key_Georgian_khar = 0x10010e5, Key_Georgian_ghan = 0x10010e6, Key_Georgian_qar = 0x10010e7, Key_Georgian_shin = 0x10010e8, Key_Georgian_chin = 0x10010e9, Key_Georgian_can = 0x10010ea, Key_Georgian_jil = 0x10010eb, Key_Georgian_cil = 0x10010ec, Key_Georgian_char = 0x10010ed, Key_Georgian_xan = 0x10010ee, Key_Georgian_jhan = 0x10010ef, Key_Georgian_hae = 0x10010f0, Key_Georgian_he = 0x10010f1, Key_Georgian_hie = 0x10010f2, Key_Georgian_we = 0x10010f3, Key_Georgian_har = 0x10010f4, Key_Georgian_hoe = 0x10010f5, Key_Georgian_fi = 0x10010f6, Key_Xabovedot = 0x1001e8a, Key_Ibreve = 0x100012c, Key_Zstroke = 0x10001b5, Key_Gcaron = 0x10001e6, Key_Ocaron = 0x10001d1, Key_Obarred = 0x100019f, Key_xabovedot = 0x1001e8b, Key_ibreve = 0x100012d, Key_zstroke = 0x10001b6, Key_gcaron = 0x10001e7, Key_ocaron = 0x10001d2, Key_obarred = 0x1000275, Key_SCHWA = 0x100018f, Key_schwa = 0x1000259, Key_Lbelowdot = 0x1001e36, Key_lbelowdot = 0x1001e37, Key_Abelowdot = 0x1001ea0, Key_abelowdot = 0x1001ea1, Key_Ahook = 0x1001ea2, Key_ahook = 0x1001ea3, Key_Acircumflexacute = 0x1001ea4, Key_acircumflexacute = 0x1001ea5, Key_Acircumflexgrave = 0x1001ea6, Key_acircumflexgrave = 0x1001ea7, Key_Acircumflexhook = 0x1001ea8, Key_acircumflexhook = 0x1001ea9, Key_Acircumflextilde = 0x1001eaa, Key_acircumflextilde = 0x1001eab, Key_Acircumflexbelowdot = 0x1001eac, Key_acircumflexbelowdot = 0x1001ead, Key_Abreveacute = 0x1001eae, Key_abreveacute = 0x1001eaf, Key_Abrevegrave = 0x1001eb0, Key_abrevegrave = 0x1001eb1, Key_Abrevehook = 0x1001eb2, Key_abrevehook = 0x1001eb3, Key_Abrevetilde = 0x1001eb4, Key_abrevetilde = 0x1001eb5, Key_Abrevebelowdot = 0x1001eb6, Key_abrevebelowdot = 0x1001eb7, Key_Ebelowdot = 0x1001eb8, Key_ebelowdot = 0x1001eb9, Key_Ehook = 0x1001eba, Key_ehook = 0x1001ebb, Key_Etilde = 0x1001ebc, Key_etilde = 0x1001ebd, Key_Ecircumflexacute = 0x1001ebe, Key_ecircumflexacute = 0x1001ebf, Key_Ecircumflexgrave = 0x1001ec0, Key_ecircumflexgrave = 0x1001ec1, Key_Ecircumflexhook = 0x1001ec2, Key_ecircumflexhook = 0x1001ec3, Key_Ecircumflextilde = 0x1001ec4, Key_ecircumflextilde = 0x1001ec5, Key_Ecircumflexbelowdot = 0x1001ec6, Key_ecircumflexbelowdot = 0x1001ec7, Key_Ihook = 0x1001ec8, Key_ihook = 0x1001ec9, Key_Ibelowdot = 0x1001eca, Key_ibelowdot = 0x1001ecb, Key_Obelowdot = 0x1001ecc, Key_obelowdot = 0x1001ecd, Key_Ohook = 0x1001ece, Key_ohook = 0x1001ecf, Key_Ocircumflexacute = 0x1001ed0, Key_ocircumflexacute = 0x1001ed1, Key_Ocircumflexgrave = 0x1001ed2, Key_ocircumflexgrave = 0x1001ed3, Key_Ocircumflexhook = 0x1001ed4, Key_ocircumflexhook = 0x1001ed5, Key_Ocircumflextilde = 0x1001ed6, Key_ocircumflextilde = 0x1001ed7, Key_Ocircumflexbelowdot = 0x1001ed8, Key_ocircumflexbelowdot = 0x1001ed9, Key_Ohornacute = 0x1001eda, Key_ohornacute = 0x1001edb, Key_Ohorngrave = 0x1001edc, Key_ohorngrave = 0x1001edd, Key_Ohornhook = 0x1001ede, Key_ohornhook = 0x1001edf, Key_Ohorntilde = 0x1001ee0, Key_ohorntilde = 0x1001ee1, Key_Ohornbelowdot = 0x1001ee2, Key_ohornbelowdot = 0x1001ee3, Key_Ubelowdot = 0x1001ee4, Key_ubelowdot = 0x1001ee5, Key_Uhook = 0x1001ee6, Key_uhook = 0x1001ee7, Key_Uhornacute = 0x1001ee8, Key_uhornacute = 0x1001ee9, Key_Uhorngrave = 0x1001eea, Key_uhorngrave = 0x1001eeb, Key_Uhornhook = 0x1001eec, Key_uhornhook = 0x1001eed, Key_Uhorntilde = 0x1001eee, Key_uhorntilde = 0x1001eef, Key_Uhornbelowdot = 0x1001ef0, Key_uhornbelowdot = 0x1001ef1, Key_Ybelowdot = 0x1001ef4, Key_ybelowdot = 0x1001ef5, Key_Yhook = 0x1001ef6, Key_yhook = 0x1001ef7, Key_Ytilde = 0x1001ef8, Key_ytilde = 0x1001ef9, Key_Ohorn = 0x10001a0, Key_ohorn = 0x10001a1, Key_Uhorn = 0x10001af, Key_uhorn = 0x10001b0, Key_EcuSign = 0x10020a0, Key_ColonSign = 0x10020a1, Key_CruzeiroSign = 0x10020a2, Key_FFrancSign = 0x10020a3, Key_LiraSign = 0x10020a4, Key_MillSign = 0x10020a5, Key_NairaSign = 0x10020a6, Key_PesetaSign = 0x10020a7, Key_RupeeSign = 0x10020a8, Key_WonSign = 0x10020a9, Key_NewSheqelSign = 0x10020aa, Key_DongSign = 0x10020ab, Key_EuroSign = 0x20ac, Key_zerosuperior = 0x1002070, Key_foursuperior = 0x1002074, Key_fivesuperior = 0x1002075, Key_sixsuperior = 0x1002076, Key_sevensuperior = 0x1002077, Key_eightsuperior = 0x1002078, Key_ninesuperior = 0x1002079, Key_zerosubscript = 0x1002080, Key_onesubscript = 0x1002081, Key_twosubscript = 0x1002082, Key_threesubscript = 0x1002083, Key_foursubscript = 0x1002084, Key_fivesubscript = 0x1002085, Key_sixsubscript = 0x1002086, Key_sevensubscript = 0x1002087, Key_eightsubscript = 0x1002088, Key_ninesubscript = 0x1002089, Key_partdifferential = 0x1002202, Key_emptyset = 0x1002205, Key_elementof = 0x1002208, Key_notelementof = 0x1002209, Key_containsas = 0x100220b, Key_squareroot = 0x100221a, Key_cuberoot = 0x100221b, Key_fourthroot = 0x100221c, Key_dintegral = 0x100222c, Key_tintegral = 0x100222d, Key_because = 0x1002235, Key_approxeq = 0x1002248, Key_notapproxeq = 0x1002247, Key_notidentical = 0x1002262, Key_stricteq = 0x1002263, Key_braille_dot_1 = 0xfff1, Key_braille_dot_2 = 0xfff2, Key_braille_dot_3 = 0xfff3, Key_braille_dot_4 = 0xfff4, Key_braille_dot_5 = 0xfff5, Key_braille_dot_6 = 0xfff6, Key_braille_dot_7 = 0xfff7, Key_braille_dot_8 = 0xfff8, Key_braille_dot_9 = 0xfff9, Key_braille_dot_10 = 0xfffa, Key_braille_blank = 0x1002800, Key_braille_dots_1 = 0x1002801, Key_braille_dots_2 = 0x1002802, Key_braille_dots_12 = 0x1002803, Key_braille_dots_3 = 0x1002804, Key_braille_dots_13 = 0x1002805, Key_braille_dots_23 = 0x1002806, Key_braille_dots_123 = 0x1002807, Key_braille_dots_4 = 0x1002808, Key_braille_dots_14 = 0x1002809, Key_braille_dots_24 = 0x100280a, Key_braille_dots_124 = 0x100280b, Key_braille_dots_34 = 0x100280c, Key_braille_dots_134 = 0x100280d, Key_braille_dots_234 = 0x100280e, Key_braille_dots_1234 = 0x100280f, Key_braille_dots_5 = 0x1002810, Key_braille_dots_15 = 0x1002811, Key_braille_dots_25 = 0x1002812, Key_braille_dots_125 = 0x1002813, Key_braille_dots_35 = 0x1002814, Key_braille_dots_135 = 0x1002815, Key_braille_dots_235 = 0x1002816, Key_braille_dots_1235 = 0x1002817, Key_braille_dots_45 = 0x1002818, Key_braille_dots_145 = 0x1002819, Key_braille_dots_245 = 0x100281a, Key_braille_dots_1245 = 0x100281b, Key_braille_dots_345 = 0x100281c, Key_braille_dots_1345 = 0x100281d, Key_braille_dots_2345 = 0x100281e, Key_braille_dots_12345 = 0x100281f, Key_braille_dots_6 = 0x1002820, Key_braille_dots_16 = 0x1002821, Key_braille_dots_26 = 0x1002822, Key_braille_dots_126 = 0x1002823, Key_braille_dots_36 = 0x1002824, Key_braille_dots_136 = 0x1002825, Key_braille_dots_236 = 0x1002826, Key_braille_dots_1236 = 0x1002827, Key_braille_dots_46 = 0x1002828, Key_braille_dots_146 = 0x1002829, Key_braille_dots_246 = 0x100282a, Key_braille_dots_1246 = 0x100282b, Key_braille_dots_346 = 0x100282c, Key_braille_dots_1346 = 0x100282d, Key_braille_dots_2346 = 0x100282e, Key_braille_dots_12346 = 0x100282f, Key_braille_dots_56 = 0x1002830, Key_braille_dots_156 = 0x1002831, Key_braille_dots_256 = 0x1002832, Key_braille_dots_1256 = 0x1002833, Key_braille_dots_356 = 0x1002834, Key_braille_dots_1356 = 0x1002835, Key_braille_dots_2356 = 0x1002836, Key_braille_dots_12356 = 0x1002837, Key_braille_dots_456 = 0x1002838, Key_braille_dots_1456 = 0x1002839, Key_braille_dots_2456 = 0x100283a, Key_braille_dots_12456 = 0x100283b, Key_braille_dots_3456 = 0x100283c, Key_braille_dots_13456 = 0x100283d, Key_braille_dots_23456 = 0x100283e, Key_braille_dots_123456 = 0x100283f, Key_braille_dots_7 = 0x1002840, Key_braille_dots_17 = 0x1002841, Key_braille_dots_27 = 0x1002842, Key_braille_dots_127 = 0x1002843, Key_braille_dots_37 = 0x1002844, Key_braille_dots_137 = 0x1002845, Key_braille_dots_237 = 0x1002846, Key_braille_dots_1237 = 0x1002847, Key_braille_dots_47 = 0x1002848, Key_braille_dots_147 = 0x1002849, Key_braille_dots_247 = 0x100284a, Key_braille_dots_1247 = 0x100284b, Key_braille_dots_347 = 0x100284c, Key_braille_dots_1347 = 0x100284d, Key_braille_dots_2347 = 0x100284e, Key_braille_dots_12347 = 0x100284f, Key_braille_dots_57 = 0x1002850, Key_braille_dots_157 = 0x1002851, Key_braille_dots_257 = 0x1002852, Key_braille_dots_1257 = 0x1002853, Key_braille_dots_357 = 0x1002854, Key_braille_dots_1357 = 0x1002855, Key_braille_dots_2357 = 0x1002856, Key_braille_dots_12357 = 0x1002857, Key_braille_dots_457 = 0x1002858, Key_braille_dots_1457 = 0x1002859, Key_braille_dots_2457 = 0x100285a, Key_braille_dots_12457 = 0x100285b, Key_braille_dots_3457 = 0x100285c, Key_braille_dots_13457 = 0x100285d, Key_braille_dots_23457 = 0x100285e, Key_braille_dots_123457 = 0x100285f, Key_braille_dots_67 = 0x1002860, Key_braille_dots_167 = 0x1002861, Key_braille_dots_267 = 0x1002862, Key_braille_dots_1267 = 0x1002863, Key_braille_dots_367 = 0x1002864, Key_braille_dots_1367 = 0x1002865, Key_braille_dots_2367 = 0x1002866, Key_braille_dots_12367 = 0x1002867, Key_braille_dots_467 = 0x1002868, Key_braille_dots_1467 = 0x1002869, Key_braille_dots_2467 = 0x100286a, Key_braille_dots_12467 = 0x100286b, Key_braille_dots_3467 = 0x100286c, Key_braille_dots_13467 = 0x100286d, Key_braille_dots_23467 = 0x100286e, Key_braille_dots_123467 = 0x100286f, Key_braille_dots_567 = 0x1002870, Key_braille_dots_1567 = 0x1002871, Key_braille_dots_2567 = 0x1002872, Key_braille_dots_12567 = 0x1002873, Key_braille_dots_3567 = 0x1002874, Key_braille_dots_13567 = 0x1002875, Key_braille_dots_23567 = 0x1002876, Key_braille_dots_123567 = 0x1002877, Key_braille_dots_4567 = 0x1002878, Key_braille_dots_14567 = 0x1002879, Key_braille_dots_24567 = 0x100287a, Key_braille_dots_124567 = 0x100287b, Key_braille_dots_34567 = 0x100287c, Key_braille_dots_134567 = 0x100287d, Key_braille_dots_234567 = 0x100287e, Key_braille_dots_1234567 = 0x100287f, Key_braille_dots_8 = 0x1002880, Key_braille_dots_18 = 0x1002881, Key_braille_dots_28 = 0x1002882, Key_braille_dots_128 = 0x1002883, Key_braille_dots_38 = 0x1002884, Key_braille_dots_138 = 0x1002885, Key_braille_dots_238 = 0x1002886, Key_braille_dots_1238 = 0x1002887, Key_braille_dots_48 = 0x1002888, Key_braille_dots_148 = 0x1002889, Key_braille_dots_248 = 0x100288a, Key_braille_dots_1248 = 0x100288b, Key_braille_dots_348 = 0x100288c, Key_braille_dots_1348 = 0x100288d, Key_braille_dots_2348 = 0x100288e, Key_braille_dots_12348 = 0x100288f, Key_braille_dots_58 = 0x1002890, Key_braille_dots_158 = 0x1002891, Key_braille_dots_258 = 0x1002892, Key_braille_dots_1258 = 0x1002893, Key_braille_dots_358 = 0x1002894, Key_braille_dots_1358 = 0x1002895, Key_braille_dots_2358 = 0x1002896, Key_braille_dots_12358 = 0x1002897, Key_braille_dots_458 = 0x1002898, Key_braille_dots_1458 = 0x1002899, Key_braille_dots_2458 = 0x100289a, Key_braille_dots_12458 = 0x100289b, Key_braille_dots_3458 = 0x100289c, Key_braille_dots_13458 = 0x100289d, Key_braille_dots_23458 = 0x100289e, Key_braille_dots_123458 = 0x100289f, Key_braille_dots_68 = 0x10028a0, Key_braille_dots_168 = 0x10028a1, Key_braille_dots_268 = 0x10028a2, Key_braille_dots_1268 = 0x10028a3, Key_braille_dots_368 = 0x10028a4, Key_braille_dots_1368 = 0x10028a5, Key_braille_dots_2368 = 0x10028a6, Key_braille_dots_12368 = 0x10028a7, Key_braille_dots_468 = 0x10028a8, Key_braille_dots_1468 = 0x10028a9, Key_braille_dots_2468 = 0x10028aa, Key_braille_dots_12468 = 0x10028ab, Key_braille_dots_3468 = 0x10028ac, Key_braille_dots_13468 = 0x10028ad, Key_braille_dots_23468 = 0x10028ae, Key_braille_dots_123468 = 0x10028af, Key_braille_dots_568 = 0x10028b0, Key_braille_dots_1568 = 0x10028b1, Key_braille_dots_2568 = 0x10028b2, Key_braille_dots_12568 = 0x10028b3, Key_braille_dots_3568 = 0x10028b4, Key_braille_dots_13568 = 0x10028b5, Key_braille_dots_23568 = 0x10028b6, Key_braille_dots_123568 = 0x10028b7, Key_braille_dots_4568 = 0x10028b8, Key_braille_dots_14568 = 0x10028b9, Key_braille_dots_24568 = 0x10028ba, Key_braille_dots_124568 = 0x10028bb, Key_braille_dots_34568 = 0x10028bc, Key_braille_dots_134568 = 0x10028bd, Key_braille_dots_234568 = 0x10028be, Key_braille_dots_1234568 = 0x10028bf, Key_braille_dots_78 = 0x10028c0, Key_braille_dots_178 = 0x10028c1, Key_braille_dots_278 = 0x10028c2, Key_braille_dots_1278 = 0x10028c3, Key_braille_dots_378 = 0x10028c4, Key_braille_dots_1378 = 0x10028c5, Key_braille_dots_2378 = 0x10028c6, Key_braille_dots_12378 = 0x10028c7, Key_braille_dots_478 = 0x10028c8, Key_braille_dots_1478 = 0x10028c9, Key_braille_dots_2478 = 0x10028ca, Key_braille_dots_12478 = 0x10028cb, Key_braille_dots_3478 = 0x10028cc, Key_braille_dots_13478 = 0x10028cd, Key_braille_dots_23478 = 0x10028ce, Key_braille_dots_123478 = 0x10028cf, Key_braille_dots_578 = 0x10028d0, Key_braille_dots_1578 = 0x10028d1, Key_braille_dots_2578 = 0x10028d2, Key_braille_dots_12578 = 0x10028d3, Key_braille_dots_3578 = 0x10028d4, Key_braille_dots_13578 = 0x10028d5, Key_braille_dots_23578 = 0x10028d6, Key_braille_dots_123578 = 0x10028d7, Key_braille_dots_4578 = 0x10028d8, Key_braille_dots_14578 = 0x10028d9, Key_braille_dots_24578 = 0x10028da, Key_braille_dots_124578 = 0x10028db, Key_braille_dots_34578 = 0x10028dc, Key_braille_dots_134578 = 0x10028dd, Key_braille_dots_234578 = 0x10028de, Key_braille_dots_1234578 = 0x10028df, Key_braille_dots_678 = 0x10028e0, Key_braille_dots_1678 = 0x10028e1, Key_braille_dots_2678 = 0x10028e2, Key_braille_dots_12678 = 0x10028e3, Key_braille_dots_3678 = 0x10028e4, Key_braille_dots_13678 = 0x10028e5, Key_braille_dots_23678 = 0x10028e6, Key_braille_dots_123678 = 0x10028e7, Key_braille_dots_4678 = 0x10028e8, Key_braille_dots_14678 = 0x10028e9, Key_braille_dots_24678 = 0x10028ea, Key_braille_dots_124678 = 0x10028eb, Key_braille_dots_34678 = 0x10028ec, Key_braille_dots_134678 = 0x10028ed, Key_braille_dots_234678 = 0x10028ee, Key_braille_dots_1234678 = 0x10028ef, Key_braille_dots_5678 = 0x10028f0, Key_braille_dots_15678 = 0x10028f1, Key_braille_dots_25678 = 0x10028f2, Key_braille_dots_125678 = 0x10028f3, Key_braille_dots_35678 = 0x10028f4, Key_braille_dots_135678 = 0x10028f5, Key_braille_dots_235678 = 0x10028f6, Key_braille_dots_1235678 = 0x10028f7, Key_braille_dots_45678 = 0x10028f8, Key_braille_dots_145678 = 0x10028f9, Key_braille_dots_245678 = 0x10028fa, Key_braille_dots_1245678 = 0x10028fb, Key_braille_dots_345678 = 0x10028fc, Key_braille_dots_1345678 = 0x10028fd, Key_braille_dots_2345678 = 0x10028fe, Key_braille_dots_12345678 = 0x10028ff, } Keysym; } #endif /* __IBUS_KEYSYMS_H__ */ ibus-qt-1.3.3-Source/src/qibusengineadaptor.cpp000664 001750 001750 00000010150 12325431066 023250 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibusengineadaptor -c IBusEngineAdaptor -v org.freedesktop.IBus.Engine.xml org.freedesktop.IBus.Engine * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #include "qibusengineadaptor.h" #include #include #include #include #include #include #include /* * Implementation of adaptor class IBusEngineAdaptor */ IBusEngineAdaptor::IBusEngineAdaptor(QObject *parent) : QDBusAbstractAdaptor(parent) { // constructor setAutoRelaySignals(true); } IBusEngineAdaptor::~IBusEngineAdaptor() { // destructor } void IBusEngineAdaptor::CandidateClicked(uint index, uint button, uint state) { // handle method call org.freedesktop.IBus.Engine.CandidateClicked QMetaObject::invokeMethod(parent(), "CandidateClicked", Q_ARG(uint, index), Q_ARG(uint, button), Q_ARG(uint, state)); } void IBusEngineAdaptor::CursorDown() { // handle method call org.freedesktop.IBus.Engine.CursorDown QMetaObject::invokeMethod(parent(), "CursorDown"); } void IBusEngineAdaptor::CursorUp() { // handle method call org.freedesktop.IBus.Engine.CursorUp QMetaObject::invokeMethod(parent(), "CursorUp"); } void IBusEngineAdaptor::Destroy() { // handle method call org.freedesktop.IBus.Engine.Destroy QMetaObject::invokeMethod(parent(), "Destroy"); } void IBusEngineAdaptor::Disable() { // handle method call org.freedesktop.IBus.Engine.Disable QMetaObject::invokeMethod(parent(), "Disable"); } void IBusEngineAdaptor::Enable() { // handle method call org.freedesktop.IBus.Engine.Enable QMetaObject::invokeMethod(parent(), "Enable"); } void IBusEngineAdaptor::FocusIn() { // handle method call org.freedesktop.IBus.Engine.FocusIn QMetaObject::invokeMethod(parent(), "FocusIn"); } void IBusEngineAdaptor::FocusOut() { // handle method call org.freedesktop.IBus.Engine.FocusOut QMetaObject::invokeMethod(parent(), "FocusOut"); } void IBusEngineAdaptor::PageDown() { // handle method call org.freedesktop.IBus.Engine.PageDown QMetaObject::invokeMethod(parent(), "PageDown"); } void IBusEngineAdaptor::PageUp() { // handle method call org.freedesktop.IBus.Engine.PageUp QMetaObject::invokeMethod(parent(), "PageUp"); } bool IBusEngineAdaptor::ProcessKeyEvent(uint keyval, uint keycode, uint state) { // handle method call org.freedesktop.IBus.Engine.ProcessKeyEvent bool out0; QMetaObject::invokeMethod(parent(), "ProcessKeyEvent", Q_RETURN_ARG(bool, out0), Q_ARG(uint, keyval), Q_ARG(uint, keycode), Q_ARG(uint, state)); return out0; } void IBusEngineAdaptor::PropertyActivate(const QString &prop_name, int prop_state) { // handle method call org.freedesktop.IBus.Engine.PropertyActivate QMetaObject::invokeMethod(parent(), "PropertyActivate", Q_ARG(QString, prop_name), Q_ARG(int, prop_state)); } void IBusEngineAdaptor::PropertyHide(const QString &prop_name) { // handle method call org.freedesktop.IBus.Engine.PropertyHide QMetaObject::invokeMethod(parent(), "PropertyHide", Q_ARG(QString, prop_name)); } void IBusEngineAdaptor::PropertyShow(const QString &prop_name) { // handle method call org.freedesktop.IBus.Engine.PropertyShow QMetaObject::invokeMethod(parent(), "PropertyShow", Q_ARG(QString, prop_name)); } void IBusEngineAdaptor::Reset() { // handle method call org.freedesktop.IBus.Engine.Reset QMetaObject::invokeMethod(parent(), "Reset"); } void IBusEngineAdaptor::SetCapabilities(uint cap) { // handle method call org.freedesktop.IBus.Engine.SetCapabilities QMetaObject::invokeMethod(parent(), "SetCapabilities", Q_ARG(uint, cap)); } void IBusEngineAdaptor::SetCursorLocation(int x, int y, int w, int h) { // handle method call org.freedesktop.IBus.Engine.SetCursorLocation QMetaObject::invokeMethod(parent(), "SetCursorLocation", Q_ARG(int, x), Q_ARG(int, y), Q_ARG(int, w), Q_ARG(int, h)); } ibus-qt-1.3.3-Source/src/qibuscomponent.cpp000664 001750 001750 00000024224 12325431066 022441 0ustar00tfujiwartfujiwar000000 000000 #include "qibuscomponent.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(Component, IBusComponent); bool Component::serialize (QDBusArgument &argument) { if (!Serializable::serialize (argument)) return false; argument << m_name; argument << m_description; argument << m_version; argument << m_license; argument << m_author; argument << m_homepage; argument << m_exec; argument << m_textdomain; argument.beginArray(qMetaTypeId()); for ( int i = 0; i < m_observedPaths.size(); ++i ) { argument << m_observedPaths[i]; } argument.endArray(); argument.beginArray(qMetaTypeId()); for ( int i = 0; i < m_engines.size(); ++i ) { argument << m_engines[i]; } argument.endArray(); return true; } bool Component::deserialize (const QDBusArgument &argument) { if (!Serializable::deserialize (argument)) return false; argument >> m_name; argument >> m_description; argument >> m_version; argument >> m_license; argument >> m_author; argument >> m_homepage; argument >> m_exec; argument >> m_textdomain; argument.beginArray(); while ( !argument.atEnd() ) { EngineDescPointer ep ; argument >> ep; m_observedPaths.append(ep); } argument.endArray(); argument.beginArray(); while ( !argument.atEnd() ) { EngineDescPointer ep ; argument >> ep; m_engines.append(ep); } argument.endArray(); return true; } void Component::output (QString & output) const { QXmlStreamWriter stream(&output); stream.setAutoFormatting(true); stream.writeStartElement("component"); stream.writeTextElement("name", m_name); stream.writeTextElement("description", m_description); stream.writeTextElement("version", m_version); stream.writeTextElement("license", m_license); stream.writeTextElement("author", m_author); stream.writeTextElement("homepage", m_homepage); stream.writeTextElement("exec", m_exec); stream.writeTextElement("textdomain", m_textdomain); // for observed-paths if ( m_observedPaths.size() > 0 ) { stream.writeStartElement("observed-paths"); for ( int i = 0; i < m_observedPaths.size(); ++i ) { stream.writeStartElement("path"); QString mtime; mtime.number(m_observedPaths[i]->mtime()); stream.writeAttribute("mtime", mtime); stream.writeCharacters(m_observedPaths[i]->path()); stream.writeEndElement(); } stream.writeEndElement(); } // for engines // stream.writeComment("for static engines"); stream.writeStartElement("engines"); for ( int i = 0; i < m_engines.size(); ++i ) { // for one specfic engine stream.writeStartElement("engine"); QMap engineInfo = m_engines[i]->getEngineInfo(); QMap::const_iterator cIter = engineInfo.begin(); for ( ; cIter != engineInfo.end(); ++cIter ) { stream.writeTextElement(cIter.key(), cIter.value()); } stream.writeEndElement(); } stream.writeEndElement(); stream.writeEndElement(); } bool Component::parseXmlNode (const QDomNode & node) { if ( node.isNull() || node.nodeName().compare("component") ) { return false; } bool errFlag = false; QDomNode child = node.firstChild(); for ( ; !child.isNull(); child = child.nextSibling() ) { if ( !child.nodeName().compare("name") ) { m_name = child.toElement().text(); } else if ( !child.nodeName().compare("description") ) { m_description = child.toElement().text(); } else if ( !child.nodeName().compare("version") ) { m_version = child.toElement().text(); } else if ( !child.nodeName().compare("license") ) { m_license = child.toElement().text(); } else if ( !child.nodeName().compare("author") ) { m_author = child.toElement().text(); } else if ( !child.nodeName().compare("homepage") ) { m_homepage = child.toElement().text(); } else if ( !child.nodeName().compare("exec") ) { m_exec = child.toElement().text(); } else if ( !child.nodeName().compare("textdomain") ) { m_textdomain = child.toElement().text(); } /* else if ( !child.nodeName().compare("observed-paths") ) { if ( !parseObservedPaths(child) ) { return false; } } else if ( !child.nodeName().compare("engines") ) { if ( !parseEnginesNode(child) ) { return false; } } */ else { QString s; QXmlStreamWriter stream(&s); stream.writeTextElement(child.nodeName(), child.toElement().text()); qDebug() << "Component::parseXmlNode, Unknown element, " << s; // errFlag = true; continue; } } if ( !errFlag ) { return false; } return true; } #if 0 bool Component::parseObservedPaths(const QDomNode & node) { if( node.isNull() || node.nodeName().compare("observed-paths") ) { return false; } qDebug () << "Component::parseObservedPaths"; int i = 0; QDomNode child = node.firstChild(); for ( ; !child.isNull(); child = child.nextSibling(), ++i ) { ObservedPathPointer obsPath = new ObservedPath(child.toElement().text()); addObservedPath(obsPath); if ( obsPath->isDirFile() ) { qDebug () << "It's dir file!"; obsPath->traverseObservedPath(m_observedPaths); } } return true; } bool Component::parseEnginesNode(QDomNode &node) { if ( node.isNull() || node.nodeName().compare("engines") ) { return false; } QString exec; const QDomDocument * doc = NULL; if ( node.hasAttributes() ) { QDomNamedNodeMap nnMap = node.attributes(); for ( uint i = 0; i < nnMap.length(); ++i ) { QDomNode attrNode = nnMap.item(i); if ( !attrNode.nodeName().compare("exec") ) { exec = attrNode.nodeValue(); } } } if ( 0 != exec.size() ) { QProcess * newProc = new QProcess; newProc->start(exec); if ( newProc->waitForFinished(3000) ) {} QByteArray output = newProc->readAllStandardOutput(); if ( output.isEmpty() ) { qDebug() << "Component::parseEnginesNode: " << "empty engines! invalid engines!!!"; return false; } doc = parseXmlBuffer(output); const QDomNode enginesNode = static_cast(doc->documentElement()); if ( 0 == enginesNode.nodeName().compare("engines") ) { node = enginesNode; } delete newProc; } int i = 0; QDomNode child = node.firstChild(); for ( ; !child.isNull(); child = child.nextSibling(), ++i ) { EngineDescPointer engDesc = new EngineDesc; if( !engDesc->parseXmlNode(child) ) { return false; } addEngine(engDesc); } if ( !doc ) { delete doc; } return true; } bool newComponentFromFile (Component &obj, const QString & filename) { const QDomDocument * doc = obj.parseXmlFile(filename); if ( !doc ) { return false; } QDomElement docElem = doc->documentElement(); QDomNode root = static_cast(docElem); if( obj.parseXmlNode(root) ) { qDebug() << "Component::newComponentFromFile: parseXmlNode error!"; delete doc; return false; } // append filename to m_observedPath in obj ObservedPathPointer observedPathPtr = new ObservedPath(filename); if ( !observedPathPtr ) { qDebug() << "Component::newComponentFromFile: new error!"; delete doc; return false; } // observedPathPtr->setObservedPathStat(); obj.observedPaths().push_back(observedPathPtr); delete doc; return true; } const QDomDocument * Component::parseXmlFile (const QString & filename) const { QFile file(filename); if ( !file.open(QIODevice::ReadOnly) ) { qDebug() << "Component::parseXmlFile: open \"" << filename << "\" failed!"; return NULL; } QString errMsg; int errLine; int errColumn; QDomDocument * doc = new QDomDocument; if( !doc ) { qDebug() << "Component::parseXmlFile: " << "new error!"; return NULL; } if ( !doc->setContent(&file, &errMsg, &errLine, &errColumn) ) { qDebug() << errMsg << "line: " << errLine <<", column: " << errColumn; return NULL; } file.close(); return doc; } const QDomDocument * Component::parseXmlBuffer (const QByteArray & buf) { QString errMsg; int errLine; int errColumn; QDomDocument * doc = new QDomDocument; if( !doc ) { qDebug() << "Component::parseXmlBuffer: " << "new error!"; return NULL; } if ( !doc->setContent(buf, &errMsg, &errLine, &errColumn) ) { qDebug() << errMsg << "line: " << errLine <<", column: " << errColumn; return NULL; } return doc; } #endif void Component::addObservedPath (const ObservedPathPointer &obsPath) { // obsPath->setObservedPathStat(); m_observedPaths.push_back(obsPath); } void Component::addEngine (const EngineDescPointer &edp) { m_engines.push_back(edp); } QVector Component::observedPaths () const { return m_observedPaths; } const QVector & Component::engines () const { return m_engines; } #if 0 bool Component::start (bool verbose) const { return true; /* need to code */ } bool Component::stop () const { return true; /* need to code */ } bool Component::isRunning () const { return (m_pid == 0); } bool Component::isComponentModified () const { for ( int i = 0; i < m_observedPaths.size(); ++i ) { if ( m_observedPaths[i]->isObservedPathModified() ) { return true; } } return false; } const ComponentPointer Component::getComponentFromEngine (EngineDescPointer edp) const { /* need to code */ } #endif }; ibus-qt-1.3.3-Source/src/qibusfactoryadaptor.cpp000664 001750 001750 00000002541 12325431066 023457 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibusfactoryadaptor -c IBusFactoryAdaptor -v org.freedesktop.IBus.EngineFactory.xml org.freedesktop.IBus.EngineFactory * * qdbusxml2cpp is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #include "qibusfactoryadaptor.h" #include #include #include #include #include #include #include /* * Implementation of adaptor class IBusFactoryAdaptor */ IBusFactoryAdaptor::IBusFactoryAdaptor(QObject *parent) : QDBusAbstractAdaptor(parent) { // constructor setAutoRelaySignals(true); } IBusFactoryAdaptor::~IBusFactoryAdaptor() { // destructor } QDBusObjectPath IBusFactoryAdaptor::CreateEngine(const QString &engine_name) { // handle method call org.freedesktop.IBus.EngineFactory.CreateEngine QDBusObjectPath out0; QMetaObject::invokeMethod(parent(), "CreateEngine", Q_RETURN_ARG(QDBusObjectPath, out0), Q_ARG(QString, engine_name)); return out0; } void IBusFactoryAdaptor::Destroy() { // handle method call org.freedesktop.IBus.EngineFactory.Destroy QMetaObject::invokeMethod(parent(), "Destroy"); } ibus-qt-1.3.3-Source/src/moc_qibusattrlist.cxx_parameters000664 001750 001750 00000000600 12325431136 025374 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusattrlist.cxx /home/tfujiwar/tmp/a/src/qibusattrlist.h ibus-qt-1.3.3-Source/src/qibuscomponent.h000664 001750 001750 00000004513 12325431066 022105 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_COMPONENT_H_ #define __Q_IBUS_COMPONENT_H_ #include #include #include #include #include #include #include "qibusserializable.h" #include "qibusenginedesc.h" #include "qibusobservedpath.h" namespace IBus { class Component; typedef Pointer ComponentPointer; class Component : public Serializable { Q_OBJECT; public: Component () {} Component (const QString & name, const QString & desc, const QString & vers, const QString & lics, const QString & auth, const QString & hmpg, const QString & exec, const QString & textdomain): m_name(name), m_description(desc), m_version(vers), m_license(lics), m_author(auth), m_homepage(hmpg), m_exec(exec), m_textdomain(textdomain) {} virtual ~Component () {} public: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); void output (QString &output) const; bool parseXmlNode (const QDomNode &node); // bool parseEnginesNode (QDomNode &node); // bool parseObservedPaths (const QDomNode &node); void addObservedPath (const ObservedPathPointer &obsPath); void addEngine (const EngineDescPointer &edp); QVector observedPaths () const; const QVector & engines () const; #if 0 bool start (bool verbose) const; bool stop () const; bool isRunning () const; bool isComponentModified () const; const ComponentPointer getComponentFromEngine (EngineDescPointer edp) const; friend bool newComponentFromFile (Component &obj, const QString & filename); private: const QDomDocument * parseXmlFile (const QString & filename) const; const QDomDocument * parseXmlBuffer (const QByteArray & buf); #endif private: QString m_name; QString m_description; QString m_version; QString m_license; QString m_author; QString m_homepage; QString m_exec; QString m_textdomain; QVector m_observedPaths; QVector m_engines; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/qibusobservedpath.cpp000664 001750 001750 00000006374 12325431066 023133 0ustar00tfujiwartfujiwar000000 000000 #include "qibusobservedpath.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(ObservedPath, IBusObservedPath); bool ObservedPath::serialize (QDBusArgument & argument) { if ( !Serializable::serialize(argument) ) { return false; } argument << m_path; argument << m_mtime; return true; } bool ObservedPath::deserialize (const QDBusArgument & argument) { if ( !Serializable::deserialize(argument) ) { return false; } argument >> m_path; argument >> m_mtime; return true; } bool ObservedPath::parseXmlNode (const QDomNode & node) { if ( node.nodeName().compare("path") ) { return false; } // process path int lstIdx = node.toElement().text().lastIndexOf('/'); QDir path(node.toElement().text().left(lstIdx)); if ( !path.isReadable() ) { return false; } if ( path.isAbsolute() ) { m_path = node.toElement().text(); } else if ( path.isRelative() ) { if ( node.toElement().text()[0] == '~' ) { QString homePath = QDir::homePath(); m_path += homePath; m_path += node.toElement().text().right(node.toElement().text().size() - 2); } else if ( node.toElement().text()[0] == '.' && node.toElement().text()[1] == '/' ) { QString curPath = QDir::currentPath(); m_path += curPath; m_path += node.toElement().text().right(node.toElement().text().size() - 2); } else { QString curPath = QDir::currentPath(); m_path += curPath; m_path += node.toElement().text(); } } else { qDebug() << "ObservedPath::parseXmlNode: invalid path! \"" << node.toElement().text() << "\""; return false; } // process mtime if ( node.hasAttributes() ) { QDomNamedNodeMap nnMap = node.attributes(); for ( uint i = 0; i < nnMap.length(); ++i ) { QDomNode attrNode = nnMap.item(i); if ( !attrNode.nodeName().compare("mtime") ) { m_mtime = attrNode.toElement().text().toInt(); } } } return true; } #if 0 bool ObservedPath::isObservedPathModified () const { QFileInfo fi(m_path); if ( m_mtime == fi.lastModified().toTime_t() ) { return false; } return true; } void ObservedPath::setObservedPathStat () { QFileInfo fi(m_path); if ( fi.exists() ) { m_isExist = true; m_mtime = fi.lastModified().toTime_t(); if ( fi.isDir() ) { m_isDir = true; } } else { m_isExist = false; m_isDir = false; m_mtime = 0; } } void ObservedPath::traverseObservedPath (QVector & observedPathVec) const { QDir dir(m_path); dir.setFilter(QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs); QStringList files = dir.entryList(); for ( int i = 0; i < files.size(); ++i ) { QString file = files.at(i); // qDebug () << file; ObservedPathPointer observedPath = new ObservedPath(file); observedPath->setObservedPathStat(); observedPathVec.push_back(observedPath); if ( observedPath->isDirFile() ) { observedPath->traverseObservedPath(observedPathVec); } } } #endif }; ibus-qt-1.3.3-Source/src/qibusengine.h000664 001750 001750 00000023356 12325431066 021356 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_ENGINE_H_ #define __Q_IBUS_ENGINE_H_ #include #include "qibustypes.h" #include "qibustext.h" #include "qibusproplist.h" #include "qibuslookuptable.h" class IBusEngineAdaptor; namespace IBus { class Engine; typedef Pointer EnginePointer; class Engine : public Object { Q_OBJECT public : /** * @brief Constructor of Engine object. * * @return */ Engine (const QString &engineName); /** * @brief Destructor of Engine object. * * @return */ virtual ~Engine (); public : /** * @brief Gets name of the engine object. * * @return The name of the engine object. */ const QString & engineName () const; /** * @brief Updates the lookup table in fast mode, it only sends candidates in current page. * * @param[in] lookupTable A lookup table object. * @param[in] visible Whether the lookup table is visible. * @return */ void updateLookupTableFast (const LookupTablePointer & lookupTable, bool visible); public : /** * @brief Commits text to client application. * * @param[in] text A text object. * @return */ void commitText (const TextPointer & text) { QDBusVariant variant; CommitText (qDBusVariantFromSerializable (text, variant)); } /** * @brief Moves down the cursor of lookup table. * * @return */ void cursorDownLookupTable () { CursorDownLookupTable(); } /** * @brief Moves up the cursor of lookup table. * * @return */ void cursorUpLookupTable () { CursorUpLookupTable(); } /** * @brief Forwards keyevents to client application. * * @param[in] keyval * @param[in] keycode * @param[in] state * @return */ void forwardKeyEvent (uint keyval, uint keycode, uint state) { ForwardKeyEvent(keyval, keycode, state); } /** * @brief Hides the auxiliary text in UI. * * @return */ void hideAuxiliaryText () { HideAuxiliaryText(); } /** * @brief Hides the lookup table in UI. * * @return */ void hideLookupTable () { HideLookupTable(); } /** * @brief Hides the preedit text in UI. * * @return */ void hidePreeditText () { HidePreeditText(); } /** * @brief Page down the lookup table. * * @return */ void pageDownLookupTable () { PageDownLookupTable(); } /** * @brief Page up the lookup table. * * @return */ void pageUpLookupTable () { PageUpLookupTable(); } /** * @brief Registers properties. * * @param[in] props A PropList object contains some properties. * @return */ void registerProperties (const PropListPointer & props) { QDBusVariant variant; RegisterProperties(qDBusVariantFromSerializable (props, variant)); } /** * @brief Shows the auxiliary text in UI. * * @return */ void showAuxiliaryText () { ShowAuxiliaryText(); } /** * @brief Shows the lookup table in UI. * * @return */ void showLookupTable () { ShowLookupTable(); } /** * @brief Shows the preedit text in UI. * * @return */ void showPreeditText () { ShowPreeditText(); } /** * @brief Updates the auxiliary text. * * @param[in] text A text object. * @param[in] visible Whether the auxiliary text is visible. * @return */ void updateAuxiliaryText (const TextPointer & text, bool visible) { QDBusVariant variant; UpdateAuxiliaryText (qDBusVariantFromSerializable (text, variant), visible); } /** * @brief Updates the lookup table. * * @param[in] lookupTable A lookup table object. * @param[in] visible Whether the lookup table is visible. * @return */ void updateLookupTable (const LookupTablePointer & lookupTable, bool visible) { QDBusVariant variant; UpdateLookupTable (qDBusVariantFromSerializable (lookupTable, variant), visible); } /** * @brief Updates the preedit text. * * @param[in] text A text object. * @param[in] cursorPos The cursor position in the given text. * @param[in] visible Whether the preedit text is visible. * @param[in] mode preedit focus mode. * @return */ void updatePreeditText (const TextPointer & text, uint cursorPos, bool visible, uint mode = EnginePreeditClear) { QDBusVariant variant; UpdatePreeditText (qDBusVariantFromSerializable (text, variant), cursorPos, visible, mode); } /** * @brief Updates the property * * @param[in] prop A propeerty object * @return */ void updateProperty (const PropertyPointer & prop) { QDBusVariant variant; UpdateProperty (qDBusVariantFromSerializable (prop, variant)); } public: /** * @brief Candidate is clicked. * * Implement this virtual function to handle candidate clicked event. * @param[in] index The index of candidate clicked * @param[in] button The button of the clicked event. * @param[in] state The current state of keyboard. * @return */ virtual void candidateClicked (uint index, uint button, uint state); /** * @brief Cursor is moved down. * * @return */ virtual void cursorDown (); /** * @brief Cursor is moved up. * * @return */ virtual void cursorUp (); virtual void destroy (); /** * @brief Disables the engine. * * @return */ virtual void disable (); /** * @brief Enables the engine. * * @return */ virtual void enable (); /** * @brief Sets the focus of the engine. * * @return */ virtual void focusIn (); /** * @brief Unsets the focus of the engine. * * @return */ virtual void focusOut (); /** * @brief Moves cursor of lookup table to next page. * * @return */ virtual void pageDown (); /** * @brief Moves cursor of lookup tabele to previous page. * * @return */ virtual void pageUp (); /** * @brief Moves cursor of lookup tabele to previous page. * * @param[in] keyval The keyval of the key event. * @param[in] keycode The keycode of the key event. * @param[in] state The modifiers of the key event. * @return If engine returns true, the client application will ignore this key event, * otherwise client application will continue process this key event. */ virtual bool processKeyEvent (uint keyval, uint keycode, uint state); /** * @brief The property with given name is clicked. * * @param[in] prop_name The name of the property. * @param[in] prop_state The state of the property. * @return */ virtual void propertyActivate (const QString &prop_name, int prop_state); /** * @brief Hides the property with given name. * * @param[in] prop_name The name of the property. * @return */ virtual void propertyHide (const QString &prop_name); /** * @brief Shows the property with given name. * * @param[in] prop_name The name of the property. * @return */ virtual void propertyShow (const QString &prop_name); /** * @brief Resets the engine. * * @return */ virtual void reset (); /** * @brief Sets the capabilities from client application. * * @param[in] cap The capabilities of client application. * @return */ virtual void setCapabilities (uint cap); /** * @brief Sets the cursor location from client applicaion. * * @param[in] x * @param[in] y * @param[in] w * @param[in] h * @return */ virtual void setCursorLocation (int x, int y, int w, int h); private Q_SLOTS: Q_INVOKABLE void CandidateClicked (uint index, uint button, uint state); Q_INVOKABLE void CursorDown (); Q_INVOKABLE void CursorUp (); Q_INVOKABLE void Destroy (); Q_INVOKABLE void Disable (); Q_INVOKABLE void Enable (); Q_INVOKABLE void FocusIn (); Q_INVOKABLE void FocusOut (); Q_INVOKABLE void PageDown (); Q_INVOKABLE void PageUp (); Q_INVOKABLE bool ProcessKeyEvent (uint keyval, uint keycode, uint state); Q_INVOKABLE void PropertyActivate (const QString &prop_name, int prop_state); Q_INVOKABLE void PropertyHide (const QString &prop_name); Q_INVOKABLE void PropertyShow (const QString &prop_name); Q_INVOKABLE void Reset (); Q_INVOKABLE void SetCapabilities (uint cap); Q_INVOKABLE void SetCursorLocation (int x, int y, int w, int h); Q_SIGNALS : /** * FIXME need hide signals in doxygen */ void CommitText (const QDBusVariant &text); void CursorDownLookupTable (); void CursorUpLookupTable (); void ForwardKeyEvent (uint keyval, uint keycode, uint state); void HideAuxiliaryText (); void HideLookupTable (); void HidePreeditText (); void PageDownLookupTable (); void PageUpLookupTable (); void RegisterProperties (const QDBusVariant &props); void ShowAuxiliaryText (); void ShowLookupTable (); void ShowPreeditText (); void UpdateAuxiliaryText (const QDBusVariant &text, bool visible); void UpdateLookupTable (const QDBusVariant &lookup_table, bool visible); void UpdatePreeditText (const QDBusVariant &text, uint cursor_pos, bool visible, uint mode); void UpdateProperty (const QDBusVariant &prop); private : QString m_engineName; IBusEngineAdaptor *m_adaptor; }; }; #endif ibus-qt-1.3.3-Source/src/moc_qibusfactoryadaptor.cxx_parameters000664 001750 001750 00000000614 12325431136 026555 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusfactoryadaptor.cxx /home/tfujiwar/tmp/a/src/qibusfactoryadaptor.h ibus-qt-1.3.3-Source/src/moc_qibuslookuptable.cxx_parameters000664 001750 001750 00000000606 12325431136 026055 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibuslookuptable.cxx /home/tfujiwar/tmp/a/src/qibuslookuptable.h ibus-qt-1.3.3-Source/src/qibusproplist.cpp000664 001750 001750 00000002226 12325431066 022311 0ustar00tfujiwartfujiwar000000 000000 #include "qibusproperty.h" #include "qibusproplist.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(PropList, IBusPropList); bool PropList::serialize (QDBusArgument & argument) { if (!Serializable::serialize (argument)) { return false; } argument.beginArray (qMetaTypeId()); for (int i = 0; i < m_props.size(); ++i ) { argument << m_props[i]; } argument.endArray (); return true; } bool PropList::deserialize (const QDBusArgument & argument) { if (!Serializable::deserialize (argument)) { return false; } argument.beginArray(); while ( !argument.atEnd() ) { PropertyPointer prop; argument >> prop; m_props.append(prop); } argument.endArray(); return true; } bool PropList::appendProperty (const PropertyPointer &prop) { if ( !prop.isNull() ) { m_props.append(prop); return true; } return false; } bool PropList::updateProperty (const PropertyPointer &prop) { for ( int i = 0; i < m_props.size(); ++i ) { if ( m_props[i]->update(prop) ) { return true; } } return false; } }; ibus-qt-1.3.3-Source/src/qibuspaneladaptor.h000664 001750 001750 00000012070 12325431066 022552 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibuspaneladaptor -c IBusPanelAdaptor -v org.freedesktop.IBus.Panel.xml org.freedesktop.IBus.Panel * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #ifndef QIBUSPANELADAPTOR_H_1268725630 #define QIBUSPANELADAPTOR_H_1268725630 #include #include class QByteArray; template class QList; template class QMap; class QString; class QStringList; class QVariant; /* * Adaptor class for interface org.freedesktop.IBus.Panel */ class IBusPanelAdaptor: public QDBusAbstractAdaptor { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.freedesktop.IBus.Panel") Q_CLASSINFO("D-Bus Introspection", "" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" "") public: IBusPanelAdaptor(QObject *parent); virtual ~IBusPanelAdaptor(); public: // PROPERTIES public Q_SLOTS: // METHODS void CursorDownLookupTable(); void CursorUpLookupTable(); void Destroy(); void FocusIn(const QDBusObjectPath &ic); void FocusOut(const QDBusObjectPath &ic); void HideAuxiliaryText(); void HideLanguageBar(); void HideLookupTable(); void HidePreeditText(); void PageDownLookupTable(); void PageUpLookupTable(); void RegisterProperties(const QDBusVariant &props); void Reset(); void SetCursorLocation(int x, int y, int w, int h); void ShowAuxiliaryText(); void ShowLanguageBar(); void ShowLookupTable(); void ShowPreeditText(); void StartSetup(); void StateChanged(); void UpdateAuxiliaryText(const QDBusVariant &text, bool visible); void UpdateLookupTable(const QDBusVariant &lookup_table, bool visible); void UpdatePreeditText(const QDBusVariant &text, uint cursor_pos, bool visible); void UpdateProperty(const QDBusVariant &prop); Q_SIGNALS: // SIGNALS void CandidateClicked(uint index, uint button, uint state); void CursorDown(); void CursorUp(); void PageDown(); void PageUp(); void PropertyActivate(const QString &prop_name, int prop_state); void PropertyHide(const QString &prop_name); void PropertyShow(const QString &prop_name); }; #endif ibus-qt-1.3.3-Source/src/qibusattrlist.cpp000664 001750 001750 00000002176 12325431066 022307 0ustar00tfujiwartfujiwar000000 000000 #include "qibusattrlist.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(AttrList, IBusAttrList); AttrList::~AttrList () { m_attrs.clear(); } AttributePointer AttrList::get (int index) const { if (index >= m_attrs.size ()) { return NULL; } return m_attrs[index]; } void AttrList::append (const AttributePointer &attr) { if (attr.isNull ()) return; m_attrs.append (attr); } void AttrList::clear (void) { m_attrs.clear (); } bool AttrList::serialize (QDBusArgument &argument) { if (!Serializable::serialize (argument)) { return false; } argument.beginArray (qMetaTypeId()); for (int i = 0; i < m_attrs.size(); i++) { argument << m_attrs[i]; } argument.endArray (); return true; } bool AttrList::deserialize (const QDBusArgument &argument) { clear (); if (!Serializable::deserialize (argument)) { return false; } argument.beginArray (); while (!argument.atEnd ()) { AttributePointer attr; argument >> attr; append (attr); } argument.endArray (); return true; } } /* IBus */ ibus-qt-1.3.3-Source/src/moc_qibusobject.cxx_parameters000664 001750 001750 00000000574 12325431136 025006 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusobject.cxx /home/tfujiwar/tmp/a/src/qibusobject.h ibus-qt-1.3.3-Source/src/moc_qibusattribute.cxx_parameters000664 001750 001750 00000000602 12325431136 025533 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusattribute.cxx /home/tfujiwar/tmp/a/src/qibusattribute.h ibus-qt-1.3.3-Source/src/qibusenginedesc.h000664 001750 001750 00000004447 12325431066 022215 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_ENGINE_DESC_H_ #define __Q_IBUS_ENGINE_DESC_H_ #include #include #include #include "qibusserializable.h" namespace IBus { class EngineDesc; typedef Pointer EngineDescPointer; class EngineDesc : public Serializable { Q_OBJECT; public: EngineDesc () : m_rank (0) {} EngineDesc (const QString & name, const QString & lname, const QString & desc, const QString & lang, const QString & lics, const QString & auth, const QString & icon, const QString & layout, const QString & hotkeys = "", uint rank = 0): m_name(name), m_longname(lname), m_description(desc), m_language(lang), m_license(lics), m_author(auth), m_icon(icon), m_layout(layout), m_hotkeys(hotkeys), m_rank(rank) { m_engineInfo.insert ("name", m_name); m_engineInfo.insert ("longname", m_longname); m_engineInfo.insert ("description", m_description); m_engineInfo.insert ("language", m_language); m_engineInfo.insert ("license", m_license); m_engineInfo.insert ("author", m_author); m_engineInfo.insert ("icon", m_icon); m_engineInfo.insert ("layout", m_layout); m_engineInfo.insert ("hotkeys", m_hotkeys); QString stringRank; stringRank = stringRank.number (m_rank); m_engineInfo.insert ("rank", stringRank); } virtual ~EngineDesc () {} public : virtual bool serialize (QDBusArgument & argument); virtual bool deserialize (const QDBusArgument & argument); void output (QString & output) const; bool parseXmlNode (const QDomNode & node); const QMap & getEngineInfo () const { return m_engineInfo; } private : QString m_name; QString m_longname; QString m_description; QString m_language; QString m_license; QString m_author; QString m_icon; QString m_layout; QString m_hotkeys; uint m_rank; QMap m_engineInfo; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/qibusproplist.h000664 001750 001750 00000001307 12325431066 021755 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_PROP_LIST_H_ #define __Q_IBUS_PROP_LIST_H_ #include "qibusserializable.h" #include "qibusproperty.h" #include "qibustext.h" namespace IBus { class Property; class PropList; typedef Pointer PropListPointer; typedef Pointer PropertyPointer; class PropList: public Serializable { Q_OBJECT; public: PropList () {} ~PropList () {} public: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); public : bool appendProperty (const PropertyPointer &prop); bool updateProperty (const PropertyPointer &prop); private: QVector m_props; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/qibustypes.h000664 001750 001750 00000002662 12325431066 021252 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_TYPES_H_ #define __Q_IBUS_TYPES_H_ #include namespace IBus { typedef enum { ShiftMask = 1 << 0, LockMask = 1 << 1, ControlMask = 1 << 2, Mod1Mask = 1 << 3, Mod2Mask = 1 << 4, Mod3Mask = 1 << 5, Mod4Mask = 1 << 6, Mod5Mask = 1 << 7, Button1Mask = 1 << 8, Button2Mask = 1 << 9, Button3Mask = 1 << 10, Button4Mask = 1 << 11, Button5Mask = 1 << 12, /* The next few modifiers are used by XKB, so we skip to the end. * Bits 15 - 23 are currently unused. Bit 29 is used internally. * **/ /* ibus mask */ HandledMask = 1 << 24, ForwardMask = 1 << 25, IgnoredMask = ForwardMask, SuperMask = 1 << 26, HyperMask = 1 << 27, MetaMask = 1 << 28, ReleaseMask = 1 << 30, ModifierMask = 0x5c001fff } ModifierType; typedef enum { CapPreeditText = 1 << 0, CapAuxiliaryText = 1 << 1, CapLookupTable = 1 << 2, CapFocus = 1 << 3, CapProperty = 1 << 4, CapSurroundingText = 1 << 5, } Capabilite; typedef enum { OrientationHorizontal = 0, OrientationVertical = 1, OrientationSystem = 2, } Orientation; typedef enum { EnginePreeditClear = 0, EnginePreeditCommit = 1, } PreeditFocusMode; typedef struct { uint x; uint y; uint width; uint height; } Rectangle; }; #endif ibus-qt-1.3.3-Source/src/moc_qibusconfig.cxx_parameters000664 001750 001750 00000000574 12325431136 025005 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusconfig.cxx /home/tfujiwar/tmp/a/src/qibusconfig.h ibus-qt-1.3.3-Source/src/qibusproperty.h000664 001750 001750 00000003552 12325431066 021771 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_PROPERTY_H_ #define __Q_IBUS_PROPERTY_H_ #include "qibusserializable.h" #include "qibusproplist.h" #include "qibustext.h" namespace IBus { /* type of QIBusProperty */ typedef enum { TypeNormal = 0, TypeToggle = 1, TypeRadio = 2, TypeMenu = 3, TypeSeparator = 4, }PropType; /* * State of QIBusProperty. The actual effect * depends on #QIBusPropType of the QIBusProperty. */ typedef enum { StateUnchecked = 0, StateChecked = 1, StateInconsistent = 2, } PropState; class Property; class PropList; typedef Pointer PropListPointer; typedef Pointer PropertyPointer; class Property : public Serializable { Q_OBJECT; public: Property () {} Property (const QString key, const QString icon, const TextPointer &label, const TextPointer &tooltip, bool sensitive, bool visible, uint type, uint state, const PropListPointer &subProps): m_key(key), m_icon(icon), m_label(label), m_tooltip(tooltip), m_sensitive(sensitive), m_visible(visible), m_type(type), m_state(state), m_subProps(subProps) {} ~Property () {} public: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); public: void setLabel (const TextPointer & lable); void setVisible (bool visible); void setSubProps (const PropListPointer & props); bool update (const PropertyPointer prop); private: QString m_key; QString m_icon; TextPointer m_label; TextPointer m_tooltip; bool m_sensitive; bool m_visible; uint m_type; uint m_state; PropListPointer m_subProps; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/qibusinputcontext.h000664 001750 001750 00000006400 12325431066 022644 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_INPUT_CONTEXT_H_ #define __Q_IBUS_INPUT_CONTEXT_H_ #include "qibusbus.h" #include "qibustext.h" #include "qibusproperty.h" #include "qibusproplist.h" #include "qibuslookuptable.h" class IBusInputContextProxy; namespace IBus { class Bus; typedef Pointer BusPointer; class InputContext; typedef Pointer InputContextPointer; class InputContext : public Object { Q_OBJECT; public: InputContext (const BusPointer &bus, const QString &path); ~InputContext (void); void reset (void); void destroy (void); void enable (void); void disable (void); void focusIn (void); void focusOut (void); void getEngine (void); bool isEnabled (void); bool processKeyEvent (uint keyval, uint keycode, uint state); void setCapabilities (uint caps); void setCursorLocation (int x, int y, int w, int h); void setEngine (const QString &name); void setSurroundingText (const TextPointer &text, uint cursor_pos, uint anchor_pos); public: static InputContextPointer create (const BusPointer &bus, const QString &name); Q_SIGNALS: void commitText (const TextPointer &text); void updatePreeditText (const TextPointer &text, uint cursor_pos, bool visible); void showPreeditText (void); void hidePreeditText (void); void updateAuxiliaryText (const TextPointer &text, bool visible); void showAuxiliaryText (void); void hideAuxiliaryText (void); void updateLookupTable (const LookupTablePointer &table, bool visible); void showLookupTable (void); void hideLookupTable (void); void cursorUpLookupTable (void); void cursorDownLookupTable (void); void pageUpLookupTable (void); void pageDownLookupTable (void); void registerProperties (const PropListPointer &props); void updateProperty (const PropertyPointer &property); void enabled (void); void disabled (void); void forwardKeyEvent (uint keyval, uint keycode, uint state); void deleteSurroundingText (int offset, uint nchars); void requireSurroundingText (void); private Q_SLOTS: void slotCommitText (const QDBusVariant &text); void slotUpdatePreeditText(const QDBusVariant &text, uint cursor_pos, bool visible); void slotHidePreeditText(); void slotShowPreeditText(); void slotUpdateAuxiliaryText(const QDBusVariant &text, bool visible); void slotShowAuxiliaryText(); void slotHideAuxiliaryText(); void slotUpdateLookupTable(const QDBusVariant &table, bool visible); void slotShowLookupTable(); void slotHideLookupTable(); void slotCursorUpLookupTable(); void slotCursorDownLookupTable(); void slotPageUpLookupTable(); void slotPageDownLookupTable(); void slotRegisterProperties(const QDBusVariant &props); void slotUpdateProperty(const QDBusVariant &prop); void slotEnabled(); void slotDisabled(); void slotForwardKeyEvent(uint keyval, uint keycode, uint state); void slotDeleteSurroundingText(int offset, uint nchars); void slotRequireSurroundingText(); /* signals: void disconnected (void); void connected (void); private slots: void slotAddressChanged (const QString &path); void slotIBusDisconnected (void); */ private: BusPointer m_bus; IBusInputContextProxy *m_context; }; }; #endif ibus-qt-1.3.3-Source/src/qibusbus.h000664 001750 001750 00000003645 12325431066 020701 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_BUS_H_ #define __Q_IBUS_BUS_H_ #include #include #include "qibusobject.h" #include "qibusserializable.h" #include "qibusenginedesc.h" #include "qibuscomponent.h" #include "qibusengine.h" class QDBusConnection; class IBusProxy; class DBusProxy; namespace IBus { class Bus; typedef Pointer BusPointer; class Bus : public Object { Q_OBJECT; protected: public: Bus (void); ~Bus (void); bool isConnected (void); const QDBusConnection &getConnection (void); /* org.freedesktop.DBus methods */ QString hello (void); void addMatch (const QString &rule); void removeMatch (const QString &rule); QString getId (void); QString getNameOwner (const QString &name); QStringList listNames (void); bool nameHasOwner (const QString &name); uint requestName (const QString &name, uint flag); uint releaseName (const QString &name); /* org.freedesktop.IBus methods */ QString createInputContext (const QString &name); bool registerComponent (const ComponentPointer &component); bool registerObject (const QString &path, QObject *obj); QList listEngines (void); QList listActiveEngines (void); bool exit (bool restart = false); SerializablePointer ping (const SerializablePointer &data); private: bool open (void); void reset (void); QString getSocketPath (void); QString getAddress (void); signals: /** * @brief Emited when bus is disconnected from ibus daemon. */ void disconnected (void); /** * @brief Emited when bus is connected to ibus daemon. */ void connected (void); private slots: void slotAddressChanged (const QString &path); void slotIBusDisconnected (void); private: QFileSystemWatcher m_watcher; QDBusConnection *m_connection; DBusProxy *m_dbus; IBusProxy *m_ibus; }; }; #endif ibus-qt-1.3.3-Source/src/moc_qibusibusproxy.cxx_parameters000664 001750 001750 00000000602 12325431136 025574 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusibusproxy.cxx /home/tfujiwar/tmp/a/src/qibusibusproxy.h ibus-qt-1.3.3-Source/src/moc_qibusenginefactory.cxx_parameters000664 001750 001750 00000000612 12325431136 026366 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusenginefactory.cxx /home/tfujiwar/tmp/a/src/qibusenginefactory.h ibus-qt-1.3.3-Source/src/qibusengine.cpp000664 001750 001750 00000006475 12325431066 021714 0ustar00tfujiwartfujiwar000000 000000 #include "qibusengine.h" #include "qibusengineadaptor.h" namespace IBus { Engine::Engine (const QString &engineName) : m_engineName(engineName) { m_adaptor = new IBusEngineAdaptor (this); if ( !m_adaptor ) { qDebug () << "Engine::Engine, new IBusEngineAdaptor error!"; } } Engine::~Engine () { if( NULL != m_adaptor ) { delete m_adaptor; m_adaptor = NULL; } } const QString & Engine::engineName () const { return m_engineName; } void Engine::updateLookupTableFast (const LookupTablePointer & lookupTablePtr, bool visible) { if ( static_cast(lookupTablePtr->candidates().size()) <= (lookupTablePtr->pageSize() << 2) ) { updateLookupTable(lookupTablePtr, visible); return ; } LookupTable newLookupTable(lookupTablePtr->pageSize(), 0, lookupTablePtr->isCursorVisible(), lookupTablePtr->isRound()); uint pageNumBegin = lookupTablePtr->cursorPos() / lookupTablePtr->pageSize(); for ( int i = 0; i < (lookupTablePtr->candidates().size()) \ && i < static_cast(pageNumBegin * lookupTablePtr->pageSize() + lookupTablePtr->pageSize()); ++i ) { newLookupTable.appendCandidate (lookupTablePtr->candidate (i)); } newLookupTable.setCursorPos (lookupTablePtr->cursorPos ()); updateLookupTable (static_cast(&newLookupTable), visible); } void Engine::CandidateClicked (uint index, uint button, uint state) { candidateClicked(index, button, state); } void Engine::CursorDown () { cursorDown(); } void Engine::CursorUp () { cursorUp(); } void Engine::Destroy () { destroy(); } void Engine::Disable () { disable(); } void Engine::Enable () { enable(); } void Engine::FocusIn() { focusIn(); } void Engine::FocusOut() { focusOut(); } void Engine::PageDown() { pageDown(); } void Engine::PageUp() { pageUp(); } bool Engine::ProcessKeyEvent(uint keyval, uint keycode, uint state) { return processKeyEvent(keyval, keycode, state); } void Engine::PropertyActivate(const QString &prop_name, int prop_state) { qDebug () << "Engine::PropertyActivate"; propertyActivate(prop_name, prop_state); } void Engine::PropertyHide(const QString &prop_name) { propertyHide(prop_name); } void Engine::PropertyShow(const QString &prop_name) { propertyShow(prop_name); } void Engine::Reset() { reset(); } void Engine::SetCapabilities(uint cap) { setCapabilities(cap); } void Engine::SetCursorLocation(int x, int y, int w, int h) { setCursorLocation(x, y, w, h); } // IME developpers need to implement following functions void Engine::candidateClicked (uint index, uint button, uint state) {} void Engine::cursorDown () {} void Engine::cursorUp () {} void Engine::destroy () {} void Engine::disable () {} void Engine::enable () {} void Engine::focusIn () {} void Engine::focusOut () {} void Engine::pageDown () {} void Engine::pageUp () {} bool Engine::processKeyEvent (uint keyval, uint keycode, uint state) { return true; } void Engine::propertyActivate (const QString &prop_name, int prop_state) { } void Engine::propertyHide (const QString &prop_name) { } void Engine::propertyShow (const QString &prop_name) { } void Engine::reset () { } void Engine::setCapabilities (uint cap) { } void Engine::setCursorLocation (int x, int y, int w, int h) { } }; ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.IBus.InputContext.xml000664 001750 001750 00000006255 12325431066 030145 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/interfaces/introspect_inputcontext.py000775 001750 001750 00000000232 12325431066 026376 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus bus = ibus.Bus() ic = bus.create_input_context ("aa") context = ibus.InputContext (bus, ic) print context.introspect() ibus-qt-1.3.3-Source/src/interfaces/introspect_factory.py000775 001750 001750 00000000212 12325431066 025277 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus import dbus bus = dbus.SessionBus() e = ibus.interface.IEngineFactory() print e.Introspect("/", bus) ibus-qt-1.3.3-Source/src/interfaces/introspect_panel.py000775 001750 001750 00000000202 12325431066 024726 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus import dbus bus = dbus.SessionBus() e = ibus.interface.IPanel() print e.Introspect("/", bus) ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.IBus.Config.xml000664 001750 001750 00000002136 12325431066 026700 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.DBus.xml000664 001750 001750 00000002621 12325431066 025466 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/interfaces/xml2cpp.sh000775 001750 001750 00000001446 12325431066 022737 0ustar00tfujiwartfujiwar000000 000000 #!/bin/sh qdbusxml2cpp -p qibusibusproxy -c IBusProxy -v org.freedesktop.IBus.xml org.freedesktop.IBus qdbusxml2cpp -p qibusdbusproxy -c DBusProxy -v org.freedesktop.DBus.xml org.freedesktop.DBus qdbusxml2cpp -p qibusinputcontextproxy -c IBusInputContextProxy -v org.freedesktop.IBus.InputContext.xml org.freedesktop.IBus.InputContext qdbusxml2cpp -a qibusengineadaptor -c IBusEngineAdaptor -v org.freedesktop.IBus.Engine.xml org.freedesktop.IBus.Engine qdbusxml2cpp -a qibusconfigadaptor -c IBusConfigAdaptor -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config qdbusxml2cpp -p qibusconfigproxy -c IBusConfigProxy -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config qdbusxml2cpp -a qibuspaneladaptor -c IBusPanelAdaptor -v org.freedesktop.IBus.Panel.xml org.freedesktop.IBus.Panel ibus-qt-1.3.3-Source/src/interfaces/introspect_dbus.py000775 001750 001750 00000000120 12325431066 024563 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus bus = ibus.Bus() print bus.introspect_dbus() ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.IBus.xml000664 001750 001750 00000002232 12325431066 025471 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/interfaces/introspect_engine.py000775 001750 001750 00000000203 12325431066 025075 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus import dbus bus = dbus.SessionBus() e = ibus.interface.IEngine() print e.Introspect("/", bus) ibus-qt-1.3.3-Source/src/interfaces/introspect_config.py000775 001750 001750 00000000203 12325431066 025075 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus import dbus bus = dbus.SessionBus() e = ibus.interface.IConfig() print e.Introspect("/", bus) ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.IBus.EngineFactory.xml000664 001750 001750 00000001105 12325431066 030223 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/interfaces/introspect_ibus.py000775 001750 001750 00000000120 12325431066 024570 0ustar00tfujiwartfujiwar000000 000000 #!/usr/bin/env python import ibus bus = ibus.Bus() print bus.introspect_ibus() ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.IBus.Panel.xml000664 001750 001750 00000005655 12325431066 026543 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/interfaces/org.freedesktop.IBus.Engine.xml000664 001750 001750 00000006457 12325431066 026712 0ustar00tfujiwartfujiwar000000 000000 ibus-qt-1.3.3-Source/src/qibusconfigproxy.h000664 001750 001750 00000004634 12325431066 022456 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -p qibusconfigproxy -c IBusConfigProxy -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef QIBUSCONFIGPROXY_H_1268725630 #define QIBUSCONFIGPROXY_H_1268725630 #include #include #include #include #include #include #include #include /* * Proxy class for interface org.freedesktop.IBus.Config */ class IBusConfigProxy: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.freedesktop.IBus.Config"; } public: IBusConfigProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); ~IBusConfigProxy(); public Q_SLOTS: // METHODS inline QDBusPendingReply<> Destroy() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("Destroy"), argumentList); } inline QDBusPendingReply GetValue(const QString §ion, const QString &name) { QList argumentList; argumentList << qVariantFromValue(section) << qVariantFromValue(name); return asyncCallWithArgumentList(QLatin1String("GetValue"), argumentList); } inline QDBusPendingReply<> SetValue(const QString §ion, const QString &name, const QDBusVariant &value) { QList argumentList; argumentList << qVariantFromValue(section) << qVariantFromValue(name) << qVariantFromValue(value); return asyncCallWithArgumentList(QLatin1String("SetValue"), argumentList); } inline QDBusPendingReply<> Unset(const QString §ion, const QString &name) { QList argumentList; argumentList << qVariantFromValue(section) << qVariantFromValue(name); return asyncCallWithArgumentList(QLatin1String("Unset"), argumentList); } Q_SIGNALS: // SIGNALS void ValueChanged(const QString §ion, const QString &name, const QDBusVariant &value); }; namespace org { namespace freedesktop { namespace IBus { typedef ::IBusConfigProxy Config; } } } #endif ibus-qt-1.3.3-Source/src/qibusinputcontextproxy.h000664 001750 001750 00000012526 12325431066 023754 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.8 * Command line was: qdbusxml2cpp -p qibusinputcontextproxy -c IBusInputContextProxy -v org.freedesktop.IBus.InputContext.xml org.freedesktop.IBus.InputContext * * qdbusxml2cpp is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef QIBUSINPUTCONTEXTPROXY_H_1395517681 #define QIBUSINPUTCONTEXTPROXY_H_1395517681 #include #include #include #include #include #include #include #include /* * Proxy class for interface org.freedesktop.IBus.InputContext */ class IBusInputContextProxy: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.freedesktop.IBus.InputContext"; } public: IBusInputContextProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); ~IBusInputContextProxy(); public Q_SLOTS: // METHODS inline QDBusPendingReply<> Destroy() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("Destroy"), argumentList); } inline QDBusPendingReply<> Disable() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("Disable"), argumentList); } inline QDBusPendingReply<> Enable() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("Enable"), argumentList); } inline QDBusPendingReply<> FocusIn() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("FocusIn"), argumentList); } inline QDBusPendingReply<> FocusOut() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("FocusOut"), argumentList); } inline QDBusPendingReply GetEngine() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("GetEngine"), argumentList); } inline QDBusPendingReply IsEnabled() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("IsEnabled"), argumentList); } inline QDBusPendingReply ProcessKeyEvent(uint keyval, uint keycode, uint state) { QList argumentList; argumentList << QVariant::fromValue(keyval) << QVariant::fromValue(keycode) << QVariant::fromValue(state); return asyncCallWithArgumentList(QLatin1String("ProcessKeyEvent"), argumentList); } inline QDBusPendingReply<> PropertyActivate(const QString &name, int state) { QList argumentList; argumentList << QVariant::fromValue(name) << QVariant::fromValue(state); return asyncCallWithArgumentList(QLatin1String("PropertyActivate"), argumentList); } inline QDBusPendingReply<> Reset() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("Reset"), argumentList); } inline QDBusPendingReply<> SetCapabilities(uint caps) { QList argumentList; argumentList << QVariant::fromValue(caps); return asyncCallWithArgumentList(QLatin1String("SetCapabilities"), argumentList); } inline QDBusPendingReply<> SetCursorLocation(int x, int y, int w, int h) { QList argumentList; argumentList << QVariant::fromValue(x) << QVariant::fromValue(y) << QVariant::fromValue(w) << QVariant::fromValue(h); return asyncCallWithArgumentList(QLatin1String("SetCursorLocation"), argumentList); } inline QDBusPendingReply<> SetEngine(const QString &name) { QList argumentList; argumentList << QVariant::fromValue(name); return asyncCallWithArgumentList(QLatin1String("SetEngine"), argumentList); } inline QDBusPendingReply<> SetSurroundingText(const QDBusVariant &text, uint cursor_pos, uint anchor_pos) { QList argumentList; argumentList << QVariant::fromValue(text) << QVariant::fromValue(cursor_pos) << QVariant::fromValue(anchor_pos); return asyncCallWithArgumentList(QLatin1String("SetSurroundingText"), argumentList); } Q_SIGNALS: // SIGNALS void CommitText(const QDBusVariant &text); void CursorDownLookupTable(); void CursorUpLookupTable(); void DeleteSurroundingText(int offset, uint nchars); void Disabled(); void Enabled(); void ForwardKeyEvent(uint keyval, uint keycode, uint state); void HideAuxiliaryText(); void HideLookupTable(); void HidePreeditText(); void PageDownLookupTable(); void PageUpLookupTable(); void RegisterProperties(const QDBusVariant &props); void RequireSurroundingText(); void ShowAuxiliaryText(); void ShowLookupTable(); void ShowPreeditText(); void UpdateAuxiliaryText(const QDBusVariant &text, bool visible); void UpdateLookupTable(const QDBusVariant &table, bool visible); void UpdatePreeditText(const QDBusVariant &text, uint cursor_pos, bool visible); void UpdateProperty(const QDBusVariant &prop); }; namespace org { namespace freedesktop { namespace IBus { typedef ::IBusInputContextProxy InputContext; } } } #endif ibus-qt-1.3.3-Source/src/moc_qibusserializable.cxx_parameters000664 001750 001750 00000000610 12325431136 026175 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusserializable.cxx /home/tfujiwar/tmp/a/src/qibusserializable.h ibus-qt-1.3.3-Source/src/qibusinputcontext.cpp000664 001750 001750 00000017755 12325431066 023216 0ustar00tfujiwartfujiwar000000 000000 #include #include "qibusinputcontext.h" #include "qibusinputcontextproxy.h" namespace IBus { InputContext::InputContext (const BusPointer &bus, const QString &path) : m_bus (bus) { m_context = new IBusInputContextProxy ("org.freedesktop.IBus", path, m_bus->getConnection ()); /* commit text */ QObject::connect (m_context, SIGNAL (CommitText (const QDBusVariant &)), this, SLOT (slotCommitText (const QDBusVariant &))); /* preedit text */ QObject::connect (m_context, SIGNAL (UpdatePreeditText (const QDBusVariant &, uint, bool)), this, SLOT (slotUpdatePreeditText (const QDBusVariant &, uint, bool))); QObject::connect (m_context, SIGNAL (ShowPreeditText (void)), this, SLOT (slotShowPreeditText (void))); QObject::connect (m_context, SIGNAL (HidePreeditText (void)), this, SLOT (slotHidePreeditText (void))); /* auxiliary text */ QObject::connect (m_context, SIGNAL (UpdateAuxiliaryText (const QDBusVariant &, bool)), this, SLOT (slotUpdateAuxiliaryText (const QDBusVariant &, bool))); QObject::connect (m_context, SIGNAL (ShowAuxiliaryText (void)), this, SLOT (slotShowAuxiliaryText (void))); QObject::connect (m_context, SIGNAL (HideAuxiliaryText (void)), this, SLOT (slotHideAuxiliaryText (void))); /*lookup table */ QObject::connect (m_context, SIGNAL (UpdateLookupTable (const QDBusVariant &, bool)), this, SLOT (slotUpdateLookupTable (const QDBusVariant &, bool))); QObject::connect (m_context, SIGNAL (ShowLookupTable (void)), this, SLOT (slotShowLookupTable (void))); QObject::connect (m_context, SIGNAL (HideLookupTable (void)), this, SLOT (slotHideLookupTable (void))); QObject::connect (m_context, SIGNAL (CursorUpLookupTable (void)), this, SLOT (slotCursorUpLookupTable (void))); QObject::connect (m_context, SIGNAL (CursorDownLookupTable (void)), this, SLOT (slotCursorDownLookupTable (void))); QObject::connect (m_context, SIGNAL (PageUpLookupTable (void)), this, SLOT (slotPageUpLookupTable (void))); QObject::connect (m_context, SIGNAL (PageDownLookupTable (void)), this, SLOT (slotPageDownLookupTable (void))); /* property */ QObject::connect (m_context, SIGNAL (RegisterProperties (const QDBusVariant &)), this, SLOT (slotRegisterProperties (const QDBusVariant &))); QObject::connect (m_context, SIGNAL (UpdateProperty (const QDBusVariant &)), this, SLOT (slotUpdateProperty (const QDBusVariant &))); /* others */ QObject::connect (m_context, SIGNAL (DeleteSurroundingText (int, uint)), this, SLOT (slotDeleteSurroundingText (int, uint))); QObject::connect (m_context, SIGNAL (RequireSurroundingText (void)), this, SLOT (slotRequireSurroundingText (void))); QObject::connect (m_context, SIGNAL (ForwardKeyEvent (uint, uint, uint)), this, SLOT (slotForwardKeyEvent (uint, uint, uint))); QObject::connect (m_context, SIGNAL (Enabled (void)), this, SLOT (slotEnabled (void))); QObject::connect (m_context, SIGNAL (Disabled (void)), this, SLOT (slotDisabled (void))); } InputContext::~InputContext (void) { destroy (); } InputContextPointer InputContext::create (const BusPointer &bus, const QString &name) { Q_ASSERT (!bus.isNull ()); if (!bus->isConnected ()) { qWarning () << "InputContext::create:" << "Bus does not connect!"; return NULL; } QString path = bus->createInputContext (name); return new InputContext (bus, path); } void InputContext::reset (void) { Q_ASSERT (m_context); m_context->Reset (); } void InputContext::destroy (void) { Q_ASSERT (m_context); m_context->Destroy (); delete m_context; m_context = NULL; } void InputContext::enable (void) { Q_ASSERT (m_context); m_context->Enable (); } void InputContext::disable (void) { Q_ASSERT (m_context); m_context->Disable (); } void InputContext::focusIn (void) { Q_ASSERT (m_context); m_context->FocusIn (); } void InputContext::focusOut (void) { Q_ASSERT (m_context); m_context->FocusOut (); } void InputContext::getEngine (void) { Q_ASSERT (m_context); m_context->GetEngine (); } bool InputContext::isEnabled (void) { Q_ASSERT (m_context); return m_context->IsEnabled (); } bool InputContext::processKeyEvent (uint keyval, uint keycode, uint state) { Q_ASSERT (m_context); QDBusPendingReply reply = m_context->ProcessKeyEvent (keyval, keycode, state); QEventLoop loop; QDBusPendingCallWatcher watcher (reply); loop.connect (&watcher, SIGNAL(finished(QDBusPendingCallWatcher *)), SLOT(quit())); loop.exec (QEventLoop::ExcludeUserInputEvents | QEventLoop::WaitForMoreEvents); if (reply.isError ()) { qWarning () << "InputContext::processKeyEvent:" << reply.error (); return false; } return reply; } void InputContext::setCapabilities (uint caps) { Q_ASSERT (m_context); m_context->SetCapabilities (caps); } void InputContext::setCursorLocation (int x, int y, int w, int h) { Q_ASSERT (m_context); m_context->SetCursorLocation (x, y, w, h); } void InputContext::setEngine (const QString &name) { Q_ASSERT (m_context); m_context->SetEngine (name); } void InputContext::setSurroundingText (const TextPointer &text, uint cursor_pos, uint anchor_pos) { QDBusVariant dbus_text = qDBusVariantFromSerializable (text); m_context->SetSurroundingText (dbus_text, cursor_pos, anchor_pos); } /* slots */ void InputContext::slotCommitText (const QDBusVariant &text) { commitText (qDBusVariantToSerializable (text)); } /* preedit text */ void InputContext::slotUpdatePreeditText (const QDBusVariant &text, uint cursor_pos, bool visible) { updatePreeditText (qDBusVariantToSerializable (text), cursor_pos, visible); } void InputContext::slotShowPreeditText () { showPreeditText (); } void InputContext::slotHidePreeditText () { hidePreeditText (); } /* auxiliary text */ void InputContext::slotUpdateAuxiliaryText (const QDBusVariant &text, bool visible) { updateAuxiliaryText (qDBusVariantToSerializable (text), visible); } void InputContext::slotShowAuxiliaryText () { showAuxiliaryText (); } void InputContext::slotHideAuxiliaryText () { hideAuxiliaryText (); } /* lookup table */ void InputContext::slotUpdateLookupTable (const QDBusVariant &table, bool visible) { updateLookupTable (qDBusVariantToSerializable (table), visible); } void InputContext::slotShowLookupTable () { showLookupTable (); } void InputContext::slotHideLookupTable () { hideLookupTable (); } void InputContext::slotPageUpLookupTable () { pageUpLookupTable (); } void InputContext::slotPageDownLookupTable () { pageDownLookupTable (); } void InputContext::slotCursorUpLookupTable () { cursorUpLookupTable (); } void InputContext::slotCursorDownLookupTable () { cursorDownLookupTable (); } void InputContext::slotEnabled () { enabled (); } void InputContext::slotDisabled () { disabled (); } void InputContext::slotForwardKeyEvent (uint keyval, uint keycode, uint state) { forwardKeyEvent (keyval, keycode, state); } void InputContext::slotDeleteSurroundingText (int offset, uint nchars) { deleteSurroundingText (offset, nchars); } void InputContext::slotRequireSurroundingText () { requireSurroundingText(); } void InputContext::slotRegisterProperties (const QDBusVariant &props) { registerProperties (qDBusVariantToSerializable (props)); } void InputContext::slotUpdateProperty (const QDBusVariant &prop) { updateProperty (qDBusVariantToSerializable (prop)); } }; ibus-qt-1.3.3-Source/src/qibusserializable.h000664 001750 001750 00000012053 12325431066 022547 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_SERIALIZABLE_H_ #define __Q_IBUS_SERIALIZABLE_H_ #include #include "qibusobject.h" #include #include #include #include #define INIT_PRIO_HIGH __attribute__((init_priority(1000))) // #define INIT_PRIO_LOW __attribute__((init_priority(2000))) #define INIT_PRIO_LOW #define IBUS_SERIALIZABLE \ public: \ static Serializable *newInstance (void); \ static MetaTypeInfo staticMetaTypeInfo; \ virtual const MetaTypeInfo *metaTypeInfo (void) const; #define IBUS_DECLARE_SERIALIZABLE(classname, name) \ Serializable * \ classname::newInstance (void) \ { \ return (Serializable *) new classname (); \ } \ const Serializable::MetaTypeInfo * \ classname::metaTypeInfo (void) const \ { \ return & (classname::staticMetaTypeInfo); \ } \ Serializable::MetaTypeInfo \ classname::staticMetaTypeInfo INIT_PRIO_LOW (QString(#name), classname::newInstance); namespace IBus { class Serializable; typedef Pointer SerializablePointer; class Serializable : public Object { Q_OBJECT; template friend QDBusVariant & qDBusVariantFromSerializable (const Pointer &p, QDBusVariant & dbus_variant); template friend QDBusVariant qDBusVariantFromSerializable (const Pointer &p); template friend Pointer qDBusVariantToSerializable (const QDBusVariant &variant); typedef Serializable * (NewInstanceFunc) (void); protected: class MetaTypeInfo { public: MetaTypeInfo(const QString &name, NewInstanceFunc _new) : m_className (name) { Serializable::registerObject (m_className, _new); } ~MetaTypeInfo (void) { Serializable::unregisterObject (m_className); } const QString &className (void) const { return m_className; } private: QString m_className; }; public: Serializable () {} void setAttachment (const QString &key, const SerializablePointer &value); SerializablePointer getAttachment (const QString &key) const; SerializablePointer removeAttachment (const QString &key); protected: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); private: QMap m_attachments; /* static */ protected: static void registerObject (const QString &name, NewInstanceFunc _new); static void unregisterObject (const QString &name); private: static SerializablePointer createInstance (const QString &name); static QHash type_table; IBUS_SERIALIZABLE }; template QVariant & qVariantFromSerializable (const Pointer &p, QVariant & variant) { QDBusArgument argument; argument.beginStructure (); argument << p->metaTypeInfo ()->className (); p->serialize (argument); argument.endStructure (); variant.setValue (argument); return variant; } template QDBusVariant & qDBusVariantFromSerializable (const Pointer &p, QDBusVariant &dbus_variant) { QVariant variant; QDBusArgument argument; argument.beginStructure (); argument << p->metaTypeInfo ()->className (); p->serialize (argument); argument.endStructure (); variant.setValue (argument); dbus_variant.setVariant (variant); return dbus_variant; } template QDBusVariant qDBusVariantFromSerializable (const Pointer &p) { QDBusVariant variant; return qDBusVariantFromSerializable (p, variant); } template Pointer qDBusVariantToSerializable (const QDBusVariant &variant) { Pointer p; QString name; const QDBusArgument argument = variant.variant().value (); if (argument.currentType () != QDBusArgument::StructureType) { return p; } argument.beginStructure (); argument >> name; p = Serializable::createInstance (name); if (!p.isNull () && !p->deserialize (argument)) { p = NULL; } argument.endStructure (); return p; } template QDBusArgument& operator<< (QDBusArgument& argument, const Pointer &p) { QDBusVariant variant; argument << qDBusVariantFromSerializable (p, variant); return argument; } template const QDBusArgument& operator>> (const QDBusArgument& argument, Pointer &p) { Q_ASSERT ((argument.currentType () == QDBusArgument::VariantType)); QDBusVariant variant; argument >> variant; p = qDBusVariantToSerializable (variant); return argument; } }; Q_DECLARE_METATYPE (IBus::SerializablePointer); #endif ibus-qt-1.3.3-Source/src/moc_qibusobservedpath.cxx_parameters000664 001750 001750 00000000610 12325431136 026215 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusobservedpath.cxx /home/tfujiwar/tmp/a/src/qibusobservedpath.h ibus-qt-1.3.3-Source/src/qibusattrlist.h000664 001750 001750 00000001405 12325431066 021746 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_ATTRLIST_H_ #define __Q_IBUS_ATTRLIST_H_ #include "qibusattribute.h" #include namespace IBus { class AttrList; typedef Pointer AttrListPointer; class AttrList : public Serializable { Q_OBJECT public : AttrList (): m_attrs (0) {} virtual ~AttrList (); public : AttributePointer get(int index) const; void append (const AttributePointer &attr); void clear (void); uint size (void) const { return m_attrs.size (); } AttributePointer operator[] (int index) const { return get (index); } virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); private : QVector m_attrs; IBUS_SERIALIZABLE }; } /* IBUS */ #endif ibus-qt-1.3.3-Source/src/qibusattribute.h000664 001750 001750 00000003534 12325431066 022110 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_ATTRIBUTE_H_ #define __Q_IBUS_ATTRIBUTE_H_ #include "qibusserializable.h" namespace IBus { class Attribute; typedef Pointer AttributePointer; class Attribute : public Serializable { Q_OBJECT public: /* * Type enumeration of IBusText attribute. */ typedef enum { TypeUnderline = 1, TypeForeground = 2, TypeBackground = 3, } Type; /* * Type of IBusText attribute. */ typedef enum { UnderlineNone = 0, UnderlineSingle = 1, UnderlineDouble = 2, UnderlineLow = 3, UnderlineError = 4, } Underline; public: Attribute (uint type = 0, uint value = 0, uint start = 0, uint end = 0) : m_type (type), m_value (value),m_start (start), m_end (end) {} public: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); uint type (void) const { return m_type; } uint value (void) const { return m_value; } uint start (void) const { return m_start; } uint end (void) const { return m_end; } uint length (void) const { return (m_end - m_start); } protected: uint m_type; uint m_value; uint m_start; uint m_end; IBUS_SERIALIZABLE }; class AttributeUnderline : public Attribute { public: AttributeUnderline (uint underlineType = 0, uint start = 0, uint end = 0) : Attribute (TypeUnderline, underlineType, start, end) {} }; class AttributeForeground: public Attribute { public: AttributeForeground (uint color = 0, uint start = 0, uint end = 0) : Attribute (TypeForeground, color, start, end) {} }; class AttributeBackground: public Attribute { public: AttributeBackground (uint color = 0, uint start = 0, uint end = 0) : Attribute (TypeBackground, color, start, end) {} }; }; #endif ibus-qt-1.3.3-Source/src/qibusinputcontextproxy.cpp000664 001750 001750 00000001474 12325431066 024307 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.8 * Command line was: qdbusxml2cpp -p qibusinputcontextproxy -c IBusInputContextProxy -v org.freedesktop.IBus.InputContext.xml org.freedesktop.IBus.InputContext * * qdbusxml2cpp is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #include "qibusinputcontextproxy.h" /* * Implementation of interface class IBusInputContextProxy */ IBusInputContextProxy::IBusInputContextProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) { } IBusInputContextProxy::~IBusInputContextProxy() { } ibus-qt-1.3.3-Source/src/qibus.h000664 001750 001750 00000000442 12325431066 020157 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_H_ #define __Q_IBUS_H_ #include #include #include #include #include #include #include #include #include #endif ibus-qt-1.3.3-Source/src/moc_qibusdbusproxy.cxx_parameters000664 001750 001750 00000000602 12325431136 025567 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusdbusproxy.cxx /home/tfujiwar/tmp/a/src/qibusdbusproxy.h ibus-qt-1.3.3-Source/src/qibusconfigproxy.cpp000664 001750 001750 00000001410 12325431066 022776 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -p qibusconfigproxy -c IBusConfigProxy -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #include "qibusconfigproxy.h" /* * Implementation of interface class IBusConfigProxy */ IBusConfigProxy::IBusConfigProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) { } IBusConfigProxy::~IBusConfigProxy() { } ibus-qt-1.3.3-Source/src/qibustext.cpp000664 001750 001750 00000001676 12325431066 021431 0ustar00tfujiwartfujiwar000000 000000 #include #include "qibustext.h" namespace IBus { IBUS_DECLARE_SERIALIZABLE(Text, IBusText); bool Text::serialize (QDBusArgument &argument) { if (!Serializable::serialize (argument)) return false; argument << m_text; if ( m_attrs.isNull () ) { m_attrs = new AttrList (); } argument << m_attrs; return true; } bool Text::deserialize (const QDBusArgument &argument) { if (!Serializable::deserialize (argument)) return false; argument >> m_text; argument >> m_attrs; return true; } void Text::appendAttribute (uint type, uint value, uint startIndex, int endIndex) { if ( endIndex < 0 ) { endIndex += getLength() + 1; } if ( endIndex <= 0 ) { return ; } if ( m_attrs.isNull() ) { m_attrs = new AttrList(); } AttributePointer attribute = new Attribute (type, value, startIndex, endIndex); m_attrs->append(attribute); } }; ibus-qt-1.3.3-Source/src/ibus.cpp000664 001750 001750 00000003526 12325431066 020337 0ustar00tfujiwartfujiwar000000 000000 #include #include #include #include #include #include #include #include "qibusserializable.h" #include "qibustext.h" #include "qibusbus.h" #include "qibusattribute.h" #include using namespace IBus; class App : QCoreApplication { public: App (int &argc, char **argv ) : QCoreApplication (argc, argv) { } }; int main (int argc, char **argv) { App app(argc, argv); Bus bus; SerializablePointer p = new Serializable (); p = bus.ping (p); bus.createInputContext ("Test"); QCoreApplication::exec (); #if 0 qDBusRegisterMetaType(); QDBusArgument arg; { SerializablePointer p; p = new Serializable (); QVariant v = qVariantFromValue (p); QDBusVariant dv (v); SerializablePointer p1 = v.value(); arg << p; } App app(argc, argv); Connection connection (QString ("unix:path=/tmp/ibus-liudl/ibus-unix-0")); org::freedesktop::IBus bus (QString ("org.freedesktop.IBus"), QString ("/org/freedesktop/IBus"), connection.getConnection ()); SerializablePointer p = /* (Serializable *) */ new Attribute(); QVariant v = qVariantFromValue (p); std::cout << v.toInt(); QDBusPendingReply ret = bus.Ping (qDBusVariantFromSerializable (p)); SerializablePointer p1 = qDBusVariantToSerializable (ret); #endif #if 0 Serializable *obj1, *obj2; QDBusArgument arg; obj1 = new Serializable (); Serializable::serializeObject (obj1, arg); delete obj1; QVariant a = QVariant::fromValue(arg); QDBusArgument argout = ret.argumentAt<0>().variant().value(); Serializable::deserializeObject (obj2, argout); #endif return 0; } ibus-qt-1.3.3-Source/src/qibustext.h000664 001750 001750 00000001632 12325431066 021066 0ustar00tfujiwartfujiwar000000 000000 #ifndef __Q_IBUS_TEXT_H_ #define __Q_IBUS_TEXT_H_ #include "qibusserializable.h" #include "qibusattribute.h" #include "qibusattrlist.h" namespace IBus { class Text; typedef Pointer TextPointer; class Text : public Serializable { Q_OBJECT; protected: public: Text () {} Text (const QString &text) : m_text (text), m_attrs(0) {} Text (const QChar &ch) : m_text (ch), m_attrs(0) {} public: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); const QString &text (void) const { return m_text; } const AttrListPointer &attrs (void) const { return m_attrs; } const uint getLength (void) const { return m_text.length(); } void appendAttribute (uint type, uint value, uint startIndex, int endIndex); private: QString m_text; AttrListPointer m_attrs; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/moc_qibusproperty.cxx_parameters000664 001750 001750 00000000600 12325431136 025412 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusproperty.cxx /home/tfujiwar/tmp/a/src/qibusproperty.h ibus-qt-1.3.3-Source/src/moc_qibusengine.cxx_parameters000664 001750 001750 00000000574 12325431136 025005 0ustar00tfujiwartfujiwar000000 000000 -I/usr/include -I/usr/include/QtGui -I/usr/include/QtDBus -I/usr/include/QtXml -I/usr/include/QtCore -I/usr/include/QtCore -I/usr/include/QtDBus -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -D$<$>:QT_NO_DEBUG> -DQT_GUI_LIB -DQT_DBUS_LIB -DQT_XML_LIB -DQT_CORE_LIB -o /home/tfujiwar/tmp/a/src/moc_qibusengine.cxx /home/tfujiwar/tmp/a/src/qibusengine.h ibus-qt-1.3.3-Source/src/qibusobservedpath.h000664 001750 001750 00000002334 12325431066 022570 0ustar00tfujiwartfujiwar000000 000000 #ifndef _Q_IBUS_OBSERVED_PATH_H_ #define _Q_IBUS_OBSERVED_PATH_H_ #include #include #include #include #include #include "qibusserializable.h" namespace IBus { class ObservedPath; typedef Pointer ObservedPathPointer; class ObservedPath : public Serializable { Q_OBJECT; public: ObservedPath () {} ObservedPath (QString path): m_path(path) {} ~ObservedPath () {} public: virtual bool serialize (QDBusArgument &argument); virtual bool deserialize (const QDBusArgument &argument); public: bool parseXmlNode (const QDomNode & node); const QString & path() const { return m_path; } int mtime() const { return m_mtime; } #if 0 bool isObservedPathModified () const; void setObservedPathStat (); void traverseObservedPath (QVector & observedPathVec) const; bool isRegularFile() const { QFileInfo fi(m_path); return fi.isFile(); } bool isDirFile() const { QFileInfo fi(m_path); return fi.isDir(); } #endif private: QString m_path; uint m_mtime; bool m_isDir; bool m_isExist; IBUS_SERIALIZABLE }; }; #endif ibus-qt-1.3.3-Source/src/qibusconfigservice.cpp000664 001750 001750 00000001604 12325431066 023262 0ustar00tfujiwartfujiwar000000 000000 #include #include "qibusconfigservice.h" #include "qibusconfigadaptor.h" namespace IBus { ConfigService::ConfigService (const QDBusConnection &conn) : m_conn(conn) { m_config = new IBusConfigAdaptor (this); if ( !m_config ) { qDebug () << "ConfigService::ConfigService, new IBusConfigAdaptor error!"; } } ConfigService::~ConfigService () { if ( NULL != m_config ) { delete m_config; m_config = NULL; } } const QDBusVariant ConfigService::GetValue (const QString §ion, const QString &name) { return getValue (section, name); } void ConfigService::SetValue (const QString §ion, const QString &name, const QDBusVariant &value) { setValue (section, name, value); } void ConfigService::Unset (const QString §ion, const QString &name) { unset (section, name); } void ConfigService::Destroy (void) { destroy (); } }; ibus-qt-1.3.3-Source/src/qibusdbusproxy.h000664 001750 001750 00000006360 12325431066 022144 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -p qibusdbusproxy -c DBusProxy -v org.freedesktop.DBus.xml org.freedesktop.DBus * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef QIBUSDBUSPROXY_H_1268725630 #define QIBUSDBUSPROXY_H_1268725630 #include #include #include #include #include #include #include #include /* * Proxy class for interface org.freedesktop.DBus */ class DBusProxy: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.freedesktop.DBus"; } public: DBusProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); ~DBusProxy(); public Q_SLOTS: // METHODS inline QDBusPendingReply<> AddMatch(const QString &in0) { QList argumentList; argumentList << qVariantFromValue(in0); return asyncCallWithArgumentList(QLatin1String("AddMatch"), argumentList); } inline QDBusPendingReply GetId() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("GetId"), argumentList); } inline QDBusPendingReply GetNameOwner(const QString &in0) { QList argumentList; argumentList << qVariantFromValue(in0); return asyncCallWithArgumentList(QLatin1String("GetNameOwner"), argumentList); } inline QDBusPendingReply Hello() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("Hello"), argumentList); } inline QDBusPendingReply ListNames() { QList argumentList; return asyncCallWithArgumentList(QLatin1String("ListNames"), argumentList); } inline QDBusPendingReply NameHasOwner(const QString &in0) { QList argumentList; argumentList << qVariantFromValue(in0); return asyncCallWithArgumentList(QLatin1String("NameHasOwner"), argumentList); } inline QDBusPendingReply ReleaseName(const QString &in0) { QList argumentList; argumentList << qVariantFromValue(in0); return asyncCallWithArgumentList(QLatin1String("ReleaseName"), argumentList); } inline QDBusPendingReply<> RemoveMatch(const QString &in0) { QList argumentList; argumentList << qVariantFromValue(in0); return asyncCallWithArgumentList(QLatin1String("RemoveMatch"), argumentList); } inline QDBusPendingReply RequestName(const QString &in0, uint in1) { QList argumentList; argumentList << qVariantFromValue(in0) << qVariantFromValue(in1); return asyncCallWithArgumentList(QLatin1String("RequestName"), argumentList); } Q_SIGNALS: // SIGNALS void NameOwnerChanged(const QString &in0, const QString &in1, const QString &in2); }; namespace org { namespace freedesktop { typedef ::DBusProxy DBus; } } #endif ibus-qt-1.3.3-Source/src/qibusdbusproxy.cpp000664 001750 001750 00000001322 12325431066 022470 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -p qibusdbusproxy -c DBusProxy -v org.freedesktop.DBus.xml org.freedesktop.DBus * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #include "qibusdbusproxy.h" /* * Implementation of interface class DBusProxy */ DBusProxy::DBusProxy(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) { } DBusProxy::~DBusProxy() { } ibus-qt-1.3.3-Source/src/qibusbus.cpp000664 001750 001750 00000033751 12325431066 021235 0ustar00tfujiwartfujiwar000000 000000 #include #include #include #include #include #include #include #include #include #include #include #include "qibusbus.h" #include "qibusibusproxy.h" #include "qibusdbusproxy.h" #include #include namespace IBus { /** * @brief Constructor of Bus object. * * @return */ Bus::Bus (void) : m_connection (NULL), m_dbus (NULL), m_ibus (NULL) { QFileInfo file (getSocketPath ()); m_watcher.addPath (file.path ()); if (file.exists ()) { m_watcher.addPath (file.filePath ()); } QObject::connect (&m_watcher, SIGNAL (fileChanged (const QString &)), this, SLOT (slotAddressChanged (const QString &))); QObject::connect (&m_watcher, SIGNAL (directoryChanged (const QString &)), this, SLOT (slotAddressChanged (const QString &))); open (); } /** * @brief Destructor of Bus object. * * @return */ Bus::~Bus (void) { reset (); } /** * @brief Rest Bus object * * @return */ void Bus::reset (void) { QDBusConnection::disconnectFromBus ("IBus"); if (m_connection) { delete m_connection; m_connection = NULL; } if (m_dbus) { delete m_dbus; m_dbus = NULL; } if (m_ibus) { delete m_ibus; m_ibus = NULL; } } bool Bus::open (void) { Q_ASSERT (!isConnected ()); reset (); QString address = getAddress (); if (address.isEmpty ()) { qWarning () << "Bus::open:" << "Can not get ibus-daemon's address."; return false; } m_connection = new QDBusConnection ( QDBusConnection::connectToBus (address, "IBus")); if (!isConnected ()) { qWarning () << "Bus::open:" << "Connect ibus failed!"; delete m_connection; m_connection = NULL; return false; } m_dbus = new DBusProxy ("org.freedesktop.DBus", "/org/freedesktop/DBus", *m_connection); m_ibus = new IBusProxy ("org.freedesktop.IBus", "/org/freedesktop/IBus", *m_connection); m_connection->connect ("org.freedesktop.DBus.Local", "/org/freedesktop/DBus/Local", "org.freedesktop.DBus.Local", "Disconnected", this, SLOT (slotIBusDisconnected (void))); connected (); return false; } QString Bus::getSocketPath (void) { QString display = getenv ("DISPLAY"); QString hostname = "unix"; QString display_number = "0"; /* fallback when -display is passed to QApplication with no DISPLAY env */ if (display == NULL) { Display * dpy = QX11Info::display(); if (dpy) display = XDisplayString(dpy); } if (display != NULL && display.contains(':')) { QStringList strs = display.split(":"); if (!strs[0].isEmpty()) hostname = strs[0]; strs = strs[1].split("."); if (!strs[0].isEmpty()) display_number = strs[0]; } QString path = QDir::homePath() + QDir::separator() + ".config" + QDir::separator() + "ibus" + QDir::separator() + "bus" + QDir::separator() + dbus_get_local_machine_id () + "-" + hostname + "-" + display_number; return path; } QString Bus::getAddress (void) { QString address; pid_t pid = -1; QString path = getSocketPath (); QFile file(path); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return address; while (!file.atEnd ()) { QString line(file.readLine ()); line = line.trimmed (); if (line.startsWith ("#")) continue; if (line.startsWith ("IBUS_ADDRESS=")) { address = line.mid (sizeof ("IBUS_ADDRESS=") -1); continue; } if (line.startsWith ("IBUS_DAEMON_PID=")) { bool ok = false; pid = line.mid (sizeof ("IBUS_DAEMON_PID=") - 1).toInt (&ok); if (!ok) pid = -1; continue; } } if (pid == -1 || kill (pid, 0) != 0) address = ""; return address; } /** * @brief Gets whether the bus is connected to ibus daemon. * * @return true if @object is connected to ibus daemon, otherwise false. */ bool Bus::isConnected (void) { return ((m_connection != NULL) && m_connection->isConnected ()); } /** * @brief Gets the QDBusConnection object * * @return QDBusConnection object in Bus. */ const QDBusConnection & Bus::getConnection (void) { return *m_connection; } /** * @brief Says hello to ibus daemon, and gets a unique name from the daemon * * @return unique name from ibus daemon */ QString Bus::hello (void) { if (!isConnected ()) { qWarning () << "Bus::hello:" << "IBus is not connected!"; return NULL; } QDBusPendingReply reply = m_dbus->Hello (); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::hello:" << reply.error (); return NULL; } return reply; } /** * @brief Adds a match rule to match message going through the bus * * @param[in] rule Match rule * @return */ void Bus::addMatch (const QString &rule) { if (!isConnected ()) { qWarning () << "Bus::addMatch:" << "IBus is not connected!"; return; } QDBusPendingReply<> reply = m_dbus->AddMatch (rule); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::addMatch:" << reply.error (); return; } } /** * @brief Removes a match rule to match message going through the bus * * @param[in] rule Match rule * @return */ void Bus::removeMatch (const QString &rule) { if (!isConnected ()) { qWarning () << "Bus::removeMatch:" << "IBus is not connected!"; return; } QDBusPendingReply<> reply = m_dbus->RemoveMatch (rule); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::removeMatch:" << reply.error (); return; } } /** * @brief Asks ibus daemon to return its globally unique ID. * * @return the bus ID or Null */ QString Bus::getId (void) { if (!isConnected ()) { qWarning () << "Bus::getId:" << "IBus is not connected!"; return NULL; } QDBusPendingReply reply = m_dbus->GetId (); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::getId:" << reply.error (); return NULL; } return reply; } /** * @brief Asks ibus daemon to return the owner of a bus name * * @return name owner or Null */ QString Bus::getNameOwner (const QString &name) { if (!isConnected ()) { qWarning () << "Bus::getNameOwner:" << "IBus is not connected!"; return NULL; } QDBusPendingReply reply = m_dbus->GetNameOwner (name); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::getNameOwner:" << reply.error (); return NULL; } return reply; } /** * @brief Asks ibus daemon to return all client names * * @return List of names */ QStringList Bus::listNames (void) { if (!isConnected ()) { qWarning () << "Bus::listNames:" << "IBus is not connected!"; return QStringList (); } QDBusPendingReply reply = m_dbus->ListNames (); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::listNames:" << reply.error (); return QStringList (); } return reply; } /** * @brief Gets whether name has an owner * * @param[in] name Bus name * @return true if the name has owner, false otherwise. */ bool Bus::nameHasOwner (const QString &name) { if (!isConnected ()) { qWarning () << "Bus::nameHasOwner:" << "IBus is not connected!"; return false; } QDBusPendingReply reply = m_dbus->NameHasOwner (name); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::nameHasOwner:" << reply.error (); return false; } return reply; } /** * @brief Asks ibus daemon to assign the given name to this connection * @param[in] name Bus name * @param[in] flag Unused * @return 0 if error happens */ uint Bus::requestName (const QString &name, uint flag) { if (!isConnected ()) { qWarning () << "Bus::requestName:" << "IBus is not connected!"; return 0; } QDBusPendingReply reply = m_dbus->RequestName (name, flag); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::requestName:" << reply.error (); return 0; } return reply; } /** * @brief Asks ibus daemon to release the given name of this connection * * @param[in] name Bus name * @return 0 if error happens */ uint Bus::releaseName (const QString &name) { if (!isConnected ()) { qWarning () << "Bus::releaseName:" << "IBus is not connected!"; return 0; } QDBusPendingReply reply = m_dbus->ReleaseName (name); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::releaseName:" << reply.error (); return 0; } return reply; } /* org.freedesktop.IBus methods */ /** * @brief Asks ibus daemon to create an input context * * @param[in] name Client name * @return Object path of the input context */ QString Bus::createInputContext (const QString &name) { if (!isConnected ()) { qWarning () << "Bus::createInputContext:" << "IBus is not connected!"; return NULL; } QDBusPendingReply reply = m_ibus->CreateInputContext (name); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::createInputContext:" << reply.error (); return NULL; } return reply.value ().path (); } /** * @brief Registers a components with ibus daemon. * * @param[in] component A Component * @return true if suceeded, false otherwise. */ bool Bus::registerComponent (const ComponentPointer &component) { Q_ASSERT (!component.isNull ()); QDBusVariant variant; if (!isConnected ()) { qWarning () << "Bus::registerComponent:" << "IBus is not connected!"; return false; } QDBusPendingReply<> reply = m_ibus->RegisterComponent (qDBusVariantFromSerializable (component, variant)); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::registerComponent:" << reply.error (); return false; } return true; } /** * @brief Registers an object with the connection * * @param[in] path The object path. * @param[in] obj The object pointer. * @return true if suceeded, false otherwise. */ bool Bus::registerObject (const QString &path, QObject *obj) { if (m_connection == NULL) return false; return m_connection->registerObject (path, obj); } /** * @brief Asks ibus daemon to return a list of engines. * * @return A List of engines */ QList Bus::listEngines (void) { QList engines; if (!isConnected ()) { qWarning () << "Bus::listEngines:" << "IBus is not connected!"; return engines; } QDBusPendingReply reply = m_ibus->ListEngines (); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::listEngines:" << reply.error (); return engines; } QVariantList ret = reply.value (); for (int i = 0; i < ret.size (); i++) { EngineDescPointer e; ret.at(i).value() >> e; engines << e; } return engines; } /** * @brief Asks ibus daemon to return a list of active engines. * * @return A List of active engines */ QList Bus::listActiveEngines (void) { QList engines; if (!isConnected ()) { qWarning () << "Bus::listActiveEngines:" << "IBus is not connected!"; return engines; } QDBusPendingReply reply = m_ibus->ListActiveEngines (); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::listActiveEngines:" << reply.error (); return engines; } QVariantList ret = reply.value (); for (int i = 0; i < ret.size (); i++) { EngineDescPointer e; ret.at(i).value() >> e; engines << e; } return engines; } /** * @brief Asks ibus daemon to exit. * * @param[in] restart Whether restart ibus daemon after exiting * @return true if suceeded, false otherwise. */ bool Bus::exit (bool restart) { if (!isConnected ()) { qWarning () << "Bus::exit:" << "IBus is not connected!"; return false; } QDBusPendingReply<> reply = m_ibus->Exit (restart); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::exit:" << reply.error (); return false; } return true; } /** * @brief Pings ibus daemon with a serializable object * * @param[in] data The data will be sent to ibus daemon. * @return The data from ibus daemon. */ SerializablePointer Bus::ping (const SerializablePointer &data) { Q_ASSERT (!data.isNull ()); QDBusVariant variant; if (!isConnected ()) { qWarning () << "Bus::ping:" << "IBus is not connected!"; return NULL; } QDBusPendingReply reply = m_ibus->Ping (qDBusVariantFromSerializable (data, variant)); reply.waitForFinished (); if (reply.isError ()) { qWarning () << "Bus::ping:" << reply.error (); return NULL; } return qDBusVariantToSerializable (reply.value ()); } void Bus::slotAddressChanged (const QString &path) { QFileInfo file(getSocketPath ()); if (file.exists ()) { if (m_watcher.files ().indexOf (file.filePath ()) == -1) m_watcher.addPath (getSocketPath ()); if (! isConnected ()) { open (); } } } void Bus::slotIBusDisconnected (void) { disconnected (); reset (); } }; ibus-qt-1.3.3-Source/src/qibusconfigadaptor.h000664 001750 001750 00000004515 12325431066 022725 0ustar00tfujiwartfujiwar000000 000000 /* * This file was generated by qdbusxml2cpp version 0.7 * Command line was: qdbusxml2cpp -a qibusconfigadaptor -c IBusConfigAdaptor -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config * * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). * * This is an auto-generated file. * This file may have been hand-edited. Look for HAND-EDIT comments * before re-generating it. */ #ifndef QIBUSCONFIGADAPTOR_H_1268725630 #define QIBUSCONFIGADAPTOR_H_1268725630 #include #include class QByteArray; template class QList; template class QMap; class QString; class QStringList; class QVariant; /* * Adaptor class for interface org.freedesktop.IBus.Config */ class IBusConfigAdaptor: public QDBusAbstractAdaptor { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.freedesktop.IBus.Config") Q_CLASSINFO("D-Bus Introspection", "" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" " \n" "") public: IBusConfigAdaptor(QObject *parent); virtual ~IBusConfigAdaptor(); public: // PROPERTIES public Q_SLOTS: // METHODS void Destroy(); QDBusVariant GetValue(const QString §ion, const QString &name); void SetValue(const QString §ion, const QString &name, const QDBusVariant &value); void Unset(const QString §ion, const QString &name); Q_SIGNALS: // SIGNALS void ValueChanged(const QString §ion, const QString &name, const QDBusVariant &value); }; #endif