00001 //LabPlot : PstoEditDialog.h 00002 00003 #ifndef PSTOEDITDIALOG_H 00004 #define PSTOEDITDIALOG_H 00005 00006 #include <qfont.h> 00007 #include <qcheckbox.h> 00008 #include "Worksheet.h" 00009 #include "Dialog.h" 00010 00011 class PstoEditDialog: public Dialog 00012 { 00013 Q_OBJECT 00014 public: 00015 PstoEditDialog(Worksheet *p, const char *name); 00016 public slots: 00017 void updateFilename(int index); 00018 void selectFile(); 00019 void ok_clicked() { apply_clicked(); accept(); } 00020 void apply_clicked(); 00021 private: 00022 Worksheet *p; 00023 KComboBox *format, *pagesize; 00024 KLineEdit *filele, *scalele, *rotle; 00025 }; 00026 00027 #endif //PSTOEDITDIALOG_H