]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiPrint.h
move our stuff off the Q* namespace
[lyx.git] / src / frontends / qt4 / GuiPrint.h
1 // -*- C++ -*-
2 /**
3  * \file GuiPrint.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 #include "GuiDialogView.h"
17 #include "GuiPrintDialog.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class ControlPrint;
23
24 ///
25 class GuiPrint
26         : public QController<ControlPrint, GuiView<GuiPrintDialog> >
27 {
28 public:
29         ///
30         friend class GuiPrintDialog;
31         ///
32         GuiPrint(Dialog &);
33 private:
34         /// Apply changes
35         virtual void apply();
36         /// update
37         virtual void update_contents();
38         /// build the dialog
39         virtual void build_dialog();
40 };
41
42 } // namespace frontend
43 } // namespace lyx
44
45 #endif // QPRINT_H