]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLPrintDialog.h
Minipage is no more (long live the box inset)
[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
17 #include "ui/QPrintDialogBase.h"
18
19 class QPrint;
20
21 class QLPrintDialog : public QPrintDialogBase {
22         Q_OBJECT
23 public:
24         QLPrintDialog(QPrint * f);
25 protected slots:
26         virtual void change_adaptor();
27         virtual void browseClicked();
28         virtual void fileChanged();
29         virtual void copiesChanged(int);
30         virtual void printerChanged();
31         virtual void pagerangeChanged();
32 private:
33         QPrint * form_;
34 };
35
36 #endif // QLPRINTDIALOG_H