X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=9c0bdc61de99e0855ab3a073e44ca0766dded1e9;hb=e6f46dd08c0e1ea040f7d085344d4fd568674cec;hp=abe9f16339cfcad30f4d91bac87e4fda5ed83254;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index abe9f16339..9c0bdc61de 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,13 +13,11 @@ #ifndef THESAURUS_H #define THESAURUS_H -#include +#include "support/docstring.h" + #include #include - -#ifdef HAVE_LIBAIKSAURUS -#include AIKSAURUS_H_LOCATION -#endif +#include namespace lyx { @@ -26,24 +25,30 @@ 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(std::string const & text); + Meanings lookup(docstring const & text, docstring const & lang); + /** 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;