blob: 047454a2135432a7ac66f7f51de47891157b68b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef PRINTDIALOGPAGE_H
#define PRINTDIALOGPAGE_H
#include <kdeprint/kprintdialogpage.h>
#include <qmap.h>
#include <qstring.h>
class QCheckBox;
class QWidget;
class PrintDialogPage : public KPrintDialogPage
{
Q_OBJECT
public:
PrintDialogPage(QWidget *parent = 0, const char *name = 0);
//reimplement virtual functions
void getOptions(QMap<QString, QString> &opts, bool incldef = false);
void setOptions(const QMap<QString, QString> &opts);
private:
QCheckBox *bgCheck;
QCheckBox *titleCheck;
};
#endif
|