00001 //LabPlot : WaveletListDialog.h 00002 00003 #ifndef WAVELETLISTDIALOG_H 00004 #define WAVELETLISTDIALOG_H 00005 00006 #include "ListDialog.h" 00007 00008 class WaveletListDialog : public ListDialog 00009 { 00010 Q_OBJECT 00011 public: 00012 WaveletListDialog(MainWin *mw, const char *name); 00013 public slots: 00014 void setDirection(bool d=false) { transform->setCurrentItem(d); } 00015 void setForm(bool t=false) { form->setCurrentItem(t); } 00016 void setType(int t) { typecb->setCurrentItem(t); } 00017 void setK(int k) { kle->setText(QString::number(k)); } 00018 private: 00019 KComboBox *transform, *form, *typecb; 00020 KLineEdit *kle; 00021 private slots: 00022 int apply_clicked(); 00023 }; 00024 00025 #endif // WAVELETLISTDIALOG_H