]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QLPrintDialog.h
Some string(widget->text()) fixes. Weirdness
[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 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ui/QPrintDialogBase.h"
21
22 class QPrint;
23
24 class QLPrintDialog : public QPrintDialogBase {
25         Q_OBJECT
26 public:
27         QLPrintDialog(QPrint * f);
28 protected slots:
29         virtual void change_adaptor();
30         virtual void browseClicked();
31         virtual void fileChanged();
32         virtual void copiesChanged(int);
33         virtual void printerChanged();
34         virtual void pagerangeChanged();
35 private:
36         QPrint * form_;
37 };
38
39 #endif // QLPRINTDIALOG_H