]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QSpellcheckerDialog.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QSpellcheckerDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QSpellcheckerDialog.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  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QSPELLCHECKERDIALOG_H
13 #define QSPELLCHECKERDIALOG_H
14
15
16 #include "ui/QSpellcheckerDialogBase.h"
17
18 class QSpellchecker;
19
20 class QSpellcheckerDialog : public QSpellcheckerDialogBase {
21         Q_OBJECT
22 public:
23         QSpellcheckerDialog(QSpellchecker * form);
24 public slots:
25         virtual void suggestionChanged(const QString &);
26
27 protected slots:
28         virtual void acceptClicked();
29         virtual void addClicked();
30         virtual void replaceClicked();
31         virtual void ignoreClicked();
32         virtual void replaceChanged(const QString &);
33         virtual void reject();
34
35 protected:
36         virtual void closeEvent(QCloseEvent * e);
37
38 private:
39         QSpellchecker * form_;
40 };
41
42 #endif // QSPELLCHECKERDIALOG_H