]> git.lyx.org Git - lyx.git/blobdiff - src/WordLangTuple.h
Fix text direction issue for InsetInfo in RTL context
[lyx.git] / src / WordLangTuple.h
index 22ac67aec2deb4fec75069010c6142f4c600cedd..baf93385788f46486f57d2b4e617ee94bd6df407 100644 (file)
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
 
-#include "LString.h"
+#include "Language.h"
+
+#include "support/docstring.h"
+
+
+namespace lyx {
+
 
 /**
- * A word and its given language code ("en_US").
- * This is used for spellchecking.
+ * A word and its given language.
+ * This is used for spellchecking
+ * and thesaurus.
  */
 class WordLangTuple {
 public:
-       WordLangTuple() {}
+       WordLangTuple() : lang_(0) {}
 
-       WordLangTuple(string const & w, string const & c)
-               : word_(w), code_(c)
+       WordLangTuple(docstring const & w, Language const * l)
+               : word_(w), lang_(l)
        {}
 
        /// return the word
-       string const & word() const {
+       docstring const & word() const {
                return word_;
        }
 
        /// return its language code
-       string const & lang_code() const {
-               return code_;
+       Language const * lang() const {
+               return lang_;
        }
 
 private:
        /// the word
-       string word_;
-       /// language code of word
-       string code_;
+       docstring word_;
+       /// language of word
+       Language const * lang_;
 };
 
+
+} // namespace lyx
+
 #endif // WORD_LANG_TUPLE_H