2006-07-03 06:02:08 +00:00
|
|
|
/***************************************************************************
|
|
|
|
importdialog.h
|
|
|
|
----------------
|
|
|
|
begin : Fri Jun 23 2006
|
|
|
|
copyright : (C) 2006 by Michael Margraf
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef IMPORTDIALOG_H
|
|
|
|
#define IMPORTDIALOG_H
|
|
|
|
|
2013-05-31 18:52:10 +02:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QGridLayout>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QLabel>
|
2006-07-03 06:02:08 +00:00
|
|
|
|
2016-10-08 18:01:18 +02:00
|
|
|
class QPlainTextEdit;
|
2006-07-03 06:02:08 +00:00
|
|
|
class QLineEdit;
|
2013-05-31 18:52:10 +02:00
|
|
|
class QGridLayout;
|
2006-07-03 06:02:08 +00:00
|
|
|
class QPushButton;
|
2009-03-17 19:33:22 +00:00
|
|
|
class QComboBox;
|
|
|
|
class QLabel;
|
2006-07-03 06:02:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ImportDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
2024-03-22 14:36:58 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString lastImportDir;
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
public:
|
|
|
|
ImportDialog(QWidget*);
|
|
|
|
~ImportDialog();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotDisplayMsg();
|
|
|
|
void slotDisplayErr();
|
2013-05-31 18:52:10 +02:00
|
|
|
void slotProcessEnded(int status);
|
2006-07-03 06:02:08 +00:00
|
|
|
void slotImport();
|
2007-04-15 10:41:21 +00:00
|
|
|
void slotAbort();
|
2006-07-03 06:02:08 +00:00
|
|
|
void slotBrowse();
|
2024-03-22 11:26:18 +03:00
|
|
|
void slotSaveBrowse();
|
2024-08-26 20:17:12 +03:00
|
|
|
void slotType(int index);
|
2024-03-22 11:26:18 +03:00
|
|
|
void slotValidateInput();
|
|
|
|
void slotValidateOutput();
|
2006-07-03 06:02:08 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void startSimulator();
|
2024-07-13 19:43:54 +03:00
|
|
|
bool getDataVarsFromDatafile(const QString &filename);
|
2006-07-03 06:02:08 +00:00
|
|
|
|
2024-03-22 14:36:58 +03:00
|
|
|
private:
|
2013-05-31 18:52:10 +02:00
|
|
|
QGridLayout *all;
|
2006-07-03 06:02:08 +00:00
|
|
|
|
2024-07-13 18:30:00 +03:00
|
|
|
QLabel *OutputLabel, *LibLabel;
|
2013-05-31 18:52:10 +02:00
|
|
|
QProcess Process;
|
2016-10-08 18:01:18 +02:00
|
|
|
QPlainTextEdit *MsgText;
|
2024-07-13 19:43:54 +03:00
|
|
|
QLineEdit *ImportEdit, *OutputEdit, *LibName;
|
2007-04-15 10:41:21 +00:00
|
|
|
QPushButton *ImportButt, *CancelButt, *AbortButt;
|
2024-07-13 19:43:54 +03:00
|
|
|
QComboBox *OutType, *InType, *OutputData;
|
2024-03-22 14:36:58 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
void setImportDir(const QString &dir) { lastImportDir = dir; };
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|