]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Update notes.
[lyx.git] / src / Thesaurus.h
index 5ade7daf8d70337045483fd0bac895e6f198aa3d..65cd0de6553c4e846a1169cbfa074f6ab5017dfb 100644 (file)
@@ -1,70 +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 "support/docstring.h"
+
+#include <map>
+#include <string>
 #include <vector>
 
-#include <config.h>
-#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();
 
-       /**
-        * 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<docstring, std::vector<docstring> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       std::vector<ThesaurusEntry> 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