move LyXerr QString specialisation to support/qstring_helpers
[lyx.git] / src / PSpell.h
blob6e9d383987397eff045c87516161c5a73bdcb494
1 // -*- C++ -*-
2 /**
3 * \file PSpell.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Kevin Atkinson
8 * \author John Levon
10 * Full author contact details are available in file CREDITS.
13 #ifndef LYX_PSPELL_H
14 #define LYX_PSPELL_H
16 #include "SpellBase.h"
18 #include <map>
21 class PspellManager;
22 class PspellStringEmulation;
23 class PspellCanHaveError;
24 class PspellConfig;
26 namespace lyx {
28 class BufferParams;
31 class PSpell : public SpellBase {
32 public:
33 /**
34 * Initialise the spellchecker with the given buffer params and language.
36 PSpell(BufferParams const & params, std::string const & lang);
38 virtual ~PSpell();
40 /**
41 * return true if the spellchecker instance still exists
42 * Always true for pspell, since there is no separate process
44 virtual bool alive() { return true; }
46 /// check the given word and return the result
47 virtual enum Result check(WordLangTuple const &);
49 /// insert the given word into the personal dictionary
50 virtual void insert(WordLangTuple const &);
52 /// accept the given word temporarily
53 virtual void accept(WordLangTuple const &);
55 /// return the next near miss after a SUGGESTED_WORDS result
56 virtual docstring const nextMiss();
58 /// give an error message on messy exit
59 virtual docstring const error();
61 private:
62 /// add a manager of the given language
63 void addManager(std::string const & lang);
65 struct Manager {
66 PspellManager * manager;
67 PspellConfig * config;
70 typedef std::map<std::string, struct Manager> Managers;
72 /// the managers
73 Managers managers_;
75 /// FIXME
76 PspellStringEmulation * els;
77 /// FIXME
78 PspellCanHaveError * spell_error_object;
82 } // namespace lyx
84 #endif // LYX_PSPELL_H