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.
30 lines
450 B
30 lines
450 B
#ifndef EXPORT_PAGE_DIALOG_H
|
|
#define EXPORT_PAGE_DIALOG_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class ExportPageDialogBase;
|
|
|
|
class ExportPageDialog : public KDialogBase
|
|
{
|
|
Q_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
|