This commit was manufactured by cvs2svn to create tag
[lyx.git] / src / spellchecker.h
blob98621dcbf460a8b49df59faffad2188149be74a6
1 // -*- C++ -*-
2 #ifndef _SPELLCHECKER_H
3 #define _SPELLCHECKER_H
5 /* These functions are defined in lyx_cb.C */
7 class LString;
10 /** The returned word has to be deleted manually
12 char* NextWord(float &value);
15 /** MarkLastWord should only be used immidiately after NextWord().
16 If you give control back to the user, you _have_ to call EndOfSpellCheck()
17 or SelectLastWord(), otherwise segfaults should appear.
19 void EndOfSpellCheck();
20 ///
21 void SelectLastWord();
22 ///
23 void ReplaceWord(string const & replacestringstring);
26 /** This function has to be implemented by the spell checker.
27 * It will show the spellcheker form*/
28 void ShowSpellChecker();
29 ///
30 void SpellCheckerOptions();
32 #endif