]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Fix #10778 (issue with CJK and language nesting)
[lyx.git] / src / Thesaurus.h
index f051d102ee0737f973dbdb88275960146e630c02..52987cdd1377fdea6bcf41ad4701e927590e1b98 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.
  */
 #define THESAURUS_H
 
 #include "support/docstring.h"
+#include "WordLangTuple.h"
 
-#include <vector>
 #include <map>
-
-#ifdef HAVE_LIBMYTHES
-#include MYTHES_H_LOCATION
-#else
-#ifdef HAVE_LIBAIKSAURUS
-#include AIKSAURUS_H_LOCATION
-#endif // HAVE_LIBAIKSAURUS
-#endif // !HAVE_LIBMYTHES
+#include <vector>
 
 namespace lyx {
 
@@ -31,7 +25,11 @@ 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();
@@ -43,16 +41,17 @@ public:
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(docstring 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_LIBMYTHES
-       MyThes * thes_;
-#else
-#ifdef HAVE_LIBAIKSAURUS
-       Aiksaurus * thes_;
-#endif // HAVE_LIBAIKSAURUS
-#endif // !HAVE_LIBMYTHES
+       struct Private;
+       Private * const d;
 };
 
 extern Thesaurus thesaurus;