]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QVSpaceDialog.h
some tabular fixes for the problems reported by Helge
[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 #include "ui/QVSpaceDialogBase.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class QVSpace;
22
23 class QVSpaceDialog : public QVSpaceDialogBase {
24         Q_OBJECT
25
26 public:
27         QVSpaceDialog(QVSpace * form);
28
29 public slots:
30         void change_adaptor();
31
32 protected:
33         void closeEvent(QCloseEvent *);
34         void enableCustom(int);
35
36 private:
37         QVSpace * form_;
38 };
39
40 } // namespace frontend
41 } // namespace lyx
42
43 #endif // QVSPACEDIALOG_H