]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.C
fix typo that put too many include paths for most people
[lyx.git] / src / Thesaurus.C
index a166de5ec54fef6e14e888187aed428e936d9300..ebfd3bda35a0b761879c557659357c4aeee8ff4e 100644 (file)
@@ -6,33 +6,19 @@
  * \author John Levon
  */
 
-#include "Thesaurus.h"
+#include <config.h>
 
-Thesaurus thesaurus; 
+#include "Thesaurus.h"
 
 #ifdef HAVE_LIBAIKSAURUS
-Thesaurus::ThesaurusEntry::ThesaurusEntry(string const & ent, char part)
-       : entry(ent), pos(Thesaurus::NONE)
-{
-       if (part & AikSaurus::Unknown)
-               pos |= OTHER;
-       if (part & AikSaurus::Other)
-               pos |= OTHER;
-       if (part & AikSaurus::Noun)
-               pos |= NOUN;
-       if (part & AikSaurus::Verb)
-               pos |= VERB;
-       if (part & AikSaurus::Adjective)
-               pos |= ADJECTIVE;
-       if (part & AikSaurus::Adverb)
-               pos |= ADVERB;
-}
 
+#include <algorithm>
+
+using std::sort;
 
 Thesaurus::Thesaurus()
 {
-       aik_ = new AikSaurus;
+       aik_ = new Aiksaurus;
 }
 
 
@@ -42,45 +28,62 @@ Thesaurus::~Thesaurus()
 }
 
 
-std::vector<Thesaurus::ThesaurusEntry> Thesaurus::lookup(string const & text)
+Thesaurus::Meanings Thesaurus::lookup(string const & text)
 {
-       std::vector<ThesaurusEntry> entries;
+       Meanings meanings;
 
        if (!aik_->find(text.c_str()))
-               return entries;
+               return meanings;
+
+       // weird api, but ...
 
-       char pos;
+       int prev_meaning = -1;
+       int cur_meaning;
+       string meaning;
+
+       // correct, returns "" at the end
+       string ret = aik_->next(cur_meaning);
 
-       string ret = aik_->next(pos);
        while (!ret.empty()) {
-               entries.push_back(ThesaurusEntry(ret, pos));
-               ret = aik_->next(pos);
+               if (cur_meaning != prev_meaning) {
+                       meaning = ret;
+                       ret = aik_->next(cur_meaning);
+                       prev_meaning = cur_meaning;
+               } else {
+                       if (ret != text) {
+                               meanings[meaning].push_back(ret);
+                       }
+               }
+
+               ret = aik_->next(cur_meaning);
+       }
+
+       for (Meanings::iterator it = meanings.begin();
+               it != meanings.end(); ++it) {
+                       sort(it->second.begin(), it->second.end());
        }
 
-       return entries;
+       return meanings;
 }
 
 #else
 
-Thesaurus::ThesaurusEntry::ThesaurusEntry(string const &, char)
-{
-}
-
 Thesaurus::Thesaurus()
 {
 }
+
+
 Thesaurus::~Thesaurus()
 {
 }
 
-std::vector<Thesaurus::ThesaurusEntry>
-Thesaurus::lookup(string const & /*text*/)
+
+Thesaurus::Meanings Thesaurus::lookup(string const &)
 {
-       return std::vector<ThesaurusEntry>();
+       return Meanings();
 }
 
 #endif // HAVE_LIBAIKSAURUS
+
+// Global instance
+Thesaurus thesaurus;