You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kolf/printdialogpage.h

29 lines
543 B

#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