]> git.lyx.org Git - lyx.git/blobdiff - src/EnchantChecker.cpp
HTML for math fonts.
[lyx.git] / src / EnchantChecker.cpp
index 23cbee923e55f48ed7ffd81d7aa019ab8d43ae5a..e67f525c3ee643a574371e431b4519b6334aca97 100644 (file)
@@ -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) {
@@ -105,7 +110,7 @@ EnchantChecker::~EnchantChecker()
 
 SpellChecker::Result EnchantChecker::check(WordLangTuple const & word)
 {
-       enchant::Dict * m = d->speller(word.lang_code());
+       enchant::Dict * m = d->speller(word.lang()->code());
 
        if (!m)
                return OK;
@@ -121,7 +126,7 @@ SpellChecker::Result EnchantChecker::check(WordLangTuple const & word)
 
 void EnchantChecker::insert(WordLangTuple const & word)
 {
-       Spellers::iterator it = d->spellers_.find(word.lang_code());
+       Spellers::iterator it = d->spellers_.find(word.lang()->code());
        if (it != d->spellers_.end())
                it->second.speller->add(to_utf8(word.word()));
 }
@@ -129,7 +134,7 @@ void EnchantChecker::insert(WordLangTuple const & word)
 
 void EnchantChecker::accept(WordLangTuple const & word)
 {
-       Spellers::iterator it = d->spellers_.find(word.lang_code());
+       Spellers::iterator it = d->spellers_.find(word.lang()->code());
        if (it != d->spellers_.end())
                it->second.speller->add_to_session(to_utf8(word.word()));
 }
@@ -139,7 +144,7 @@ void EnchantChecker::suggest(WordLangTuple const & wl,
        docstring_list & suggestions)
 {
        suggestions.clear();
-       enchant::Dict * m = d->speller(wl.lang_code());
+       enchant::Dict * m = d->speller(wl.lang()->code());
 
        if (!m)
                return;
@@ -154,6 +159,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();