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

25 lines
441 B

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