]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QMinipage.h
Strip trailing whitespace.
[lyx.git] / src / frontends / qt2 / QMinipage.h
1 // -*- C++ -*-
2 /**
3  * \file QMinipage.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  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QMINIPAGE_H
13 #define QMINIPAGE_H
14
15
16 #include "Qt2Base.h"
17
18 class ControlMinipage;
19 class QMinipageDialog;
20
21 ///
22 class QMinipage
23         : public Qt2CB<ControlMinipage, Qt2DB<QMinipageDialog> >
24 {
25 public:
26         ///
27         friend class QMinipageDialog;
28         ///
29         QMinipage();
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 // QMINIPAGE_H