]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
whitespace only
[lyx.git] / src / Thesaurus.h
index f051d102ee0737f973dbdb88275960146e630c02..9808a455ff49ab683e31734f39644553d9178ad0 100644 (file)
@@ -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.
  */
@@ -16,6 +17,7 @@
 
 #include <vector>
 #include <map>
+#include <string>
 
 #ifdef HAVE_LIBMYTHES
 #include MYTHES_H_LOCATION
@@ -31,7 +33,8 @@ namespace lyx {
  * This class provides an interface to whatever thesauri we might support.
  */
 
-class Thesaurus {
+class Thesaurus
+{
 public:
        ///
        Thesaurus();
@@ -43,11 +46,18 @@ public:
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(docstring 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
-       MyThes * thes_;
+       /// add a thesaurus to the list
+       bool addThesaurus(docstring const & lang);
+
+       typedef std::map<docstring, MyThes *> Thesauri;
+       /// the thesauri
+       Thesauri thes_;
 #else
 #ifdef HAVE_LIBAIKSAURUS
        Aiksaurus * thes_;