00001
00002
00003 #ifndef IMPORTDIALOG_H
00004 #define IMPORTDIALOG_H
00005
00006 #include "Dialog.h"
00007
00009 class ImportDialog: public Dialog
00010 {
00011 Q_OBJECT
00012 public:
00013 ImportDialog(MainWin *mw, QString filename="1.dat", const char *name=0);
00014 private slots :
00015 void selectFile();
00016 int agree();
00017 public slots :
00018 void OK() { if (!agree()) accept(); }
00019 private:
00020 MainWin *mw;
00021 KLineEdit *readsc, *commle, *startrow, *endrow;
00022 };
00023 #endif //IMPORTDIALOG_H