summaryrefslogtreecommitdiffstats
path: root/kolf/printdialogpage.h
blob: 76b7c43a752619852c2ff53aa8a420de981ea7b3 (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 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