#ifndef EXPORT_PAGE_DIALOG_H #define EXPORT_PAGE_DIALOG_H #include class ExportPageDialogBase; class ExportPageDialog : public KDialogBase { Q_OBJECT 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