blob: 0dd6cef92024c24bc3de3d61e39f1fcd08240df1 (
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
28
|
#ifndef PRINTDIALOGPAGE_H
#define PRINTDIALOGPAGE_H
#include <tdeprint/kprintdialogpage.h>
#include <tqmap.h>
#include <tqstring.h>
class TQCheckBox;
class TQWidget;
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
|