]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QFloatDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QFloatDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QFloatDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QFLOATDIALOG_H
13 #define QFLOATDIALOG_H
14
15 #include "ui/QFloatDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QFloat;
21
22 class QFloatDialog : public QFloatDialogBase {
23         Q_OBJECT
24 public:
25         QFloatDialog(QFloat * form);
26
27 protected slots:
28         virtual void change_adaptor();
29
30 protected:
31         virtual void closeEvent(QCloseEvent * e);
32
33 private:
34         QFloat * form_;
35 };
36
37 } // namespace frontend
38 } // namespace lyx
39
40 #endif // QFLOATDIALOG_H