]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSpellchecker.h
Patch from Edwin - spellcheck typos.
[lyx.git] / src / frontends / qt4 / GuiSpellchecker.h
1 // -*- C++ -*-
2 /**
3  * \file GuiSpellchecker.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Kalle Dalheimer
9  * \author Edwin Leuven
10  * \author Abdelrazak Younes
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef GUISPELLCHECKER_H
16 #define GUISPELLCHECKER_H
17
18 #include "DockView.h"
19
20 class QListWidgetItem;
21
22 namespace lyx {
23
24 class docstring_list;
25
26 namespace frontend {
27
28 class GuiSpellchecker : public DockView
29 {
30         Q_OBJECT
31
32 public:
33         GuiSpellchecker(GuiView & parent);
34         ~GuiSpellchecker();
35
36 private Q_SLOTS:
37         void on_closePB_clicked();
38         void on_suggestionsLW_itemChanged(QListWidgetItem *);
39         void on_replaceCO_highlighted(const QString & str);
40         void on_ignoreAllPB_clicked();
41         void on_addPB_clicked();
42         void on_ignorePB_clicked();
43         void on_replacePB_clicked();
44
45 private:
46         /// update from controller
47         void updateSuggestions(docstring_list & words);
48
49         ///{
50         void updateView();
51         bool initialiseParams(std::string const & data);
52         void clearParams() {}
53         void dispatchParams() {}
54         bool isBufferDependent() const { return true; }
55         ///}
56
57         /// check text until next misspelled/unknown word
58         /// returns true when finished
59         void check();
60         /// show count of checked words at normal exit
61         void showSummary();
62
63         struct Private;
64         Private * const d;
65 };
66
67 } // namespace frontend
68 } // namespace lyx
69
70 #endif // GUISPELLCHECKER_H