├── Keyboard.ico ├── LICENSE ├── README.md ├── ShowPictures └── 1.gif ├── Soft-keyboard.pro ├── chineseInput ├── chineseBase │ └── chinese.db ├── xydatabaseoperation.cpp ├── xydatabaseoperation.h ├── xyinputsearchinterface.cpp ├── xyinputsearchinterface.h ├── xytranslateitem.cpp └── xytranslateitem.h ├── data ├── files.qrc └── symbol.txt ├── ico.rc ├── images ├── Keyboard.ico └── images.qrc ├── libgooglepinyin ├── dict │ ├── dict_pinyin.dat │ └── dict_pinyin_user.dat ├── googlepinyin.pri ├── include │ ├── CMakeLists.txt │ ├── atomdictbase.h │ ├── dictbuilder.h │ ├── dictdef.h │ ├── dictlist.h │ ├── dicttrie.h │ ├── lpicache.h │ ├── matrixsearch.h │ ├── mystdlib.h │ ├── ngram.h │ ├── pinyinime.h │ ├── searchutility.h │ ├── spellingtable.h │ ├── spellingtrie.h │ ├── splparser.h │ ├── sync.h │ ├── userdict.h │ ├── utf16char.h │ └── utf16reader.h ├── src │ ├── CMakeLists.txt │ ├── dictbuilder.cpp │ ├── dictlist.cpp │ ├── dicttrie.cpp │ ├── lpicache.cpp │ ├── matrixsearch.cpp │ ├── mystdlib.cpp │ ├── ngram.cpp │ ├── pinyinime.cpp │ ├── searchutility.cpp │ ├── spellingtable.cpp │ ├── spellingtrie.cpp │ ├── splparser.cpp │ ├── sync.cpp │ ├── userdict.cpp │ ├── utf16char.cpp │ └── utf16reader.cpp ├── xygooglepinyin.cpp └── xygooglepinyin.h ├── main.cpp ├── skin ├── blue.skin ├── dark.skin └── yellow.skin ├── xydragablewidget.cpp ├── xydragablewidget.h ├── xyhdragabletranslateview.cpp ├── xyhdragabletranslateview.h ├── xyinput.json ├── xyinputplugin.cpp ├── xyinputplugin.h ├── xyplatforminputcontext.cpp ├── xyplatforminputcontext.h ├── xypushbutton.cpp ├── xypushbutton.h ├── xyqstringview.cpp ├── xyqstringview.h ├── xyskin.cpp ├── xyskin.h ├── xytempwindows.cpp ├── xytempwindows.h ├── xyvdragabletranslateview.cpp ├── xyvdragabletranslateview.h ├── xyvirtualkeyboard.cpp └── xyvirtualkeyboard.h /Keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/Keyboard.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Soft-keyboard 2 | 3 | ![](ShowPictures/1.gif) 4 | -------------------------------------------------------------------------------- /ShowPictures/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/ShowPictures/1.gif -------------------------------------------------------------------------------- /Soft-keyboard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/Soft-keyboard.pro -------------------------------------------------------------------------------- /chineseInput/chineseBase/chinese.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/chineseBase/chinese.db -------------------------------------------------------------------------------- /chineseInput/xydatabaseoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/xydatabaseoperation.cpp -------------------------------------------------------------------------------- /chineseInput/xydatabaseoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/xydatabaseoperation.h -------------------------------------------------------------------------------- /chineseInput/xyinputsearchinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/xyinputsearchinterface.cpp -------------------------------------------------------------------------------- /chineseInput/xyinputsearchinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/xyinputsearchinterface.h -------------------------------------------------------------------------------- /chineseInput/xytranslateitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/xytranslateitem.cpp -------------------------------------------------------------------------------- /chineseInput/xytranslateitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/chineseInput/xytranslateitem.h -------------------------------------------------------------------------------- /data/files.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/data/files.qrc -------------------------------------------------------------------------------- /data/symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/data/symbol.txt -------------------------------------------------------------------------------- /ico.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/ico.rc -------------------------------------------------------------------------------- /images/Keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/images/Keyboard.ico -------------------------------------------------------------------------------- /images/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/images/images.qrc -------------------------------------------------------------------------------- /libgooglepinyin/dict/dict_pinyin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/dict/dict_pinyin.dat -------------------------------------------------------------------------------- /libgooglepinyin/dict/dict_pinyin_user.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/dict/dict_pinyin_user.dat -------------------------------------------------------------------------------- /libgooglepinyin/googlepinyin.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/googlepinyin.pri -------------------------------------------------------------------------------- /libgooglepinyin/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/CMakeLists.txt -------------------------------------------------------------------------------- /libgooglepinyin/include/atomdictbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/atomdictbase.h -------------------------------------------------------------------------------- /libgooglepinyin/include/dictbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/dictbuilder.h -------------------------------------------------------------------------------- /libgooglepinyin/include/dictdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/dictdef.h -------------------------------------------------------------------------------- /libgooglepinyin/include/dictlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/dictlist.h -------------------------------------------------------------------------------- /libgooglepinyin/include/dicttrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/dicttrie.h -------------------------------------------------------------------------------- /libgooglepinyin/include/lpicache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/lpicache.h -------------------------------------------------------------------------------- /libgooglepinyin/include/matrixsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/matrixsearch.h -------------------------------------------------------------------------------- /libgooglepinyin/include/mystdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/mystdlib.h -------------------------------------------------------------------------------- /libgooglepinyin/include/ngram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/ngram.h -------------------------------------------------------------------------------- /libgooglepinyin/include/pinyinime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/pinyinime.h -------------------------------------------------------------------------------- /libgooglepinyin/include/searchutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/searchutility.h -------------------------------------------------------------------------------- /libgooglepinyin/include/spellingtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/spellingtable.h -------------------------------------------------------------------------------- /libgooglepinyin/include/spellingtrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/spellingtrie.h -------------------------------------------------------------------------------- /libgooglepinyin/include/splparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/splparser.h -------------------------------------------------------------------------------- /libgooglepinyin/include/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/sync.h -------------------------------------------------------------------------------- /libgooglepinyin/include/userdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/userdict.h -------------------------------------------------------------------------------- /libgooglepinyin/include/utf16char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/utf16char.h -------------------------------------------------------------------------------- /libgooglepinyin/include/utf16reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/include/utf16reader.h -------------------------------------------------------------------------------- /libgooglepinyin/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/CMakeLists.txt -------------------------------------------------------------------------------- /libgooglepinyin/src/dictbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/dictbuilder.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/dictlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/dictlist.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/dicttrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/dicttrie.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/lpicache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/lpicache.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/matrixsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/matrixsearch.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/mystdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/mystdlib.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/ngram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/ngram.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/pinyinime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/pinyinime.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/searchutility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/searchutility.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/spellingtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/spellingtable.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/spellingtrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/spellingtrie.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/splparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/splparser.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/sync.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/userdict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/userdict.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/utf16char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/utf16char.cpp -------------------------------------------------------------------------------- /libgooglepinyin/src/utf16reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/src/utf16reader.cpp -------------------------------------------------------------------------------- /libgooglepinyin/xygooglepinyin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/xygooglepinyin.cpp -------------------------------------------------------------------------------- /libgooglepinyin/xygooglepinyin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/libgooglepinyin/xygooglepinyin.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/main.cpp -------------------------------------------------------------------------------- /skin/blue.skin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/skin/blue.skin -------------------------------------------------------------------------------- /skin/dark.skin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/skin/dark.skin -------------------------------------------------------------------------------- /skin/yellow.skin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/skin/yellow.skin -------------------------------------------------------------------------------- /xydragablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xydragablewidget.cpp -------------------------------------------------------------------------------- /xydragablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xydragablewidget.h -------------------------------------------------------------------------------- /xyhdragabletranslateview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyhdragabletranslateview.cpp -------------------------------------------------------------------------------- /xyhdragabletranslateview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyhdragabletranslateview.h -------------------------------------------------------------------------------- /xyinput.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "xyinput" ] 3 | } 4 | -------------------------------------------------------------------------------- /xyinputplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyinputplugin.cpp -------------------------------------------------------------------------------- /xyinputplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyinputplugin.h -------------------------------------------------------------------------------- /xyplatforminputcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyplatforminputcontext.cpp -------------------------------------------------------------------------------- /xyplatforminputcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyplatforminputcontext.h -------------------------------------------------------------------------------- /xypushbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xypushbutton.cpp -------------------------------------------------------------------------------- /xypushbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xypushbutton.h -------------------------------------------------------------------------------- /xyqstringview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyqstringview.cpp -------------------------------------------------------------------------------- /xyqstringview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyqstringview.h -------------------------------------------------------------------------------- /xyskin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyskin.cpp -------------------------------------------------------------------------------- /xyskin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyskin.h -------------------------------------------------------------------------------- /xytempwindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xytempwindows.cpp -------------------------------------------------------------------------------- /xytempwindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xytempwindows.h -------------------------------------------------------------------------------- /xyvdragabletranslateview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyvdragabletranslateview.cpp -------------------------------------------------------------------------------- /xyvdragabletranslateview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyvdragabletranslateview.h -------------------------------------------------------------------------------- /xyvirtualkeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyvirtualkeyboard.cpp -------------------------------------------------------------------------------- /xyvirtualkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoyanLG/Soft-keyboard/HEAD/xyvirtualkeyboard.h --------------------------------------------------------------------------------