summaryrefslogtreecommitdiffstats
path: root/kolf/printdialogpage.h
blob: 4869ea53238986a5a28e35340fe46e6d28b57e1f (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 <kdeprint/kprintdialogpage.h>
#include <tqmap.h>
#include <tqstring.h>

class TQCheckBox;
class TQWidget;

class PrintDialogPage : public KPrintDialogPage
{
	Q_OBJECT
  TQ_OBJECT

	public:
		PrintDialogPage(TQWidget *tqparent = 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