├── .gitignore ├── CCR Hunspell ├── CCR.Hunspell.pas ├── Demo │ ├── App.Main.dfm │ ├── App.Main.pas │ ├── App.SettingsFrame.dfm │ ├── App.SettingsFrame.pas │ ├── App.TestFrame.dfm │ ├── App.TestFrame.pas │ ├── Dictionaries │ │ ├── Download others.url │ │ ├── GPL.txt │ │ ├── README_de_DE_frami.txt │ │ ├── README_en_GB.txt │ │ ├── de_DE_frami.aff │ │ ├── de_DE_frami.dic │ │ ├── en_GB.aff │ │ └── en_GB.dic │ ├── HunspellTest.dpr │ ├── HunspellTest.dproj │ └── HunspellTest.res ├── MPL-1.1.html ├── Readme.txt └── hunspell.dll ├── Hunspell DLL ├── ProjectChanges_Screenshot.png ├── Readme.md ├── Win32 │ └── 2019.11.12 │ │ └── libhunspell.dll └── docs │ ├── api │ └── hunspell3.pdf │ └── file format │ └── hunspell5.pdf ├── Hunspell Dictionaries └── SCOWL and Friends │ ├── Readme.md │ └── hunspell-en_US-2019.10.06 │ ├── README_en_US.txt │ ├── en_US.aff │ └── en_US.dic ├── NHunspell Alternative ├── Readme.md └── nhunspell_delphi_v1.1 │ ├── Addict4 │ └── ad3MainDictionary.pas │ ├── Demo │ ├── NHunspellAddict.dpr │ ├── NHunspellAddict.dproj │ ├── NHunspellAddict.res │ ├── NHunspellAddict.skincfg │ ├── NHunspellTest.dpr │ ├── NHunspellTest.dproj │ ├── NHunspellTest.res │ ├── uHunspellAddictConfig.dfm │ ├── uHunspellAddictConfig.pas │ ├── uHunspellAddictMain.dfm │ ├── uHunspellAddictMain.pas │ ├── uHunspellTestMain.dfm │ └── uHunspellTestMain.pas │ ├── Dictionaries │ ├── Download more dictionaries.url │ ├── dict-de_DE-frami_2010-05-25.oxt │ └── dict-en.oxt │ ├── Help │ ├── NHunspell.chm │ ├── NHunspell.hmskin │ └── NHunspell.hmxz │ ├── NHunXml.pas │ ├── NHunspell.pas │ ├── PasZip.pas │ └── README.TXT └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/.gitignore -------------------------------------------------------------------------------- /CCR Hunspell/CCR.Hunspell.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/CCR.Hunspell.pas -------------------------------------------------------------------------------- /CCR Hunspell/Demo/App.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/App.Main.dfm -------------------------------------------------------------------------------- /CCR Hunspell/Demo/App.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/App.Main.pas -------------------------------------------------------------------------------- /CCR Hunspell/Demo/App.SettingsFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/App.SettingsFrame.dfm -------------------------------------------------------------------------------- /CCR Hunspell/Demo/App.SettingsFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/App.SettingsFrame.pas -------------------------------------------------------------------------------- /CCR Hunspell/Demo/App.TestFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/App.TestFrame.dfm -------------------------------------------------------------------------------- /CCR Hunspell/Demo/App.TestFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/App.TestFrame.pas -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/Download others.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/Download others.url -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/GPL.txt -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/README_de_DE_frami.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/README_de_DE_frami.txt -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/README_en_GB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/README_en_GB.txt -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/de_DE_frami.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/de_DE_frami.aff -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/de_DE_frami.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/de_DE_frami.dic -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/en_GB.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/en_GB.aff -------------------------------------------------------------------------------- /CCR Hunspell/Demo/Dictionaries/en_GB.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/Dictionaries/en_GB.dic -------------------------------------------------------------------------------- /CCR Hunspell/Demo/HunspellTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/HunspellTest.dpr -------------------------------------------------------------------------------- /CCR Hunspell/Demo/HunspellTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/HunspellTest.dproj -------------------------------------------------------------------------------- /CCR Hunspell/Demo/HunspellTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Demo/HunspellTest.res -------------------------------------------------------------------------------- /CCR Hunspell/MPL-1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/MPL-1.1.html -------------------------------------------------------------------------------- /CCR Hunspell/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/Readme.txt -------------------------------------------------------------------------------- /CCR Hunspell/hunspell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/CCR Hunspell/hunspell.dll -------------------------------------------------------------------------------- /Hunspell DLL/ProjectChanges_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell DLL/ProjectChanges_Screenshot.png -------------------------------------------------------------------------------- /Hunspell DLL/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell DLL/Readme.md -------------------------------------------------------------------------------- /Hunspell DLL/Win32/2019.11.12/libhunspell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell DLL/Win32/2019.11.12/libhunspell.dll -------------------------------------------------------------------------------- /Hunspell DLL/docs/api/hunspell3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell DLL/docs/api/hunspell3.pdf -------------------------------------------------------------------------------- /Hunspell DLL/docs/file format/hunspell5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell DLL/docs/file format/hunspell5.pdf -------------------------------------------------------------------------------- /Hunspell Dictionaries/SCOWL and Friends/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell Dictionaries/SCOWL and Friends/Readme.md -------------------------------------------------------------------------------- /Hunspell Dictionaries/SCOWL and Friends/hunspell-en_US-2019.10.06/README_en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell Dictionaries/SCOWL and Friends/hunspell-en_US-2019.10.06/README_en_US.txt -------------------------------------------------------------------------------- /Hunspell Dictionaries/SCOWL and Friends/hunspell-en_US-2019.10.06/en_US.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell Dictionaries/SCOWL and Friends/hunspell-en_US-2019.10.06/en_US.aff -------------------------------------------------------------------------------- /Hunspell Dictionaries/SCOWL and Friends/hunspell-en_US-2019.10.06/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/Hunspell Dictionaries/SCOWL and Friends/hunspell-en_US-2019.10.06/en_US.dic -------------------------------------------------------------------------------- /NHunspell Alternative/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/Readme.md -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Addict4/ad3MainDictionary.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Addict4/ad3MainDictionary.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.dpr -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.dproj -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.res -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellAddict.skincfg -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellTest.dpr -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellTest.dproj -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/NHunspellTest.res -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictConfig.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictConfig.dfm -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictConfig.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictConfig.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictMain.dfm -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellAddictMain.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellTestMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellTestMain.dfm -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellTestMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Demo/uHunspellTestMain.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Dictionaries/Download more dictionaries.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Dictionaries/Download more dictionaries.url -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Dictionaries/dict-de_DE-frami_2010-05-25.oxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Dictionaries/dict-de_DE-frami_2010-05-25.oxt -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Dictionaries/dict-en.oxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Dictionaries/dict-en.oxt -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Help/NHunspell.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Help/NHunspell.chm -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Help/NHunspell.hmskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Help/NHunspell.hmskin -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/Help/NHunspell.hmxz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/Help/NHunspell.hmxz -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/NHunXml.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/NHunXml.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/NHunspell.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/NHunspell.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/PasZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/PasZip.pas -------------------------------------------------------------------------------- /NHunspell Alternative/nhunspell_delphi_v1.1/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/NHunspell Alternative/nhunspell_delphi_v1.1/README.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darianmiller/Delphi-Hunspell/HEAD/README.md --------------------------------------------------------------------------------