00001 //LabPlot : SpreadsheetValuesDialog.h 00002 00003 #ifndef SPREADSHEETVALUESDIALOG_H 00004 #define SPREADSHEETVALUESDIALOG_H 00005 00006 #include <qfont.h> 00007 #include <qcheckbox.h> 00008 #include "Dialog.h" 00009 00010 class SpreadsheetValuesDialog: public Dialog 00011 { 00012 Q_OBJECT 00013 public: 00014 SpreadsheetValuesDialog(MainWin *mw, QTable *t, const char *name); 00015 public slots: 00016 void ok_clicked() { apply_clicked(); accept(); } 00017 void apply_clicked(); 00018 private: 00019 MainWin *mw; 00020 QTable *table; 00021 KLineEdit *ale, *ble, *exprle; 00022 }; 00023 00024 #endif //SPREADSHEETVALUESDIALOG_H