]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QVSpaceDialog.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QVSpaceDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QVSpaceDialog.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  * \author Jürgen Spitzmüller
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QVSPACEDIALOG_H
14 #define QVSPACEDIALOG_H
15
16
17 #include "ui/QVSpaceDialogBase.h"
18
19 class QVSpace;
20
21 class QVSpaceDialog : public QVSpaceDialogBase {
22         Q_OBJECT
23
24 public:
25         QVSpaceDialog(QVSpace * form);
26
27 public slots:
28         void change_adaptor();
29
30 protected:
31         void closeEvent(QCloseEvent *);
32         void enableCustom(int);
33
34 private:
35         QVSpace * form_;
36 };
37
38 #endif // QVSPACEDIALOG_H