]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QFloatDialog.h
Remove quite a few compiler warnings:
[lyx.git] / src / frontends / qt4 / 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/QFloatUi.h"
16
17 #include <QCloseEvent>
18 #include <QDialog>
19
20 namespace lyx {
21 namespace frontend {
22
23 class QFloat;
24
25 class QFloatDialog : public QDialog, public Ui::QFloatUi {
26         Q_OBJECT
27 public:
28         QFloatDialog(QFloat * form);
29
30 protected Q_SLOTS:
31         virtual void change_adaptor();
32
33 protected:
34         virtual void closeEvent(QCloseEvent * e);
35
36 private:
37         QFloat * form_;
38 };
39
40 } // namespace frontend
41 } // namespace lyx
42
43 #endif // QFLOATDIALOG_H