mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
78 lines
2.0 KiB
C++
78 lines
2.0 KiB
C++
/***************************************************************************
|
|
ngspicesimdialog.h
|
|
----------------
|
|
begin : Sun Nov 9 2014
|
|
copyright : (C) 2014 by Vadim Kuznetsov
|
|
email : ra3xdh@gmail.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 EXTERNSIMDIALOG_H
|
|
#define EXTERNSIMDIALOG_H
|
|
|
|
#include <QtGui>
|
|
|
|
#include "schematic.h"
|
|
#include "ngspice.h"
|
|
#include "xyce.h"
|
|
#include "spicecompat.h"
|
|
|
|
class ExternSimDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
|
|
Schematic *Sch;
|
|
|
|
QPushButton *buttonSimulate;
|
|
QPushButton *buttonStopSim;
|
|
QPushButton *buttonSaveNetlist;
|
|
QPushButton *buttonExit;
|
|
|
|
QPlainTextEdit *editSimConsole;
|
|
|
|
QProgressBar *simProgress;
|
|
|
|
QString workdir;
|
|
|
|
Ngspice *ngspice;
|
|
Xyce *xyce;
|
|
|
|
public:
|
|
explicit ExternSimDialog(Schematic *sch,QWidget *parent = 0);
|
|
~ExternSimDialog();
|
|
|
|
bool wasSimulated;
|
|
|
|
private:
|
|
void saveLog();
|
|
|
|
signals:
|
|
void simulated();
|
|
void warnings();
|
|
void success();
|
|
|
|
public slots:
|
|
|
|
private slots:
|
|
void slotProcessOutput();
|
|
//void slotProcessXyceOutput();
|
|
void slotNgspiceStarted();
|
|
void slotNgspiceStartError(QProcess::ProcessError err);
|
|
void slotStart();
|
|
void slotStop();
|
|
void slotSetSimulator();
|
|
void slotSaveNetlist();
|
|
|
|
};
|
|
|
|
#endif // EXTERNSIMDIALOG_H
|