X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=e27f2c239adac5e2a3943f7b11bc3cd0e2f94638;hb=9b530e59c2b74828f3a68f3bb7ee3dee0365cdc0;hp=f92f2e2510d9c1a2c54661490681caf1ab8ac75f;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index f92f2e2510..e27f2c239a 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -5,6 +5,7 @@ * Licence details can be found in the file COPYING. * * \author John Levon + * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ @@ -12,38 +13,47 @@ #ifndef THESAURUS_H #define THESAURUS_H -#include +#include "support/docstring.h" +#include "WordLangTuple.h" + #include +#include -#include "support/std_string.h" -#ifdef HAVE_LIBAIKSAURUS -#include AIKSAURUS_H_LOCATION -#endif +namespace lyx { /** * This class provides an interface to whatever thesauri we might support. */ -class Thesaurus { +class Thesaurus +{ public: /// Thesaurus(); /// ~Thesaurus(); - typedef std::map > Meanings; + typedef std::map > Meanings; /** * look up some text in the thesaurus */ - Meanings lookup(string const & text); + 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: -#ifdef HAVE_LIBAIKSAURUS - Aiksaurus * aik_; -#endif + struct Private; + Private * const d; }; extern Thesaurus thesaurus; + +} // namespace lyx + #endif