X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.C;h=af37e4df6629fc8dcbeba25b9a61317b01adf7c5;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=8e30bf9da7d6b267b4426f820a6d641e0058bc8d;hpb=80dda8f6b28db89f517be8dcae19a27bcb0cc7a5;p=lyx.git diff --git a/src/Thesaurus.C b/src/Thesaurus.C index 8e30bf9da7..af37e4df66 100644 --- a/src/Thesaurus.C +++ b/src/Thesaurus.C @@ -1,33 +1,33 @@ /** * \file Thesaurus.C - * 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 + * + * Full author contact details are available in file CREDITS. */ +#include + #include "Thesaurus.h" -Thesaurus thesaurus; +#include +#include + + +namespace lyx { + +using std::string; #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; -} + +using std::sort; Thesaurus::Thesaurus() -{ - aik_ = new AikSaurus(); -} + : aik_(new Aiksaurus) +{} Thesaurus::~Thesaurus() @@ -36,45 +36,65 @@ Thesaurus::~Thesaurus() } -std::vector Thesaurus::lookup(string const & text) +Thesaurus::Meanings Thesaurus::lookup(string const & text) { - std::vector entries; + Meanings meanings; if (!aik_->find(text.c_str())) - return entries; + return meanings; + + // weird api, but ... + + int prev_meaning = -1; + int cur_meaning; + string meaning; - char pos; - string ret; + // correct, returns "" at the end + string ret = aik_->next(cur_meaning); - 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); } - return entries; + for (Meanings::iterator it = meanings.begin(); + it != meanings.end(); ++it) { + sort(it->second.begin(), it->second.end()); + } + + return meanings; } #else -Thesaurus::ThesaurusEntry::ThesaurusEntry(string const &, char) -{ -} - - Thesaurus::Thesaurus() { } - - + + Thesaurus::~Thesaurus() { } - -std::vector Thesaurus::lookup(string const & text) + +Thesaurus::Meanings Thesaurus::lookup(string const &) { - return std::vector(); + return Meanings(); } #endif // HAVE_LIBAIKSAURUS + +// Global instance +Thesaurus thesaurus; + + +} // namespace lyx