]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QParagraphDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QParagraphDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QParagraphDialog.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 Edwin Leuven
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QPARAGRAPHDIALOG_H
14 #define QPARAGRAPHDIALOG_H
15
16 #include "ui/QParagraphDialogBase.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class QParagraph;
22
23 class QParagraphDialog : public QParagraphDialogBase {
24         Q_OBJECT
25 public:
26         QParagraphDialog(QParagraph * form);
27 protected:
28         void closeEvent (QCloseEvent * e);
29 private:
30         QParagraph * form_;
31 protected slots:
32         void change_adaptor();
33         void enableLinespacingValue(int);
34 };
35
36 } // namespace frontend
37 } // namespace lyx
38
39 #endif // QPARAGRAPHDIALOG_H