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.
koffice/kivio/kiviopart/ui/export_page_dialog.h

30 lines
451 B

#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