├── .clang-format ├── .mailmap ├── .translation-update ├── CHANGELOG ├── CMakeLists.txt ├── COPYING ├── Qt6TranslationLoader.cpp.in ├── README.md ├── fields.png ├── icon ├── icon-small.xpm ├── icon.xpm ├── letters.png ├── letters.xcf ├── letters.xpm ├── pause.png ├── qps.png ├── rec.png ├── superman.png ├── vcross.png ├── vista.png ├── vpointer.png ├── vpointer.xpm ├── warn.xpm ├── x1.xpm └── x2.xpm ├── org.lxqt.Qps.appdata.xml ├── qps.1 ├── qps.desktop.in ├── qps.png ├── qps.qrc └── src ├── CMakeLists.txt ├── checkboxdelegate.cpp ├── checkboxdelegate.h ├── config.h ├── details.cpp ├── details.h ├── dialogs.cpp ├── dialogs.h ├── fieldsel.cpp ├── fieldsel.h ├── global.h ├── htable.cpp ├── htable.h ├── infobar.cpp ├── infobar.h ├── lookup.cpp ├── lookup.h ├── misc.cpp ├── misc.h ├── prefs.cpp ├── prefs.h ├── proc.cpp ├── proc.h ├── pstable.cpp ├── pstable.h ├── qps.cpp ├── qps.h ├── qpsapp.cpp ├── qpsapp.h ├── qttableview.cpp ├── qttableview.h ├── stable.h ├── svec.h ├── tablefield.h ├── translations ├── qps.desktop.yaml ├── qps.ts ├── qps_ar.desktop.yaml ├── qps_ar.ts ├── qps_arn.ts ├── qps_ast.ts ├── qps_bg.desktop.yaml ├── qps_bg.ts ├── qps_ca.desktop.yaml ├── qps_ca.ts ├── qps_cs.desktop.yaml ├── qps_cs.ts ├── qps_cy.ts ├── qps_da.desktop.yaml ├── qps_da.ts ├── qps_de.desktop.yaml ├── qps_de.ts ├── qps_el.desktop.yaml ├── qps_el.ts ├── qps_en_GB.desktop.yaml ├── qps_en_GB.ts ├── qps_es.desktop.yaml ├── qps_es.ts ├── qps_et.desktop.yaml ├── qps_et.ts ├── qps_fi.desktop.yaml ├── qps_fi.ts ├── qps_fr.desktop.yaml ├── qps_fr.ts ├── qps_gl.ts ├── qps_he.desktop.yaml ├── qps_he.ts ├── qps_hi.ts ├── qps_hr.desktop.yaml ├── qps_hr.ts ├── qps_hu.desktop.yaml ├── qps_hu.ts ├── qps_id.ts ├── qps_is.ts ├── qps_it.desktop.yaml ├── qps_it.ts ├── qps_ja.desktop.yaml ├── qps_ja.ts ├── qps_ka.desktop.yaml ├── qps_ka.ts ├── qps_kab.ts ├── qps_ko.desktop.yaml ├── qps_ko.ts ├── qps_lg.desktop.yaml ├── qps_lg.ts ├── qps_lt.desktop.yaml ├── qps_lt.ts ├── qps_nb_NO.desktop.yaml ├── qps_nb_NO.ts ├── qps_nl.desktop.yaml ├── qps_nl.ts ├── qps_oc.desktop.yaml ├── qps_oc.ts ├── qps_pa.desktop.yaml ├── qps_pl.desktop.yaml ├── qps_pl.ts ├── qps_pt.desktop.yaml ├── qps_pt.ts ├── qps_pt_BR.desktop.yaml ├── qps_pt_BR.ts ├── qps_ru.desktop.yaml ├── qps_ru.ts ├── qps_si.desktop.yaml ├── qps_si.ts ├── qps_sk.desktop.yaml ├── qps_sk_SK.ts ├── qps_tr.desktop.yaml ├── qps_tr.ts ├── qps_uk.desktop.yaml ├── qps_uk.ts ├── qps_vi.desktop.yaml ├── qps_zh_CN.desktop.yaml ├── qps_zh_CN.ts ├── qps_zh_TW.desktop.yaml └── qps_zh_TW.ts ├── trayicon.cpp ├── trayicon.h ├── ttystr.cpp ├── ttystr.h ├── uidstr.cpp ├── uidstr.h ├── watchcond.cpp ├── watchcond.h ├── wchan.cpp └── wchan.h /.clang-format: -------------------------------------------------------------------------------- 1 | BreakBeforeBraces: Allman 2 | IndentWidth: 4 3 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/.mailmap -------------------------------------------------------------------------------- /.translation-update: -------------------------------------------------------------------------------- 1 | translations='./src' 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/COPYING -------------------------------------------------------------------------------- /Qt6TranslationLoader.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/Qt6TranslationLoader.cpp.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/README.md -------------------------------------------------------------------------------- /fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/fields.png -------------------------------------------------------------------------------- /icon/icon-small.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/icon-small.xpm -------------------------------------------------------------------------------- /icon/icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/icon.xpm -------------------------------------------------------------------------------- /icon/letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/letters.png -------------------------------------------------------------------------------- /icon/letters.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/letters.xcf -------------------------------------------------------------------------------- /icon/letters.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/letters.xpm -------------------------------------------------------------------------------- /icon/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/pause.png -------------------------------------------------------------------------------- /icon/qps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/qps.png -------------------------------------------------------------------------------- /icon/rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/rec.png -------------------------------------------------------------------------------- /icon/superman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/superman.png -------------------------------------------------------------------------------- /icon/vcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/vcross.png -------------------------------------------------------------------------------- /icon/vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/vista.png -------------------------------------------------------------------------------- /icon/vpointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/vpointer.png -------------------------------------------------------------------------------- /icon/vpointer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/vpointer.xpm -------------------------------------------------------------------------------- /icon/warn.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/warn.xpm -------------------------------------------------------------------------------- /icon/x1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/x1.xpm -------------------------------------------------------------------------------- /icon/x2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/icon/x2.xpm -------------------------------------------------------------------------------- /org.lxqt.Qps.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/org.lxqt.Qps.appdata.xml -------------------------------------------------------------------------------- /qps.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/qps.1 -------------------------------------------------------------------------------- /qps.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/qps.desktop.in -------------------------------------------------------------------------------- /qps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/qps.png -------------------------------------------------------------------------------- /qps.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/qps.qrc -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/checkboxdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/checkboxdelegate.cpp -------------------------------------------------------------------------------- /src/checkboxdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/checkboxdelegate.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/config.h -------------------------------------------------------------------------------- /src/details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/details.cpp -------------------------------------------------------------------------------- /src/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/details.h -------------------------------------------------------------------------------- /src/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/dialogs.cpp -------------------------------------------------------------------------------- /src/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/dialogs.h -------------------------------------------------------------------------------- /src/fieldsel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/fieldsel.cpp -------------------------------------------------------------------------------- /src/fieldsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/fieldsel.h -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/global.h -------------------------------------------------------------------------------- /src/htable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/htable.cpp -------------------------------------------------------------------------------- /src/htable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/htable.h -------------------------------------------------------------------------------- /src/infobar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/infobar.cpp -------------------------------------------------------------------------------- /src/infobar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/infobar.h -------------------------------------------------------------------------------- /src/lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/lookup.cpp -------------------------------------------------------------------------------- /src/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/lookup.h -------------------------------------------------------------------------------- /src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/misc.cpp -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/prefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/prefs.cpp -------------------------------------------------------------------------------- /src/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/prefs.h -------------------------------------------------------------------------------- /src/proc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/proc.cpp -------------------------------------------------------------------------------- /src/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/proc.h -------------------------------------------------------------------------------- /src/pstable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/pstable.cpp -------------------------------------------------------------------------------- /src/pstable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/pstable.h -------------------------------------------------------------------------------- /src/qps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/qps.cpp -------------------------------------------------------------------------------- /src/qps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/qps.h -------------------------------------------------------------------------------- /src/qpsapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/qpsapp.cpp -------------------------------------------------------------------------------- /src/qpsapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/qpsapp.h -------------------------------------------------------------------------------- /src/qttableview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/qttableview.cpp -------------------------------------------------------------------------------- /src/qttableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/qttableview.h -------------------------------------------------------------------------------- /src/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/stable.h -------------------------------------------------------------------------------- /src/svec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/svec.h -------------------------------------------------------------------------------- /src/tablefield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/tablefield.h -------------------------------------------------------------------------------- /src/translations/qps.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps.ts -------------------------------------------------------------------------------- /src/translations/qps_ar.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ar.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ar.ts -------------------------------------------------------------------------------- /src/translations/qps_arn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_arn.ts -------------------------------------------------------------------------------- /src/translations/qps_ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ast.ts -------------------------------------------------------------------------------- /src/translations/qps_bg.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_bg.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_bg.ts -------------------------------------------------------------------------------- /src/translations/qps_ca.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ca.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ca.ts -------------------------------------------------------------------------------- /src/translations/qps_cs.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_cs.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_cs.ts -------------------------------------------------------------------------------- /src/translations/qps_cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_cy.ts -------------------------------------------------------------------------------- /src/translations/qps_da.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_da.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_da.ts -------------------------------------------------------------------------------- /src/translations/qps_de.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_de.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_de.ts -------------------------------------------------------------------------------- /src/translations/qps_el.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_el.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_el.ts -------------------------------------------------------------------------------- /src/translations/qps_en_GB.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_en_GB.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_en_GB.ts -------------------------------------------------------------------------------- /src/translations/qps_es.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_es.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_es.ts -------------------------------------------------------------------------------- /src/translations/qps_et.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_et.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_et.ts -------------------------------------------------------------------------------- /src/translations/qps_fi.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_fi.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_fi.ts -------------------------------------------------------------------------------- /src/translations/qps_fr.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_fr.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_fr.ts -------------------------------------------------------------------------------- /src/translations/qps_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_gl.ts -------------------------------------------------------------------------------- /src/translations/qps_he.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_he.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_he.ts -------------------------------------------------------------------------------- /src/translations/qps_hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_hi.ts -------------------------------------------------------------------------------- /src/translations/qps_hr.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_hr.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_hr.ts -------------------------------------------------------------------------------- /src/translations/qps_hu.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_hu.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_hu.ts -------------------------------------------------------------------------------- /src/translations/qps_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_id.ts -------------------------------------------------------------------------------- /src/translations/qps_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_is.ts -------------------------------------------------------------------------------- /src/translations/qps_it.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_it.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_it.ts -------------------------------------------------------------------------------- /src/translations/qps_ja.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ja.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ja.ts -------------------------------------------------------------------------------- /src/translations/qps_ka.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ka.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ka.ts -------------------------------------------------------------------------------- /src/translations/qps_kab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_kab.ts -------------------------------------------------------------------------------- /src/translations/qps_ko.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ko.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ko.ts -------------------------------------------------------------------------------- /src/translations/qps_lg.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_lg.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_lg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_lg.ts -------------------------------------------------------------------------------- /src/translations/qps_lt.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_lt.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_lt.ts -------------------------------------------------------------------------------- /src/translations/qps_nb_NO.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_nb_NO.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_nb_NO.ts -------------------------------------------------------------------------------- /src/translations/qps_nl.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_nl.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_nl.ts -------------------------------------------------------------------------------- /src/translations/qps_oc.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_oc.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_oc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_oc.ts -------------------------------------------------------------------------------- /src/translations/qps_pa.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pa.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_pl.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pl.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pl.ts -------------------------------------------------------------------------------- /src/translations/qps_pt.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pt.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pt.ts -------------------------------------------------------------------------------- /src/translations/qps_pt_BR.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pt_BR.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_pt_BR.ts -------------------------------------------------------------------------------- /src/translations/qps_ru.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ru.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_ru.ts -------------------------------------------------------------------------------- /src/translations/qps_si.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_si.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_si.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_si.ts -------------------------------------------------------------------------------- /src/translations/qps_sk.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_sk.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_sk_SK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_sk_SK.ts -------------------------------------------------------------------------------- /src/translations/qps_tr.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_tr.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_tr.ts -------------------------------------------------------------------------------- /src/translations/qps_uk.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_uk.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_uk.ts -------------------------------------------------------------------------------- /src/translations/qps_vi.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_vi.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_zh_CN.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_zh_CN.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_zh_CN.ts -------------------------------------------------------------------------------- /src/translations/qps_zh_TW.desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_zh_TW.desktop.yaml -------------------------------------------------------------------------------- /src/translations/qps_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/translations/qps_zh_TW.ts -------------------------------------------------------------------------------- /src/trayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/trayicon.cpp -------------------------------------------------------------------------------- /src/trayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/trayicon.h -------------------------------------------------------------------------------- /src/ttystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/ttystr.cpp -------------------------------------------------------------------------------- /src/ttystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/ttystr.h -------------------------------------------------------------------------------- /src/uidstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/uidstr.cpp -------------------------------------------------------------------------------- /src/uidstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/uidstr.h -------------------------------------------------------------------------------- /src/watchcond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/watchcond.cpp -------------------------------------------------------------------------------- /src/watchcond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/watchcond.h -------------------------------------------------------------------------------- /src/wchan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/wchan.cpp -------------------------------------------------------------------------------- /src/wchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxqt/qps/HEAD/src/wchan.h --------------------------------------------------------------------------------