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.
25 lines
441 B
25 lines
441 B
15 years ago
|
#ifndef RICHPAGE_H
|
||
|
#define RICHPAGE_H
|
||
|
|
||
|
#include <kprintdialogpage.h>
|
||
|
|
||
14 years ago
|
class TQSpinBox;
|
||
|
class TQComboBox;
|
||
15 years ago
|
|
||
|
class RichPage : public KPrintDialogPage
|
||
|
{
|
||
|
public:
|
||
14 years ago
|
RichPage(TQWidget *parent = 0, const char *name = 0);
|
||
15 years ago
|
~RichPage();
|
||
|
|
||
14 years ago
|
void setOptions(const TQMap<TQString,TQString>& opts);
|
||
|
void getOptions(TQMap<TQString,TQString>& opts, bool incldef = false);
|
||
15 years ago
|
|
||
|
private:
|
||
|
QSpinBox *margin_;
|
||
|
QComboBox *fontname_;
|
||
|
QSpinBox *fontsize_;
|
||
|
};
|
||
|
|
||
|
#endif
|