mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
50 lines
867 B
C
50 lines
867 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file EnchantChecker.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Caolán McNamara
|
||
|
* \author Jürgen Spitzmüller
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#ifndef LYX_ENCHANT_H
|
||
|
#define LYX_ENCHANT_H
|
||
|
|
||
|
#include "SpellChecker.h"
|
||
|
|
||
|
namespace enchant {
|
||
|
class Dict;
|
||
|
}
|
||
|
|
||
|
namespace lyx {
|
||
|
|
||
|
class BufferParams;
|
||
|
|
||
|
|
||
|
class EnchantChecker : public SpellChecker {
|
||
|
public:
|
||
|
EnchantChecker();
|
||
|
~EnchantChecker();
|
||
|
|
||
|
/// SpellChecker inherited methods.
|
||
|
///@{
|
||
|
enum Result check(WordLangTuple const &);
|
||
|
void suggest(WordLangTuple const &, docstring_list &);
|
||
|
void insert(WordLangTuple const &);
|
||
|
void accept(WordLangTuple const &);
|
||
|
docstring const error();
|
||
|
///@}
|
||
|
|
||
|
private:
|
||
|
struct Private;
|
||
|
Private * d;
|
||
|
};
|
||
|
|
||
|
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif // LYX_ENCHANT_H
|