lyx_mirror/src/AppleSpellChecker.h
Jean-Marc Lasgouttes e4f2484cb5 Implement LFUN_SPELLING_REMOVE (patch from switt)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35055 a592a061-630c-0410-9148-cb99ea01b6c8
2010-08-05 20:10:40 +00:00

45 lines
881 B
C++

// -*- C++ -*-
/**
* \file AppleSpellChecker.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Stephan Witt
*
* Full author contact details are available in file CREDITS.
*/
#ifndef LYX_APPLESPELL_H
#define LYX_APPLESPELL_H
#include "SpellChecker.h"
namespace lyx {
class AppleSpellChecker : public SpellChecker
{
public:
AppleSpellChecker();
~AppleSpellChecker();
/// \name SpellChecker inherited methods
//@{
enum Result check(WordLangTuple const &);
void suggest(WordLangTuple const &, docstring_list &);
void insert(WordLangTuple const &);
void remove(WordLangTuple const &);
void accept(WordLangTuple const &);
bool hasDictionary(Language const * lang) const;
docstring const error();
//@}
private:
struct Private;
Private * d;
};
} // namespace lyx
#endif // LYX_APPLESPELL_H