]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QParagraphDialog.h
Some string(widget->text()) fixes. Weirdness
[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         Q_OBJECT
26 public:
27         QParagraphDialog(QParagraph * form);
28 protected:
29         void closeEvent (QCloseEvent * e);
30 private:
31         QParagraph * form_;
32 protected slots:
33         void change_adaptor();
34         void enableAbove(int);
35         void enableBelow(int);
36         void enableLinespacingValue(int);
37 };
38
39 #endif // QPARAGRAPHDIALOG_H