00001 //LabPlot : ConfigureDialog.h 00002 00003 #ifndef CONFIGUREDIALOG_H 00004 #define CONFIGUREDIALOG_H 00005 00006 #include <qcheckbox.h> 00007 #include <kdialogbase.h> 00008 #include <kconfig.h> 00009 #include <knuminput.h> 00010 #include "MainWin.h" 00011 #include "Dialog.h" 00012 00013 class ConfigureDialog: public KDialogBase 00014 { 00015 Q_OBJECT 00016 public: 00017 ConfigureDialog(MainWin *mw, const char *name, KConfig *config); 00018 private slots: 00019 void apply_clicked(); 00020 void ok_clicked(); 00021 private: 00022 MainWin *mw; 00023 Dialog *dialog; 00024 KConfig *config; 00025 QRadioButton *fullscreen, *cascade; 00026 QRadioButton *color, *grayscale; 00027 KComboBox *pagesize, *orientation; 00028 QCheckBox *autosave, *speedmode; 00029 KIntNumInput *asIntervalInput; 00030 KLineEdit *speedmodevalue; 00031 }; 00032 #endif //CONFIGUREDIALOG_H