kivio
export_page_dialog.h00001 #ifndef EXPORT_PAGE_DIALOG_H
00002 #define EXPORT_PAGE_DIALOG_H
00003
00004 #include <kdialogbase.h>
00005
00006 class ExportPageDialogBase;
00007
00008 class ExportPageDialog : public KDialogBase
00009 {
00010 Q_OBJECT
00011 public:
00012 ExportPageDialog(QWidget* parent=0, const char* name=0);
00013
00014 int quality();
00015 int border();
00016
00017 bool crop();
00018 bool fullPage();
00019 bool selectedStencils();
00020
00021 protected slots:
00022 void slotOk();
00023
00024 private:
00025 ExportPageDialogBase* m_view;
00026 };
00027
00028 #endif
|