mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file SpellBase.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef SPELL_BASE_H
|
|
#define SPELL_BASE_H
|
|
|
|
#include <string>
|
|
|
|
class BufferParams;
|
|
class WordLangTuple;
|
|
|
|
/**
|
|
* Base class of all spell checker implementations.
|
|
*/
|
|
class SpellBase {
|
|
public:
|
|
|
|
/// the result from checking a single word
|
|
enum Result {
|
|
OK = 1, //< word is correct
|
|
ROOT, //< root of given word was found
|
|
COMPOUNDWORD, //< word found through compound formation
|
|
UNKNOWN, //< word not found
|
|
MISSED, //< not found, with suggestions
|
|
IGNORE //< number of other ignored "word"
|
|
};
|
|
|
|
virtual ~SpellBase() {}
|
|
|
|
/// return true if the spellchecker instance still exists
|
|
virtual bool alive() = 0;
|
|
|
|
/// check the given word of the given lang code and return the result
|
|
virtual enum Result check(WordLangTuple const &) = 0;
|
|
|
|
/// insert the given word into the personal dictionary
|
|
virtual void insert(WordLangTuple const &) = 0;
|
|
|
|
/// accept the given word temporarily
|
|
virtual void accept(WordLangTuple const &) = 0;
|
|
|
|
/// return the next near miss after a MISSED result
|
|
virtual std::string const nextMiss() = 0;
|
|
|
|
/// give an error message on messy exit
|
|
virtual std::string const error() = 0;
|
|
|
|
};
|
|
|
|
#endif // SPELL_BASE_H
|