X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FHunspellChecker.h;h=686f014384028316afae89af37b0505aa9306ee4;hb=0b67e103e97a0c12fd18382152d762fc8d95dff1;hp=8defa22e41a6d5bec65851d147e615eaafd7d60b;hpb=0d626b0008a3fca0e6ef96a42f2054e78eefeede;p=lyx.git diff --git a/src/HunspellChecker.h b/src/HunspellChecker.h index 8defa22e41..686f014384 100644 --- a/src/HunspellChecker.h +++ b/src/HunspellChecker.h @@ -23,11 +23,19 @@ public: HunspellChecker(); ~HunspellChecker(); - SpellChecker::Result check(WordLangTuple const &); + /// \name SpellChecker inherited methods. + ///@{ + enum Result check(WordLangTuple const &); + void suggest(WordLangTuple const &, docstring_list &); + void stem(WordLangTuple const &, docstring_list &); void insert(WordLangTuple const &); + void remove(WordLangTuple const &); void accept(WordLangTuple const &); - docstring const nextMiss(); + bool hasDictionary(Language const * lang) const; + int numDictionaries() const; docstring const error(); + void advanceChangeNumber(); + ///@} private: struct Private;