]> git.lyx.org Git - lyx.git/blobdiff - src/SpellBase.h
The Gtk patch.
[lyx.git] / src / SpellBase.h
index 0120a0bb075ff9fb129b8f7093f832a521099403..4fdb68a80aad5f06a5b5570f2a20e2c8470c36db 100644 (file)
@@ -1,10 +1,13 @@
 // -*- C++ -*-
 /**
  * \file SpellBase.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * 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
@@ -13,6 +16,7 @@
 #include "LString.h" // can't forward declare...
 
 class BufferParams;
+class WordLangTuple;
 
 /**
  * Base class of all spell checker implementations.
@@ -35,25 +39,19 @@ public:
        /// return true if the spellchecker instance still exists
        virtual bool alive() = 0;
 
-       /// clean up on messy exit
-       virtual void cleanUp() = 0;
-
-       /// check the given word and return the result
-       virtual enum Result check(string const &) = 0;
-
-       /// finish this spellchecker instance
-       virtual void close() = 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(string const &) = 0;
+       virtual void insert(WordLangTuple const &) = 0;
 
        /// accept the given word temporarily
-       virtual void accept(string const &) = 0;
+       virtual void accept(WordLangTuple const &) = 0;
 
        /// return the next near miss after a MISSED result
        virtual string const nextMiss() = 0;
-       /// give an error message on messy exit 
+
+       /// give an error message on messy exit
        virtual string const error() = 0;
 
 };