]> git.lyx.org Git - lyx.git/blobdiff - src/WordLangTuple.h
Update Win installer for new dictionary links. Untested.
[lyx.git] / src / WordLangTuple.h
index 90fd01918f3ad72d65aa69c8dc1a25c5b24d67ad..6459c46f8faa18eaba2d3540863d9fa5235fbd16 100644 (file)
@@ -1,43 +1,61 @@
+// -*- C++ -*-
 /**
  * \file WordLangTuple.h
- * Copyright 2002 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 <levon@movementarian.org>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
-#include "LString.h" 
+
+#include "Language.h"
+
+#include "support/docstring.h"
+
+#include <vector>
+
+
+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(string const & w, string const & c)
-               : word_(w), code_(c)
+       WordLangTuple() : lang_(0) {}
+
+       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_;
 };
+
+
+typedef std::vector<WordLangTuple> WordLangTable;
+
+
+} // namespace lyx
+
 #endif // WORD_LANG_TUPLE_H