blob: 6aed5ca74b71f693594869f515d37bef0f265e5f (
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
25
26
27
28
29
|
#ifndef EXPORT_PAGE_DIALOG_H
#define EXPORT_PAGE_DIALOG_H
#include <kdialogbase.h>
class ExportPageDialogBase;
class ExportPageDialog : public KDialogBase
{
TQ_OBJECT
public:
ExportPageDialog(TQWidget* parent=0, const char* name=0);
int quality();
int border();
bool crop();
bool fullPage();
bool selectedStencils();
protected slots:
void slotOk();
private:
ExportPageDialogBase* m_view;
};
#endif
|