]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QPrintDialog.h
Some Qt graphics dialog improvements. Yet more work needed :/
[lyx.git] / src / frontends / qt2 / QPrintDialog.h
1 /**
2  * \file QPrintDialog.h
3  * Copyright 2001 LyX Team
4  * see the file COPYING
5  *
6  * \author John Levon, moz@compsoc.man.ac.uk
7  * \author Edwin Leuven, leuven@fee.uva.nl
8  */
9
10 #ifndef QPRINTDIALOG_H
11 #define QPRINTDIALOG_H
12
13 #include <config.h>
14
15 #include "ui/QPrintDialogBase.h"
16 #include "lyxrc.h"
17 #include "PrinterParams.h"
18
19 class QPrint;
20
21 class QPrintDialog : public QPrintDialogBase
22 { Q_OBJECT
23
24 public:
25         QPrintDialog(QPrint * f);
26
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
35 private:
36         QPrint * form_;
37
38 };
39
40 #endif // QPRINTDIALOG_H