]> git.lyx.org Git - lyx.git/blobdiff - src/HunspellChecker.h
avoid float-conversion warning and simplify size computation
[lyx.git] / src / HunspellChecker.h
index 8defa22e41a6d5bec65851d147e615eaafd7d60b..686f014384028316afae89af37b0505aa9306ee4 100644 (file)
@@ -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;