]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Fix bug #12772
[lyx.git] / src / Thesaurus.h
index 5f2793274122dab76ba568aa777ddaf40286285f..9c13b044cb9ecf30980b0bbdb9b3073d0a046eb9 100644 (file)
@@ -1,47 +1,63 @@
 // -*- 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 <vector>
+#include "support/strfwd.h"
+
 #include <map>
+#include <vector>
 
-#include "LString.h"
-#ifdef HAVE_LIBAIKSAURUS
-#include AIKSAURUS_H_LOCATION
-#endif
+namespace lyx {
+
+class WordLangTuple;
 
 /**
  * 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();
 
-       typedef std::map<string, std::vector<string> > Meanings;
+       typedef std::map<docstring, std::vector<docstring> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       Meanings 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