]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLPrintDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QLPrintDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QLPrintDialog.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 QLPRINTDIALOG_H
14 #define QLPRINTDIALOG_H
15
16 #include "ui/QPrintDialogBase.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class QPrint;
22
23 class QLPrintDialog : public QPrintDialogBase {
24         Q_OBJECT
25 public:
26         QLPrintDialog(QPrint * f);
27 protected slots:
28         virtual void change_adaptor();
29         virtual void browseClicked();
30         virtual void fileChanged();
31         virtual void copiesChanged(int);
32         virtual void printerChanged();
33         virtual void pagerangeChanged();
34 private:
35         QPrint * form_;
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // QLPRINTDIALOG_H