00001 //LabPlot : HankelListDialog.h 00002 00003 #ifndef HANKELLISTDIALOG_H 00004 #define HANKELLISTDIALOG_H 00005 00006 #include "ListDialog.h" 00007 00008 class HankelListDialog : public ListDialog 00009 { 00010 Q_OBJECT 00011 public: 00012 HankelListDialog(MainWin *mw, const char *name); 00013 public slots: 00014 void setNu(int nu) { nule->setText(QString::number(nu)); } 00015 private: 00016 KLineEdit *nule; 00017 private slots: 00018 int apply_clicked(); 00019 }; 00020 00021 #endif // HANKELLISTDIALOG_H