X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FEnchantChecker.cpp;h=8cc37812b4c7e558c57331bde91b63c98611b11b;hb=13739f37d5208e87e97c44ef2eeba35807ddb9c5;hp=2470ec576d1afd6db20c410ce6d012be1f09e9b7;hpb=707935ab23a59407f053db3c0d4385c2eb77b3b8;p=lyx.git diff --git a/src/EnchantChecker.cpp b/src/EnchantChecker.cpp index 2470ec576d..8cc37812b4 100644 --- a/src/EnchantChecker.cpp +++ b/src/EnchantChecker.cpp @@ -34,7 +34,7 @@ struct Speller { enchant::Dict * speller; }; -typedef std::map Spellers; +typedef map Spellers; } // anon namespace @@ -69,6 +69,11 @@ EnchantChecker::Private::~Private() enchant::Dict * EnchantChecker::Private::addSpeller(string const & lang) { enchant::Broker * instance = enchant::Broker::instance(); + + if (!instance->dict_exists(lang)) + // FIXME error handling? + return 0; + enchant::Dict * dict = instance->request_dict(lang); if (dict) { @@ -107,31 +112,41 @@ SpellChecker::Result EnchantChecker::check(WordLangTuple const & word) { enchant::Dict * m = d->speller(word.lang()->code()); - if (!m) - return OK; + if (!m || word.word().empty()) + return WORD_OK; - std::string utf8word(to_utf8(word.word())); + string utf8word = to_utf8(word.word()); if (m->check(utf8word)) - return OK; + return WORD_OK; return UNKNOWN_WORD; } +void EnchantChecker::advanceChangeNumber() +{ + nextChangeNumber(); +} + + void EnchantChecker::insert(WordLangTuple const & word) { Spellers::iterator it = d->spellers_.find(word.lang()->code()); - if (it != d->spellers_.end()) + if (it != d->spellers_.end()) { it->second.speller->add(to_utf8(word.word())); + advanceChangeNumber(); + } } void EnchantChecker::accept(WordLangTuple const & word) { Spellers::iterator it = d->spellers_.find(word.lang()->code()); - if (it != d->spellers_.end()) + if (it != d->spellers_.end()) { it->second.speller->add_to_session(to_utf8(word.word())); + advanceChangeNumber(); + } } @@ -154,6 +169,15 @@ void EnchantChecker::suggest(WordLangTuple const & wl, } +bool EnchantChecker::hasDictionary(Language const * lang) const +{ + if (!lang) + return false; + enchant::Broker * instance = enchant::Broker::instance(); + return (instance->dict_exists(lang->code())); +} + + docstring const EnchantChecker::error() { return docstring();