├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── NEWS ├── QtSpell.pc.in ├── README.md ├── doc ├── Doxyfile.in └── qtspell.dox ├── examples ├── example.cpp └── example.hpp ├── locale ├── QtSpell_af.ts ├── QtSpell_ak.ts ├── QtSpell_be.ts ├── QtSpell_ca.ts ├── QtSpell_cs.ts ├── QtSpell_da.ts ├── QtSpell_de.ts ├── QtSpell_el.ts ├── QtSpell_eo.ts ├── QtSpell_es.ts ├── QtSpell_es_ES.ts ├── QtSpell_eu.ts ├── QtSpell_ff.ts ├── QtSpell_fi.ts ├── QtSpell_fo.ts ├── QtSpell_fr.ts ├── QtSpell_ga.ts ├── QtSpell_gl.ts ├── QtSpell_he.ts ├── QtSpell_hr.ts ├── QtSpell_hu.ts ├── QtSpell_hy.ts ├── QtSpell_id.ts ├── QtSpell_is.ts ├── QtSpell_it.ts ├── QtSpell_ja.ts ├── QtSpell_ky.ts ├── QtSpell_lg.ts ├── QtSpell_lt.ts ├── QtSpell_lv.ts ├── QtSpell_mn.ts ├── QtSpell_ms.ts ├── QtSpell_nb.ts ├── QtSpell_nl.ts ├── QtSpell_nso.ts ├── QtSpell_pl.ts ├── QtSpell_pt.ts ├── QtSpell_pt_BR.ts ├── QtSpell_rm.ts ├── QtSpell_ro.ts ├── QtSpell_ru.ts ├── QtSpell_rw.ts ├── QtSpell_sk.ts ├── QtSpell_sl.ts ├── QtSpell_sq.ts ├── QtSpell_sr.ts ├── QtSpell_st.ts ├── QtSpell_sv.ts ├── QtSpell_th.ts ├── QtSpell_tr.ts ├── QtSpell_uk.ts ├── QtSpell_vi.ts ├── QtSpell_zh_CN.ts ├── QtSpell_zh_HK.ts ├── QtSpell_zh_TW.ts ├── QtSpell_zu.ts └── translations.pro ├── packaging ├── debian │ ├── changelog.in │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libqtspell-qt5-0.install │ ├── libqtspell-qt5-dev.docs │ ├── libqtspell-qt5-dev.install │ ├── rules │ ├── source │ │ └── format │ └── watch └── qtspell.spec.in └── src ├── Checker.cpp ├── Checker_p.hpp ├── Codetable.cpp ├── Codetable.hpp ├── QtSpell.hpp ├── TextEditChecker.cpp ├── TextEditChecker_p.hpp ├── UndoRedoStack.cpp └── UndoRedoStack.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | CMakeLists.txt.user 3 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/NEWS -------------------------------------------------------------------------------- /QtSpell.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/QtSpell.pc.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/README.md -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/qtspell.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/doc/qtspell.dox -------------------------------------------------------------------------------- /examples/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/examples/example.cpp -------------------------------------------------------------------------------- /examples/example.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/examples/example.hpp -------------------------------------------------------------------------------- /locale/QtSpell_af.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_af.ts -------------------------------------------------------------------------------- /locale/QtSpell_ak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ak.ts -------------------------------------------------------------------------------- /locale/QtSpell_be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_be.ts -------------------------------------------------------------------------------- /locale/QtSpell_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ca.ts -------------------------------------------------------------------------------- /locale/QtSpell_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_cs.ts -------------------------------------------------------------------------------- /locale/QtSpell_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_da.ts -------------------------------------------------------------------------------- /locale/QtSpell_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_de.ts -------------------------------------------------------------------------------- /locale/QtSpell_el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_el.ts -------------------------------------------------------------------------------- /locale/QtSpell_eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_eo.ts -------------------------------------------------------------------------------- /locale/QtSpell_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_es.ts -------------------------------------------------------------------------------- /locale/QtSpell_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_es_ES.ts -------------------------------------------------------------------------------- /locale/QtSpell_eu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_eu.ts -------------------------------------------------------------------------------- /locale/QtSpell_ff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ff.ts -------------------------------------------------------------------------------- /locale/QtSpell_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_fi.ts -------------------------------------------------------------------------------- /locale/QtSpell_fo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_fo.ts -------------------------------------------------------------------------------- /locale/QtSpell_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_fr.ts -------------------------------------------------------------------------------- /locale/QtSpell_ga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ga.ts -------------------------------------------------------------------------------- /locale/QtSpell_gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_gl.ts -------------------------------------------------------------------------------- /locale/QtSpell_he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_he.ts -------------------------------------------------------------------------------- /locale/QtSpell_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_hr.ts -------------------------------------------------------------------------------- /locale/QtSpell_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_hu.ts -------------------------------------------------------------------------------- /locale/QtSpell_hy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_hy.ts -------------------------------------------------------------------------------- /locale/QtSpell_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_id.ts -------------------------------------------------------------------------------- /locale/QtSpell_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_is.ts -------------------------------------------------------------------------------- /locale/QtSpell_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_it.ts -------------------------------------------------------------------------------- /locale/QtSpell_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ja.ts -------------------------------------------------------------------------------- /locale/QtSpell_ky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ky.ts -------------------------------------------------------------------------------- /locale/QtSpell_lg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_lg.ts -------------------------------------------------------------------------------- /locale/QtSpell_lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_lt.ts -------------------------------------------------------------------------------- /locale/QtSpell_lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_lv.ts -------------------------------------------------------------------------------- /locale/QtSpell_mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_mn.ts -------------------------------------------------------------------------------- /locale/QtSpell_ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ms.ts -------------------------------------------------------------------------------- /locale/QtSpell_nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_nb.ts -------------------------------------------------------------------------------- /locale/QtSpell_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_nl.ts -------------------------------------------------------------------------------- /locale/QtSpell_nso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_nso.ts -------------------------------------------------------------------------------- /locale/QtSpell_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_pl.ts -------------------------------------------------------------------------------- /locale/QtSpell_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_pt.ts -------------------------------------------------------------------------------- /locale/QtSpell_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_pt_BR.ts -------------------------------------------------------------------------------- /locale/QtSpell_rm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_rm.ts -------------------------------------------------------------------------------- /locale/QtSpell_ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ro.ts -------------------------------------------------------------------------------- /locale/QtSpell_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_ru.ts -------------------------------------------------------------------------------- /locale/QtSpell_rw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_rw.ts -------------------------------------------------------------------------------- /locale/QtSpell_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_sk.ts -------------------------------------------------------------------------------- /locale/QtSpell_sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_sl.ts -------------------------------------------------------------------------------- /locale/QtSpell_sq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_sq.ts -------------------------------------------------------------------------------- /locale/QtSpell_sr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_sr.ts -------------------------------------------------------------------------------- /locale/QtSpell_st.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_st.ts -------------------------------------------------------------------------------- /locale/QtSpell_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_sv.ts -------------------------------------------------------------------------------- /locale/QtSpell_th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_th.ts -------------------------------------------------------------------------------- /locale/QtSpell_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_tr.ts -------------------------------------------------------------------------------- /locale/QtSpell_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_uk.ts -------------------------------------------------------------------------------- /locale/QtSpell_vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_vi.ts -------------------------------------------------------------------------------- /locale/QtSpell_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_zh_CN.ts -------------------------------------------------------------------------------- /locale/QtSpell_zh_HK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_zh_HK.ts -------------------------------------------------------------------------------- /locale/QtSpell_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_zh_TW.ts -------------------------------------------------------------------------------- /locale/QtSpell_zu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/QtSpell_zu.ts -------------------------------------------------------------------------------- /locale/translations.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/locale/translations.pro -------------------------------------------------------------------------------- /packaging/debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/changelog.in -------------------------------------------------------------------------------- /packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | ChangeLog 3 | NEWS 4 | README.md 5 | -------------------------------------------------------------------------------- /packaging/debian/libqtspell-qt5-0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/libqtspell-qt5-0.install -------------------------------------------------------------------------------- /packaging/debian/libqtspell-qt5-dev.docs: -------------------------------------------------------------------------------- 1 | build-qt5/doc/html -------------------------------------------------------------------------------- /packaging/debian/libqtspell-qt5-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/libqtspell-qt5-dev.install -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /packaging/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/debian/watch -------------------------------------------------------------------------------- /packaging/qtspell.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/packaging/qtspell.spec.in -------------------------------------------------------------------------------- /src/Checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/Checker.cpp -------------------------------------------------------------------------------- /src/Checker_p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/Checker_p.hpp -------------------------------------------------------------------------------- /src/Codetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/Codetable.cpp -------------------------------------------------------------------------------- /src/Codetable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/Codetable.hpp -------------------------------------------------------------------------------- /src/QtSpell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/QtSpell.hpp -------------------------------------------------------------------------------- /src/TextEditChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/TextEditChecker.cpp -------------------------------------------------------------------------------- /src/TextEditChecker_p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/TextEditChecker_p.hpp -------------------------------------------------------------------------------- /src/UndoRedoStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/UndoRedoStack.cpp -------------------------------------------------------------------------------- /src/UndoRedoStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manisandro/qtspell/HEAD/src/UndoRedoStack.hpp --------------------------------------------------------------------------------