Go to the documentation of this file.
26 #ifndef SPELLCHECKER_H
27 #define SPELLCHECKER_H
31 namespace qutim_sdk_0_3 {
40 Q_CLASSINFO(
"Service",
"SpellChecker")
50 virtual bool isCorrect(
const QString &word)
const = 0;
54 bool isMisspelled(
const QString &word)
const {
return !isCorrect(word); }
58 virtual QStringList suggest(
const QString &word)
const = 0;
62 virtual void store(
const QString &word)
const = 0;
66 virtual void storeReplacement(
const QString &bad,
const QString &good) = 0;
75 void dictionaryChanged();
78 virtual void virtual_hook(
int id,
void *data);
83 #endif // SPELLCHECKER_H
Generated by Doxygen