blob: 4376055c808ddd7cb8f293e54036cadaca3dd75b (
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 <tqmap.h>
#include <tqstring.h>
class QCheckBox;
class QWidget;
class PrintDialogPage : public KPrintDialogPage
{
Q_OBJECT
public:
PrintDialogPage(TQWidget *parent = 0, const char *name = 0);
//reimplement virtual functions
void getOptions(TQMap<TQString, TQString> &opts, bool incldef = false);
void setOptions(const TQMap<TQString, TQString> &opts);
private:
TQCheckBox *bgCheck;
TQCheckBox *titleCheck;
};
#endif
|