qucs_s/qucs/dialogs/importdialog.h

76 lines
2.1 KiB
C
Raw Normal View History

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>
#include <QLabel>
2006-07-03 06:02:08 +00: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;
class QComboBox;
class QLabel;
2006-07-03 06:02:08 +00:00
class ImportDialog : public QDialog {
Q_OBJECT
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();
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
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;
QPlainTextEdit *MsgText;
2024-07-13 19:43:54 +03:00
QLineEdit *ImportEdit, *OutputEdit, *LibName;
QPushButton *ImportButt, *CancelButt, *AbortButt;
2024-07-13 19:43:54 +03:00
QComboBox *OutType, *InType, *OutputData;
public:
void setImportDir(const QString &dir) { lastImportDir = dir; };
2006-07-03 06:02:08 +00:00
};
#endif