]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERTDialog.h
The initial merge of the Qt frontend, and the necessary compile fixes.
[lyx.git] / src / frontends / qt2 / QERTDialog.h
1 /**
2  * \file QERTDialog.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #ifndef QERTDIALOG_H
10 #define QERTDIALOG_H
11
12 #include <config.h>
13
14 #include "QERT.h"
15 #include "ui/QERTDialogBase.h"
16
17 class QERTDialog : public QERTDialogBase
18 { Q_OBJECT
19
20 public:
21         QERTDialog(QERT * form);
22
23 protected slots:
24         void change_adaptor() {
25                 form_->changed();
26         }
27
28 protected:
29         virtual void closeEvent(QCloseEvent * e);
30
31 private:
32         QERT * form_;
33 };
34
35 #endif // QERTDIALOG_H