00001 //LabPlot : SpreadsheetPropertiesDialog.h 00002 00003 #ifndef SPREADSHEETPROPERTIESDIALOG_H 00004 #define SPREADSHEETPROPERTIESDIALOG_H 00005 00006 #include <qfont.h> 00007 #include <qcheckbox.h> 00008 #include <qtable.h> 00009 #include "Dialog.h" 00010 00011 class SpreadsheetPropertiesDialog: public Dialog 00012 { 00013 Q_OBJECT 00014 public: 00015 SpreadsheetPropertiesDialog(MainWin *mw, QTable *t, QString name); 00016 private: 00017 QTable *table; 00018 KComboBox *typecb, *formatcb; 00019 KLineEdit *labelle, *rowle; 00020 private slots: 00021 void ok_clicked() { apply_clicked(); accept(); } 00022 void apply_clicked(); 00023 }; 00024 00025 #endif //SPREADSHEETPROPERTIESDIALOG_H