X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=9808a455ff49ab683e31734f39644553d9178ad0;hb=0de1e7730fe798b95b9a9bd92d8bd2853ab5c997;hp=c8a9afb521fd885ddcbf1a5aec7e2a33e1b504ac;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index c8a9afb521..9808a455ff 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,61 @@ #ifndef THESAURUS_H #define THESAURUS_H +#include "support/docstring.h" + #include #include +#include -#include "LString.h" +#ifdef HAVE_LIBMYTHES +#include MYTHES_H_LOCATION +#else #ifdef HAVE_LIBAIKSAURUS #include AIKSAURUS_H_LOCATION -#endif +#endif // HAVE_LIBAIKSAURUS +#endif // !HAVE_LIBMYTHES + +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(docstring const & text, docstring const & lang); + /// check if a thesaurus for a given language \p lang is available + bool thesaurusAvailable(docstring const & lang) const; private: +#ifdef HAVE_LIBMYTHES + /// add a thesaurus to the list + bool addThesaurus(docstring const & lang); + + typedef std::map Thesauri; + /// the thesauri + Thesauri thes_; +#else #ifdef HAVE_LIBAIKSAURUS - Aiksaurus * aik_; -#endif + Aiksaurus * thes_; +#endif // HAVE_LIBAIKSAURUS +#endif // !HAVE_LIBMYTHES }; extern Thesaurus thesaurus; + +} // namespace lyx + #endif