X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpellChecker.h;h=425925ce373c6a100e0f06cf37d9c4cb9076bda1;hb=52fee3556e63859f3ba52609e8f025a491767a81;hp=f94f5c5f3fae0ab7c3f4cf60fa200c945d69d490;hpb=0dee3eff18078be7b931a3a409197f3f4dcc43b4;p=lyx.git diff --git a/src/SpellChecker.h b/src/SpellChecker.h index f94f5c5f3f..425925ce37 100644 --- a/src/SpellChecker.h +++ b/src/SpellChecker.h @@ -42,7 +42,9 @@ public: /// number of other ignored "word" IGNORED_WORD, /// number of personal dictionary "word" - LEARNED_WORD + LEARNED_WORD, + /// missing dictionary for language + NO_DICTIONARY }; virtual ~SpellChecker() {} @@ -51,6 +53,7 @@ public: 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 @@ -59,6 +62,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; @@ -71,6 +77,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; }