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

28 lines
527 B

#ifndef PRINTDIALOGPAGE_H
#define PRINTDIALOGPAGE_H
#include <kdeprint/kprintdialogpage.h>
#include <qmap.h>
#include <qstring.h>
class QCheckBox;
class QWidget;
class PrintDialogPage : public KPrintDialogPage
{
Q_OBJECT
public:
PrintDialogPage(QWidget *parent = 0, const char *name = 0);
//reimplement virtual functions
void getOptions(QMap<QString, QString> &opts, bool incldef = false);
void setOptions(const QMap<QString, QString> &opts);
private:
QCheckBox *bgCheck;
QCheckBox *titleCheck;
};
#endif