]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QFloat.h
namespace grfx -> lyx::graphics
[lyx.git] / src / frontends / qt2 / QFloat.h
1 // -*- C++ -*-
2 /**
3  * \file QFloat.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 QFLOAT_H
13 #define QFLOAT_H
14
15
16 #include "QDialogView.h"
17
18
19 class ControlFloat;
20 class QFloatDialog;
21
22 ///
23 class QFloat : public QController<ControlFloat, QView<QFloatDialog> > {
24 public:
25         ///
26         friend class QFloatDialog;
27         ///
28         QFloat(Dialog &);
29 private:
30         /// Apply changes
31         virtual void apply();
32         /// update
33         virtual void update_contents();
34         /// build the dialog
35         virtual void build_dialog();
36 };
37
38 #endif // QFLOAT_H