X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=52987cdd1377fdea6bcf41ad4701e927590e1b98;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=5ade7daf8d70337045483fd0bac895e6f198aa3d;hpb=8254b16fd11fea6224e4db951839747e642115d3;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 5ade7daf8d..52987cdd13 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -1,70 +1,62 @@ // -*- 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 "support/docstring.h" +#include "WordLangTuple.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 +{ + /// noncopyable + Thesaurus(Thesaurus const &); + void operator=(Thesaurus const &); public: /// Thesaurus(); /// ~Thesaurus(); - /** - * enum of possible part of speech types - */ - enum POS { - NONE = 0x0, - OTHER = 0x01, - NOUN = 0x02, - VERB = 0x04, - ADJECTIVE = 0x08, - ADVERB = 0x10 - }; - - /** - * an individual entry from the thesaurus - */ - struct ThesaurusEntry { - /// - ThesaurusEntry(const string & ent, char pos); - /// the actual entry - string entry; - /// entry's part of speech - int pos; - }; + typedef std::map > Meanings; /** * look up some text in the thesaurus */ - std::vector 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