X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpellChecker.h;h=58e5de6bd2acc66fefb723abcfd510da27d1cfb9;hb=bfe98181169d9e697e515da974d9b6a15a06c940;hp=dd13a76da7eb90b6240139b29dba489fe6661645;hpb=51aebc9327345f6ea065035f489dbfec1568279f;p=lyx.git diff --git a/src/SpellChecker.h b/src/SpellChecker.h index dd13a76da7..58e5de6bd2 100644 --- a/src/SpellChecker.h +++ b/src/SpellChecker.h @@ -14,6 +14,7 @@ #define SPELL_BASE_H #include "support/strfwd.h" +#include namespace lyx { @@ -43,6 +44,8 @@ public: IGNORED_WORD, /// number of personal dictionary "word" LEARNED_WORD, + /// number of document dictionary "word" + DOCUMENT_LEARNED_WORD, /// missing dictionary for language NO_DICTIONARY }; @@ -56,10 +59,12 @@ public: return res != WORD_OK && res != IGNORED_WORD && res != NO_DICTIONARY - && res != LEARNED_WORD; } + && res != LEARNED_WORD + && res != DOCUMENT_LEARNED_WORD; } /// check the given word of the given lang code and return the result - virtual enum Result check(WordLangTuple const &) = 0; + virtual enum Result check(WordLangTuple const &, + std::vector const &) = 0; /// Gives suggestions. virtual void suggest(WordLangTuple const &, docstring_list & suggestions) = 0;