]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QParagraphDialog.h
Lots and lots of little trivial bits.
[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 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ui/QParagraphDialogBase.h"
21
22 class QParagraph;
23
24 class QParagraphDialog : public QParagraphDialogBase
25 {
26         Q_OBJECT
27 public:
28         QParagraphDialog(QParagraph * form);
29
30 protected:
31         void closeEvent (QCloseEvent * e);
32 private:
33         QParagraph * form_;
34
35 protected slots:
36         void change_adaptor();
37         void enableAbove(int);
38         void enableBelow(int);
39         void enableLinespacingValue(int);
40 };
41
42 #endif // QPARAGRAPHDIALOG_H