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.
tdelibs/kdeprint/tests/richpage.h

25 lines
432 B

#ifndef RICHPAGE_H
#define RICHPAGE_H
#include <kprintdialogpage.h>
class QSpinBox;
class QComboBox;
class RichPage : public KPrintDialogPage
{
public:
RichPage(QWidget *parent = 0, const char *name = 0);
~RichPage();
void setOptions(const QMap<QString,QString>& opts);
void getOptions(QMap<QString,QString>& opts, bool incldef = false);
private:
QSpinBox *margin_;
QComboBox *fontname_;
QSpinBox *fontsize_;
};
#endif