00001 //LabPlot : SummaryRListDialog.h 00002 00003 #ifndef SUMMARYRLISTDIALOG_H 00004 #define SUMMARYRLISTDIALOG_H 00005 00006 #include "ListDialog.h" 00007 00008 class SummaryRListDialog : public ListDialog 00009 { 00010 Q_OBJECT 00011 public: 00012 SummaryRListDialog(MainWin *mw, const char *name); 00013 public slots: 00014 int Apply() { return apply_clicked(); } 00015 private: 00016 QTable *stattable; 00017 KComboBox *opcb; 00018 private slots: 00019 void fillTable(int row, QString name, double *data, int N); 00020 void updateResults(); 00021 void saveSettings(); 00022 int apply_clicked(); 00023 }; 00024 00025 #endif // SUMMARYRLISTDIALOG_H