]> git.lyx.org Git - lyx.git/blobdiff - src/SpellChecker.h
Let paragraph::requestSpellcheck() consider contained insets
[lyx.git] / src / SpellChecker.h
index f87ef122b9b00f59303552a9015aa60a13c34811..58e5de6bd2acc66fefb723abcfd510da27d1cfb9 100644 (file)
@@ -14,6 +14,7 @@
 #define SPELL_BASE_H
 
 #include "support/strfwd.h"
+#include <vector>
 
 
 namespace lyx {
@@ -43,10 +44,14 @@ public:
                IGNORED_WORD,
                /// number of personal dictionary "word"
                LEARNED_WORD,
+               /// number of document dictionary "word"
+               DOCUMENT_LEARNED_WORD,
                /// missing dictionary for language
                NO_DICTIONARY
        };
 
+       SpellChecker() : change_number_(0) {}
+
        virtual ~SpellChecker() {}
 
        /// does the spell check failed
@@ -54,14 +59,19 @@ 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<WordLangTuple> const &) = 0;
 
        /// 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;
 
@@ -76,7 +86,7 @@ public:
 
        /// 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; }