X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=52987cdd1377fdea6bcf41ad4701e927590e1b98;hb=45e8ea4acc557dd54e062750f47ff569b5b98c43;hp=65cd0de6553c4e846a1169cbfa074f6ab5017dfb;hpb=e2025f59dc7504bf7b413c7696eeb9ce255837e6;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 65cd0de655..52987cdd13 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -14,9 +14,9 @@ #define THESAURUS_H #include "support/docstring.h" +#include "WordLangTuple.h" #include -#include #include namespace lyx { @@ -27,6 +27,9 @@ namespace lyx { class Thesaurus { + /// noncopyable + Thesaurus(Thesaurus const &); + void operator=(Thesaurus const &); public: /// Thesaurus(); @@ -38,9 +41,13 @@ public: /** * look up some text in the thesaurus */ - Meanings lookup(docstring const & text, docstring const & lang); - /// check if a thesaurus for a given language \p lang is available + Meanings lookup(WordLangTuple const & wl); + /** check if a thesaurus for a given language \p lang is available + * (installed and loaded) + */ bool thesaurusAvailable(docstring const & lang) const; + /// check if a thesaurus for a given language \p lang is installed + bool thesaurusInstalled(docstring const & lang) const; private: struct Private;