]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QParagraph.h
The qbranch fixes, the lengthcombo enhancement and removal of dead code in QParagraph.C
[lyx.git] / src / frontends / qt2 / QParagraph.h
1 // -*- C++ -*-
2 /**
3  * \file QParagraph.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QPARAGRAPH_H
14 #define QPARAGRAPH_H
15
16 #include "QDialogView.h"
17
18
19 class ControlParagraph;
20 class QParagraphDialog;
21
22
23 class QParagraph
24         : public QController<ControlParagraph, QView<QParagraphDialog> >
25 {
26 public:
27         friend class QParagraphDialog;
28
29         QParagraph(Dialog &);
30 private:
31         /// Apply changes
32         virtual void apply();
33         /// update
34         virtual void update_contents();
35         /// build the dialog
36         virtual void build_dialog();
37 };
38
39 #endif // QPARAGRAPH_H