]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QParagraphDialog.h
Joao latest 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
17 #include "ui/QParagraphDialogBase.h"
18
19 class QParagraph;
20
21 class QParagraphDialog : public QParagraphDialogBase {
22         Q_OBJECT
23 public:
24         QParagraphDialog(QParagraph * form);
25 protected:
26         void closeEvent (QCloseEvent * e);
27 private:
28         QParagraph * form_;
29 protected slots:
30         void change_adaptor();
31         void enableAbove(int);
32         void enableBelow(int);
33         void enableLinespacingValue(int);
34 };
35
36 #endif // QPARAGRAPHDIALOG_H