X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=65cd0de6553c4e846a1169cbfa074f6ab5017dfb;hb=acc5af9912533261c37795971af269f77317f14f;hp=12bb6a7820531c201e505e98dbbbf25f769058ae;hpb=8283e978f8d621041c432b9b88a476bfd567385c;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 12bb6a7820..65cd0de655 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -1,47 +1,55 @@ // -*- C++ -*- /** * \file Thesaurus.h - * Copyright 2001 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * 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. */ #ifndef THESAURUS_H #define THESAURUS_H -#include +#include "support/docstring.h" + #include +#include +#include -#include "LString.h" -#ifdef HAVE_LIBAIKSAURUS -#include "Aiksaurus.h" -#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(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_LIBAIKSAURUS - Aiksaurus * aik_; -#endif + struct Private; + Private * const d; }; extern Thesaurus thesaurus; + +} // namespace lyx + #endif