mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
6b5c9696b6
Commit the multi-language spellcheck patch. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4882 a592a061-630c-0410-9148-cb99ea01b6c8
82 lines
1.6 KiB
C++
82 lines
1.6 KiB
C++
/**
|
|
* \file pspell.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Kevin Atkinson
|
|
* \author John Levon <levon@movementarian.org>
|
|
*/
|
|
|
|
#ifndef LYX_PSPELL_H
|
|
#define LYX_PSPELL_H
|
|
|
|
#include <map>
|
|
|
|
#include "SpellBase.h"
|
|
|
|
class PspellManager;
|
|
class PspellStringEmulation;
|
|
class PspellCanHaveError;
|
|
class PspellConfig;
|
|
|
|
class BufferParams;
|
|
|
|
|
|
class PSpell : public SpellBase {
|
|
public:
|
|
/**
|
|
* Initialise the spellchecker with the given buffer params and language.
|
|
*/
|
|
PSpell(BufferParams const & params, string const & lang);
|
|
|
|
virtual ~PSpell();
|
|
|
|
/**
|
|
* return true if the spellchecker instance still exists
|
|
* Always true for pspell, since there is no separate process
|
|
*/
|
|
virtual bool alive() { return true; }
|
|
|
|
/// clean up on messy exit
|
|
virtual void cleanUp();
|
|
|
|
/// check the given word and return the result
|
|
virtual enum Result check(WordLangTuple const &);
|
|
|
|
/// finish this spellchecker instance
|
|
virtual void close();
|
|
|
|
/// insert the given word into the personal dictionary
|
|
virtual void insert(WordLangTuple const &);
|
|
|
|
/// accept the given word temporarily
|
|
virtual void accept(WordLangTuple const &);
|
|
|
|
/// return the next near miss after a MISSED result
|
|
virtual string const nextMiss();
|
|
|
|
/// give an error message on messy exit
|
|
virtual string const error();
|
|
|
|
private:
|
|
/// add a manager of the given language
|
|
void addManager(string const & lang);
|
|
|
|
struct Manager {
|
|
PspellManager * manager;
|
|
PspellConfig * config;
|
|
};
|
|
|
|
typedef std::map<string, struct Manager> Managers;
|
|
|
|
/// the managers
|
|
Managers managers_;
|
|
|
|
/// FIXME
|
|
PspellStringEmulation * els;
|
|
/// FIXME
|
|
PspellCanHaveError * spell_error_object;
|
|
};
|
|
|
|
#endif // PSPELL_H
|