├── CMakeLists.txt ├── ChangeLog ├── ChangeLog.zh_CN ├── Messages.sh ├── README ├── animator.cpp ├── animator.h ├── appearance.h ├── appearance.ui ├── cmake ├── FindDBus.cmake ├── FindDBusCXX.cmake ├── FindGIO.cmake ├── FindGLIB2.cmake ├── FindGObject.cmake ├── FindIBus.cmake ├── FindPthread.cmake └── FindSCIM.cmake ├── envsettings.cpp ├── envsettings.h ├── fileitemaction ├── CMakeLists.txt ├── installskinfileitemaction.cpp ├── installskinfileitemaction.h └── installskinfileitemaction.json ├── filtermenu.cpp ├── filtermenu.h ├── ibus-kconfig ├── CMakeLists.txt ├── config.cpp ├── config.h ├── kconfig.xml.in └── main.cpp ├── ibus-panel ├── CMakeLists.txt ├── impanel.xml.in ├── main.c ├── panel.c ├── panel.h └── panel.py ├── icons ├── 128-apps-kimtoy.png ├── 16-apps-kimtoy.png ├── 22-apps-kimtoy.png ├── 32-apps-kimtoy.png ├── 48-apps-kimtoy.png ├── 64-apps-kimtoy.png └── CMakeLists.txt ├── impanel.cpp ├── impanel.h ├── impanelagent.cpp ├── impanelagent.h ├── impanelagent_p.cpp ├── impanelagent_p.h ├── inputmethod.h ├── inputmethod.ui ├── inputmethods.cpp ├── inputmethods.h ├── kimgio-apng ├── CMakeLists.txt ├── apng.cpp ├── apng.desktop ├── apng.h ├── apng.json ├── apng.xml ├── apnginternal.h ├── internalize.sed └── libpng-apng │ ├── LICENSE │ ├── README │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h.prebuilt │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── kimtoy.cpp ├── kimtoy.h ├── kimtoy.knsrc ├── kimtoysettings.kcfg ├── kimtoysettings.kcfgc ├── kssf.cpp ├── kssf.h ├── main.cpp ├── metadataextractor ├── CMakeLists.txt ├── fskinextractor.cpp ├── fskinextractor.h ├── ssfextractor.cpp └── ssfextractor.h ├── org.kde.impanel.inputmethod.xml ├── org.kde.impanel.xml ├── org.kde.kimtoy.appdata.xml ├── org.kde.kimtoy.desktop ├── performance.h ├── performance.ui ├── preeditbar.cpp ├── preeditbar.h ├── propertywidget.cpp ├── propertywidget.h ├── scim-kconfig ├── CMakeLists.txt ├── scim_kconfig_config.cpp └── scim_kconfig_config.h ├── scim-panel ├── CMakeLists.txt ├── config-scim.h.cmake ├── main.cpp └── scim_panel_impanel.cpp ├── skinpixmap.cpp ├── skinpixmap.h ├── statusbar.cpp ├── statusbar.h ├── statusbarlayout.cpp ├── statusbarlayout.h ├── theme.cpp ├── theme.h ├── theme.ui ├── themelistmodel.cpp ├── themelistmodel.h ├── themelistview.cpp ├── themelistview.h ├── themer.cpp ├── themer.h ├── themer_fcitx.cpp ├── themer_fcitx.h ├── themer_none.cpp ├── themer_none.h ├── themer_plasma.cpp ├── themer_plasma.h ├── themer_sogou.cpp ├── themer_sogou.h ├── themeragent.cpp ├── themeragent.h └── thumbnailer ├── CMakeLists.txt ├── fskin.xml ├── fskincreator.cpp ├── fskincreator.h ├── fskinthumbnail.desktop ├── ssf.xml ├── ssfcreator.cpp ├── ssfcreator.h └── ssfthumbnail.desktop /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.zh_CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ChangeLog.zh_CN -------------------------------------------------------------------------------- /Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/Messages.sh -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/README -------------------------------------------------------------------------------- /animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/animator.cpp -------------------------------------------------------------------------------- /animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/animator.h -------------------------------------------------------------------------------- /appearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/appearance.h -------------------------------------------------------------------------------- /appearance.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/appearance.ui -------------------------------------------------------------------------------- /cmake/FindDBus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindDBus.cmake -------------------------------------------------------------------------------- /cmake/FindDBusCXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindDBusCXX.cmake -------------------------------------------------------------------------------- /cmake/FindGIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindGIO.cmake -------------------------------------------------------------------------------- /cmake/FindGLIB2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindGLIB2.cmake -------------------------------------------------------------------------------- /cmake/FindGObject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindGObject.cmake -------------------------------------------------------------------------------- /cmake/FindIBus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindIBus.cmake -------------------------------------------------------------------------------- /cmake/FindPthread.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindPthread.cmake -------------------------------------------------------------------------------- /cmake/FindSCIM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/cmake/FindSCIM.cmake -------------------------------------------------------------------------------- /envsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/envsettings.cpp -------------------------------------------------------------------------------- /envsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/envsettings.h -------------------------------------------------------------------------------- /fileitemaction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/fileitemaction/CMakeLists.txt -------------------------------------------------------------------------------- /fileitemaction/installskinfileitemaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/fileitemaction/installskinfileitemaction.cpp -------------------------------------------------------------------------------- /fileitemaction/installskinfileitemaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/fileitemaction/installskinfileitemaction.h -------------------------------------------------------------------------------- /fileitemaction/installskinfileitemaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/fileitemaction/installskinfileitemaction.json -------------------------------------------------------------------------------- /filtermenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/filtermenu.cpp -------------------------------------------------------------------------------- /filtermenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/filtermenu.h -------------------------------------------------------------------------------- /ibus-kconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-kconfig/CMakeLists.txt -------------------------------------------------------------------------------- /ibus-kconfig/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-kconfig/config.cpp -------------------------------------------------------------------------------- /ibus-kconfig/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-kconfig/config.h -------------------------------------------------------------------------------- /ibus-kconfig/kconfig.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-kconfig/kconfig.xml.in -------------------------------------------------------------------------------- /ibus-kconfig/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-kconfig/main.cpp -------------------------------------------------------------------------------- /ibus-panel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-panel/CMakeLists.txt -------------------------------------------------------------------------------- /ibus-panel/impanel.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-panel/impanel.xml.in -------------------------------------------------------------------------------- /ibus-panel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-panel/main.c -------------------------------------------------------------------------------- /ibus-panel/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-panel/panel.c -------------------------------------------------------------------------------- /ibus-panel/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-panel/panel.h -------------------------------------------------------------------------------- /ibus-panel/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/ibus-panel/panel.py -------------------------------------------------------------------------------- /icons/128-apps-kimtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/128-apps-kimtoy.png -------------------------------------------------------------------------------- /icons/16-apps-kimtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/16-apps-kimtoy.png -------------------------------------------------------------------------------- /icons/22-apps-kimtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/22-apps-kimtoy.png -------------------------------------------------------------------------------- /icons/32-apps-kimtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/32-apps-kimtoy.png -------------------------------------------------------------------------------- /icons/48-apps-kimtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/48-apps-kimtoy.png -------------------------------------------------------------------------------- /icons/64-apps-kimtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/64-apps-kimtoy.png -------------------------------------------------------------------------------- /icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/icons/CMakeLists.txt -------------------------------------------------------------------------------- /impanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/impanel.cpp -------------------------------------------------------------------------------- /impanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/impanel.h -------------------------------------------------------------------------------- /impanelagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/impanelagent.cpp -------------------------------------------------------------------------------- /impanelagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/impanelagent.h -------------------------------------------------------------------------------- /impanelagent_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/impanelagent_p.cpp -------------------------------------------------------------------------------- /impanelagent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/impanelagent_p.h -------------------------------------------------------------------------------- /inputmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/inputmethod.h -------------------------------------------------------------------------------- /inputmethod.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/inputmethod.ui -------------------------------------------------------------------------------- /inputmethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/inputmethods.cpp -------------------------------------------------------------------------------- /inputmethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/inputmethods.h -------------------------------------------------------------------------------- /kimgio-apng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/CMakeLists.txt -------------------------------------------------------------------------------- /kimgio-apng/apng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/apng.cpp -------------------------------------------------------------------------------- /kimgio-apng/apng.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/apng.desktop -------------------------------------------------------------------------------- /kimgio-apng/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/apng.h -------------------------------------------------------------------------------- /kimgio-apng/apng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/apng.json -------------------------------------------------------------------------------- /kimgio-apng/apng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/apng.xml -------------------------------------------------------------------------------- /kimgio-apng/apnginternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/apnginternal.h -------------------------------------------------------------------------------- /kimgio-apng/internalize.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/internalize.sed -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/LICENSE -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/README -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/png.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/png.h -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngconf.h -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngdebug.h -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngerror.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngget.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pnginfo.h -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pnglibconf.h.prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pnglibconf.h.prebuilt -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngmem.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngpread.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngpriv.h -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngread.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngrio.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngrtran.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngrutil.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngset.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngstruct.h -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngtrans.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngwio.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngwrite.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngwtran.c -------------------------------------------------------------------------------- /kimgio-apng/libpng-apng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimgio-apng/libpng-apng/pngwutil.c -------------------------------------------------------------------------------- /kimtoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimtoy.cpp -------------------------------------------------------------------------------- /kimtoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimtoy.h -------------------------------------------------------------------------------- /kimtoy.knsrc: -------------------------------------------------------------------------------- 1 | [KNewStuff3] 2 | Categories=Fcitx Theme 3 | TargetDir=kimtoy/themes 4 | Uncompress=never 5 | -------------------------------------------------------------------------------- /kimtoysettings.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimtoysettings.kcfg -------------------------------------------------------------------------------- /kimtoysettings.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kimtoysettings.kcfgc -------------------------------------------------------------------------------- /kssf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kssf.cpp -------------------------------------------------------------------------------- /kssf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/kssf.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/main.cpp -------------------------------------------------------------------------------- /metadataextractor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/metadataextractor/CMakeLists.txt -------------------------------------------------------------------------------- /metadataextractor/fskinextractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/metadataextractor/fskinextractor.cpp -------------------------------------------------------------------------------- /metadataextractor/fskinextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/metadataextractor/fskinextractor.h -------------------------------------------------------------------------------- /metadataextractor/ssfextractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/metadataextractor/ssfextractor.cpp -------------------------------------------------------------------------------- /metadataextractor/ssfextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/metadataextractor/ssfextractor.h -------------------------------------------------------------------------------- /org.kde.impanel.inputmethod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/org.kde.impanel.inputmethod.xml -------------------------------------------------------------------------------- /org.kde.impanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/org.kde.impanel.xml -------------------------------------------------------------------------------- /org.kde.kimtoy.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/org.kde.kimtoy.appdata.xml -------------------------------------------------------------------------------- /org.kde.kimtoy.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/org.kde.kimtoy.desktop -------------------------------------------------------------------------------- /performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/performance.h -------------------------------------------------------------------------------- /performance.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/performance.ui -------------------------------------------------------------------------------- /preeditbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/preeditbar.cpp -------------------------------------------------------------------------------- /preeditbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/preeditbar.h -------------------------------------------------------------------------------- /propertywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/propertywidget.cpp -------------------------------------------------------------------------------- /propertywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/propertywidget.h -------------------------------------------------------------------------------- /scim-kconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-kconfig/CMakeLists.txt -------------------------------------------------------------------------------- /scim-kconfig/scim_kconfig_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-kconfig/scim_kconfig_config.cpp -------------------------------------------------------------------------------- /scim-kconfig/scim_kconfig_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-kconfig/scim_kconfig_config.h -------------------------------------------------------------------------------- /scim-panel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-panel/CMakeLists.txt -------------------------------------------------------------------------------- /scim-panel/config-scim.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-panel/config-scim.h.cmake -------------------------------------------------------------------------------- /scim-panel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-panel/main.cpp -------------------------------------------------------------------------------- /scim-panel/scim_panel_impanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/scim-panel/scim_panel_impanel.cpp -------------------------------------------------------------------------------- /skinpixmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/skinpixmap.cpp -------------------------------------------------------------------------------- /skinpixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/skinpixmap.h -------------------------------------------------------------------------------- /statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/statusbar.cpp -------------------------------------------------------------------------------- /statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/statusbar.h -------------------------------------------------------------------------------- /statusbarlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/statusbarlayout.cpp -------------------------------------------------------------------------------- /statusbarlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/statusbarlayout.h -------------------------------------------------------------------------------- /theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/theme.cpp -------------------------------------------------------------------------------- /theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/theme.h -------------------------------------------------------------------------------- /theme.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/theme.ui -------------------------------------------------------------------------------- /themelistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themelistmodel.cpp -------------------------------------------------------------------------------- /themelistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themelistmodel.h -------------------------------------------------------------------------------- /themelistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themelistview.cpp -------------------------------------------------------------------------------- /themelistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themelistview.h -------------------------------------------------------------------------------- /themer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer.cpp -------------------------------------------------------------------------------- /themer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer.h -------------------------------------------------------------------------------- /themer_fcitx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_fcitx.cpp -------------------------------------------------------------------------------- /themer_fcitx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_fcitx.h -------------------------------------------------------------------------------- /themer_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_none.cpp -------------------------------------------------------------------------------- /themer_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_none.h -------------------------------------------------------------------------------- /themer_plasma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_plasma.cpp -------------------------------------------------------------------------------- /themer_plasma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_plasma.h -------------------------------------------------------------------------------- /themer_sogou.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_sogou.cpp -------------------------------------------------------------------------------- /themer_sogou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themer_sogou.h -------------------------------------------------------------------------------- /themeragent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themeragent.cpp -------------------------------------------------------------------------------- /themeragent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/themeragent.h -------------------------------------------------------------------------------- /thumbnailer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/CMakeLists.txt -------------------------------------------------------------------------------- /thumbnailer/fskin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/fskin.xml -------------------------------------------------------------------------------- /thumbnailer/fskincreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/fskincreator.cpp -------------------------------------------------------------------------------- /thumbnailer/fskincreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/fskincreator.h -------------------------------------------------------------------------------- /thumbnailer/fskinthumbnail.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/fskinthumbnail.desktop -------------------------------------------------------------------------------- /thumbnailer/ssf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/ssf.xml -------------------------------------------------------------------------------- /thumbnailer/ssfcreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/ssfcreator.cpp -------------------------------------------------------------------------------- /thumbnailer/ssfcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/ssfcreator.h -------------------------------------------------------------------------------- /thumbnailer/ssfthumbnail.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/kimtoy/HEAD/thumbnailer/ssfthumbnail.desktop --------------------------------------------------------------------------------