X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fpspell.C;h=f80aabd3ecfca943cc2f4673beb7afceb606021a;hb=cd4033aef3a3f1efdb5a676b8bab3d367f53a830;hp=db0e3924eb7d3e9b7851d64286b5f4689fc5e346;hpb=92d522b7f1be6046adcac062c558bbf0bf021612;p=lyx.git diff --git a/src/pspell.C b/src/pspell.C index db0e3924eb..f80aabd3ec 100644 --- a/src/pspell.C +++ b/src/pspell.C @@ -1,17 +1,16 @@ /** * \file pspell.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 Kevin Atkinson - * \author John Levon + * \author John Levon + * + * Full author contact details are available in file CREDITS. */ #include -#ifdef USE_PSPELL - -#include "support/LAssert.h" #include "debug.h" #define USE_ORIGINAL_MANAGER_FUNCS 1 @@ -23,9 +22,14 @@ extern "C" { #include "pspell.h" #include "WordLangTuple.h" -using namespace lyx::support; +#include + + +namespace lyx { using std::endl; +using std::string; + PSpell::PSpell(BufferParams const &, string const & lang) : els(0), spell_error_object(0) @@ -62,6 +66,7 @@ void PSpell::addManager(string const & lang) { PspellConfig * config = new_pspell_config(); pspell_config_replace(config, "language-tag", lang.c_str()); + pspell_config_replace(config, "encoding", "utf-8"); PspellCanHaveError * err = new_pspell_manager(config); if (spell_error_object) delete_pspell_can_have_error(spell_error_object); @@ -80,7 +85,7 @@ void PSpell::addManager(string const & lang) enum PSpell::Result PSpell::check(WordLangTuple const & word) { - Result res = UNKNOWN; + Result res = UNKNOWN_WORD; Managers::iterator it = managers_.find(word.lang_code()); if (it == managers_.end()) { @@ -93,20 +98,20 @@ enum PSpell::Result PSpell::check(WordLangTuple const & word) PspellManager * m = it->second.manager; - int word_ok = pspell_manager_check(m, word.word().c_str()); - Assert(word_ok != -1); + int word_ok = pspell_manager_check(m, to_utf8(word.word()).c_str()); + BOOST_ASSERT(word_ok != -1); if (word_ok) { res = OK; } else { PspellWordList const * sugs = - pspell_manager_suggest(m, word.word().c_str()); - Assert(sugs != 0); + pspell_manager_suggest(m, to_utf8(word.word()).c_str()); + BOOST_ASSERT(sugs != 0); els = pspell_word_list_elements(sugs); if (pspell_word_list_empty(sugs)) - res = UNKNOWN; + res = UNKNOWN_WORD; else - res = MISSED; + res = SUGGESTED_WORDS; } return res; } @@ -116,7 +121,7 @@ void PSpell::insert(WordLangTuple const & word) { Managers::iterator it = managers_.find(word.lang_code()); if (it != managers_.end()) - pspell_manager_add_to_personal(it->second.manager, word.word().c_str()); + pspell_manager_add_to_personal(it->second.manager, to_utf8(word.word()).c_str()); } @@ -124,23 +129,23 @@ void PSpell::accept(WordLangTuple const & word) { Managers::iterator it = managers_.find(word.lang_code()); if (it != managers_.end()) - pspell_manager_add_to_session(it->second.manager, word.word().c_str()); + pspell_manager_add_to_session(it->second.manager, to_utf8(word.word()).c_str()); } -string const PSpell::nextMiss() +docstring const PSpell::nextMiss() { char const * str = 0; if (els) str = pspell_string_emulation_next(els); if (str) - return str; - return ""; + return from_utf8(str); + return docstring(); } -string const PSpell::error() +docstring const PSpell::error() { char const * err = 0; @@ -149,8 +154,9 @@ string const PSpell::error() } if (err) - return err; - return ""; + return from_utf8(err); + return docstring(); } -#endif // USE_PSPELL + +} // namespace lyx