blob: 33e4304e70ec4602600e63bf2a1a1d4e9b1a2fcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#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
|