]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
Cache icons of dynamic menu buttons
[lyx.git] / src / Thesaurus.h
index 65cd0de6553c4e846a1169cbfa074f6ab5017dfb..9c13b044cb9ecf30980b0bbdb9b3073d0a046eb9 100644 (file)
 #ifndef THESAURUS_H
 #define THESAURUS_H
 
-#include "support/docstring.h"
+#include "support/strfwd.h"
 
 #include <map>
-#include <string>
 #include <vector>
 
 namespace lyx {
 
+class WordLangTuple;
+
 /**
  * This class provides an interface to whatever thesauri we might support.
  */
 
 class Thesaurus
 {
+       /// noncopyable
+       Thesaurus(Thesaurus const &);
+       void operator=(Thesaurus const &);
 public:
        ///
        Thesaurus();
@@ -38,9 +42,13 @@ public:
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(docstring const & text, docstring const & lang);
-       /// check if a thesaurus for a given language \p lang is available
+       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:
        struct Private;