]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERTDialog.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QERTDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QERTDialog.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 QERTDIALOG_H
13 #define QERTDIALOG_H
14
15 #include "ui/QERTDialogBase.h"
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 class QERT;
22
23 class QERTDialog : public QERTDialogBase {
24         Q_OBJECT
25 public:
26         QERTDialog(QERT * form);
27 protected slots:
28         virtual void change_adaptor();
29 protected:
30         virtual void closeEvent(QCloseEvent * e);
31 private:
32         QERT * form_;
33 };
34
35 #endif // QERTDIALOG_H