]> git.lyx.org Git - lyx.git/blob - src/spellchecker.h
GUI-indep toolbar and menus mostly work !
[lyx.git] / src / spellchecker.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  * 
5  *           LyX, The Document Processor
6  *        
7  *           Copyright 1995 Matthias Ettrich
8  *           Copyright 1995-2000 The LyX Team.
9  *
10  * ====================================================== */
11
12 #ifndef SPELLCHECKER_H
13 #define SPELLCHECKER_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 /* These functions are defined in lyx_cb.C */
20
21 class BufferView;
22
23 /** MarkLastWord should only be used immidiately after NextWord().
24  If you give control back to the user, you _have_ to call EndOfSpellCheck()
25  or SelectLastWord(), otherwise segfaults should appear.
26  */
27 //void EndOfSpellCheck();
28 ///
29 //void SelectLastWord();
30
31 /** This function has to be implemented by the spell checker.
32     It will show the spellcheker form*/ 
33 void ShowSpellChecker(BufferView *);
34 ///
35 void SpellCheckerOptions();
36
37 #endif