]> git.lyx.org Git - lyx.git/blobdiff - src/HunspellChecker.cpp
* src/LaTeXFeatures.cpp: simplify greektext definition. Patch by G. Milde (bug #6458)
[lyx.git] / src / HunspellChecker.cpp
index a611a1ff473b850f8e1087b8f498b10ec56fce1d..e85338ddd4a169d1afbd4172d977d04baded6a31 100644 (file)
@@ -51,6 +51,7 @@ struct HunspellChecker::Private
 
        ~Private();
 
+       bool haveDictionary(string const & lang, string & hpath);
        Hunspell * addSpeller(string const & lang);
        Hunspell * speller(string const & lang);
        /// ignored words
@@ -94,9 +95,8 @@ bool haveLanguageFiles(string const & hpath)
 }
 
 
-Hunspell * HunspellChecker::Private::addSpeller(string const & lang)
+bool HunspellChecker::Private::haveDictionary(string const & lang, string & hunspell_path)
 {
-       string hunspell_path = lyxrc.hunspelldir_path;
        LYXERR(Debug::FILES, "hunspell path: " << external_path(hunspell_path));
        if (hunspell_path.empty()) {
                // FIXME We'd like to issue a better error message here, but there seems
@@ -111,7 +111,7 @@ Hunspell * HunspellChecker::Private::addSpeller(string const & lang)
                        //frontend::Alert::error(_("Hunspell Path Not Found"), 
                        //              _("You must set the Hunspell dictionary path in Tools>Preferences>Paths."));
                }
-               return 0;
+               return false;
        }
 
        hunspell_path = external_path(addName(hunspell_path, lang));
@@ -122,9 +122,20 @@ Hunspell * HunspellChecker::Private::addSpeller(string const & lang)
                        // FIXME: We should indicate somehow that this language is not
                        // supported, probably by popping a warning. But we'll need to
                        // remember which warnings we've issued.
-                       return 0;
+                       return false;
                }
        }
+       return true;
+}
+
+
+Hunspell * HunspellChecker::Private::addSpeller(string const & lang)
+{
+       string hunspell_path = lyxrc.hunspelldir_path;
+
+       if (!haveDictionary(lang, hunspell_path))
+               return 0;
+
        FileName const affix(hunspell_path + ".aff");
        FileName const dict(hunspell_path + ".dic");
        Hunspell * h = new Hunspell(affix.absFilename().c_str(), dict.absFilename().c_str());
@@ -147,7 +158,7 @@ bool HunspellChecker::Private::isIgnored(WordLangTuple const & wl) const
 {
        IgnoreList::const_iterator it = ignored_.begin();
        for (; it != ignored_.end(); ++it) {
-               if ((*it).lang_code() != wl.lang_code())
+               if ((*it).lang()->code() != wl.lang()->code())
                        continue;
                if ((*it).word() == wl.word())
                        return true;
@@ -172,11 +183,14 @@ SpellChecker::Result HunspellChecker::check(WordLangTuple const & wl)
        if (d->isIgnored(wl))
                return OK;
 
-       string const word_to_check = to_utf8(wl.word());
-       Hunspell * h = d->speller(wl.lang_code());
+       Hunspell * h = d->speller(wl.lang()->code());
        if (!h)
                return OK;
        int info;
+
+       string const encoding = h->get_dic_encoding();
+       string const word_to_check = to_iconv_encoding(wl.word(), encoding);
+       
        if (h->spell(word_to_check.c_str(), &info))
                return OK;
 
@@ -196,7 +210,7 @@ SpellChecker::Result HunspellChecker::check(WordLangTuple const & wl)
 void HunspellChecker::insert(WordLangTuple const & wl)
 {
        string const word_to_check = to_utf8(wl.word());
-       Hunspell * h = d->speller(wl.lang_code());
+       Hunspell * h = d->speller(wl.lang()->code());
        if (!h)
                return;
        h->add(word_to_check.c_str());
@@ -213,20 +227,30 @@ void HunspellChecker::suggest(WordLangTuple const & wl,
        docstring_list & suggestions)
 {
        suggestions.clear();
-       string const word_to_check = to_utf8(wl.word());
-       Hunspell * h = d->speller(wl.lang_code());
+       Hunspell * h = d->speller(wl.lang()->code());
        if (!h)
                return;
+       string const encoding = h->get_dic_encoding();
+       string const word_to_check = to_iconv_encoding(wl.word(), encoding);
        char ** suggestion_list;
        int const suggestion_number = h->suggest(&suggestion_list, word_to_check.c_str());
        if (suggestion_number <= 0)
                return;
        for (int i = 0; i != suggestion_number; ++i)
-               suggestions.push_back(from_utf8(suggestion_list[i]));
+               suggestions.push_back(from_iconv_encoding(suggestion_list[i], encoding));
        h->free_list(&suggestion_list, suggestion_number);
 }
 
 
+bool HunspellChecker::hasDictionary(Language const * lang) const
+{
+       if (!lang)
+               return false;
+       string hunspell_path = lyxrc.hunspelldir_path;
+       return (d->haveDictionary(lang->code(), hunspell_path));
+}
+
+
 docstring const HunspellChecker::error()
 {
        return docstring();