]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QPrint.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QPrint.h
1 // -*- C++ -*-
2 /**
3  * \file QPrint.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 QPRINT_H
14 #define QPRINT_H
15
16
17 #include "Qt2Base.h"
18
19 class ControlPrint;
20 class QLPrintDialog;
21
22 ///
23 class QPrint
24         : public Qt2CB<ControlPrint, Qt2DB<QLPrintDialog> >
25 {
26 public:
27         ///
28         friend class QLPrintDialog;
29         ///
30         QPrint();
31 private:
32         /// Apply changes
33         virtual void apply();
34         /// update
35         virtual void update_contents();
36         /// build the dialog
37         virtual void build_dialog();
38 };
39
40 #endif // QPRINT_H