X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpellChecker.h;h=dd13a76da7eb90b6240139b29dba489fe6661645;hb=eea4ef9b6e8c103b8d77fb456214a116c68f58a7;hp=55651e0231413f890ec7a31696ce9ee638b26b3d;hpb=0c89ebd62ad34d4c462c221f95d8caa4ad592557;p=lyx.git diff --git a/src/SpellChecker.h b/src/SpellChecker.h index 55651e0231..dd13a76da7 100644 --- a/src/SpellChecker.h +++ b/src/SpellChecker.h @@ -14,7 +14,6 @@ #define SPELL_BASE_H #include "support/strfwd.h" -#include "support/lyxtime.h" namespace lyx { @@ -43,15 +42,20 @@ public: /// number of other ignored "word" IGNORED_WORD, /// number of personal dictionary "word" - LEARNED_WORD + LEARNED_WORD, + /// missing dictionary for language + NO_DICTIONARY }; + SpellChecker() : change_number_(0) {} + virtual ~SpellChecker() {} /// does the spell check failed static bool misspelled(Result res) { return res != WORD_OK && res != IGNORED_WORD + && res != NO_DICTIONARY && res != LEARNED_WORD; } /// check the given word of the given lang code and return the result @@ -60,6 +64,9 @@ public: /// Gives suggestions. virtual void suggest(WordLangTuple const &, docstring_list & suggestions) = 0; + /// Lemmatizing: return stem of word (used by Thesaurus). + virtual void stem(WordLangTuple const &, docstring_list & suggestions) = 0; + /// insert the given word into the personal dictionary virtual void insert(WordLangTuple const &) = 0; @@ -72,6 +79,9 @@ public: /// check if dictionary exists virtual bool hasDictionary(Language const *) const = 0; + /// how many valid dictionaries were found + virtual int numDictionaries() const = 0; + /// if speller can spell check whole paragraph return true virtual bool canCheckParagraph() const { return false; }