]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiSpellchecker.h
Remove unused forward declarations
[lyx.git] / src / frontends / qt / 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 #include <QTabWidget>
20
21 class QListWidgetItem;
22
23 namespace lyx {
24
25 namespace frontend {
26
27 class SpellcheckerWidget : public QTabWidget
28 {
29         Q_OBJECT
30
31 public:
32         SpellcheckerWidget(GuiView * gv, DockView * dv, QWidget * parent = 0);
33         ~SpellcheckerWidget();
34         ///
35         void updateView();
36         ///
37         bool initialiseParams(std::string const &);
38
39 private Q_SLOTS:
40         void on_findNextPB_clicked();
41         void on_replaceAllPB_clicked();
42         void on_suggestionsLW_itemClicked(QListWidgetItem *);
43         void on_replaceCO_highlighted(const QString & str);
44         void on_languageCO_activated(int index);
45         void on_ignoreAllPB_clicked();
46         void on_addPB_clicked();
47         void on_ignorePB_clicked();
48         void on_replacePB_clicked();
49
50 private:
51         ///
52         bool eventFilter(QObject *obj, QEvent *event) override;
53         struct Private;
54         Private * const d;
55 };
56
57
58 class GuiSpellchecker : public DockView
59 {
60         Q_OBJECT
61
62 public:
63         GuiSpellchecker(
64                 GuiView & parent, ///< the main window where to dock.
65                 Qt::DockWidgetArea area = Qt::RightDockWidgetArea, ///< Position of the dock (and also drawer)
66                 Qt::WindowFlags flags = 0);
67         ~GuiSpellchecker();
68
69 private:
70         ///{
71         void updateView() override;
72         bool initialiseParams(std::string const & sdata) override
73                 { return widget_->initialiseParams(sdata); }
74         void clearParams() override {}
75         void dispatchParams() override {}
76         bool isBufferDependent() const override { return false; }
77         ///}
78         /// The encapsulated widget.
79         SpellcheckerWidget * widget_;
80 };
81
82 } // namespace frontend
83 } // namespace lyx
84
85 #endif // GUISPELLCHECKER_H