2015-04-24 13:37:56 +03:00
|
|
|
/***************************************************************************
|
|
|
|
customdialog.h
|
|
|
|
----------------
|
|
|
|
begin : Mon Apr 13 2015
|
|
|
|
copyright : (C) 2015 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-06 14:34:09 +03:00
|
|
|
#ifndef CUSTOMSIMDIALOG_H
|
|
|
|
#define CUSTOMSIMDIALOG_H
|
|
|
|
|
2015-04-06 16:19:32 +03:00
|
|
|
#include "schematic.h"
|
2016-01-17 19:55:13 +03:00
|
|
|
#include "spicecomponents/sp_customsim.h"
|
2015-04-06 14:34:09 +03:00
|
|
|
#include "components/component.h"
|
|
|
|
#include <QtGui>
|
|
|
|
|
2015-04-25 13:31:40 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\file customsimdialog.h
|
|
|
|
\brief Implementation of the CustomSimDialog class
|
|
|
|
*/
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief The CustomSimDialog class is responsible for editing properties
|
2022-07-05 07:08:28 -04:00
|
|
|
* of Ngspice Custom Simulation component. You can edit multiline
|
2015-04-24 13:37:56 +03:00
|
|
|
* component properties with it.
|
|
|
|
*/
|
2015-04-06 14:34:09 +03:00
|
|
|
class CustomSimDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-06-23 13:53:16 +03:00
|
|
|
bool isXyceScr;
|
|
|
|
|
2015-04-06 16:19:32 +03:00
|
|
|
SpiceCustomSim* comp;
|
|
|
|
Schematic *Sch;
|
|
|
|
|
2015-04-06 14:34:09 +03:00
|
|
|
QTextEdit* edtCode;
|
|
|
|
QPushButton *btnOK;
|
|
|
|
QPushButton *btnApply;
|
|
|
|
QPushButton *btnCancel;
|
2015-04-07 16:05:20 +03:00
|
|
|
QPushButton *btnPlotAll;
|
2016-06-23 13:53:16 +03:00
|
|
|
QPushButton *btnFindOutputs;
|
2015-04-07 16:05:20 +03:00
|
|
|
|
|
|
|
QLineEdit *edtVars;
|
2015-05-19 15:19:50 +03:00
|
|
|
QLineEdit *edtOutputs;
|
2015-04-06 14:34:09 +03:00
|
|
|
|
|
|
|
public:
|
2015-04-06 16:19:32 +03:00
|
|
|
explicit CustomSimDialog(SpiceCustomSim *pc, Schematic *sch, QWidget *parent = 0);
|
2015-04-06 14:34:09 +03:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotApply();
|
|
|
|
void slotOK();
|
|
|
|
void slotCancel();
|
2015-04-07 16:05:20 +03:00
|
|
|
void slotFindVars();
|
2016-06-23 13:53:16 +03:00
|
|
|
void slotFindOutputs();
|
2015-04-06 14:34:09 +03:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CUSTOMSIMDIALOG_H
|