00001
00002
00003 #ifndef HISTLISTDIALOG_H
00004 #define HISTLISTDIALOG_H
00005
00006 #include "ListDialog.h"
00007
00008 class HistListDialog : public ListDialog
00009 {
00010 Q_OBJECT
00011 public:
00012 HistListDialog(MainWin *mw, const char *name);
00013 public slots:
00014 void setRange(double a, double b) {
00015 ale->setText(QString::number(a)); ble->setText(QString::number(b)); }
00016 void setBins(int bin) { binle->setText(QString::number(bin)); }
00017 private:
00018 KLineEdit *binle;
00019 private slots:
00020 int apply_clicked();
00021 };
00022
00023 #endif // HISTLISTDIALOG_H