]> git.lyx.org Git - lyx.git/blob - src/spellchecker.h
fix some of the bugs reported, should hopefully be a bit better now.
[lyx.git] / src / spellchecker.h
1 // -*- C++ -*-
2 #ifndef SPELLCHECKER_H
3 #define SPELLCHECKER_H
4
5 /* These functions are defined in lyx_cb.C */
6
7
8 /** MarkLastWord should only be used immidiately after NextWord().
9  If you give control back to the user, you _have_ to call EndOfSpellCheck()
10  or SelectLastWord(), otherwise segfaults should appear.
11  */
12 //void EndOfSpellCheck();
13 ///
14 //void SelectLastWord();
15
16 /** This function has to be implemented by the spell checker.
17     It will show the spellcheker form*/ 
18 void ShowSpellChecker();
19 ///
20 void SpellCheckerOptions();
21
22 #endif