mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
/***************************************************************************
|
|
sweepdialog.h
|
|
---------------
|
|
begin : Sat Aug 13 2005
|
|
copyright : (C) 2005 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 SWEEPDIALOG_H
|
|
#define SWEEPDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QRegularExpression>
|
|
#include <QList>
|
|
|
|
#include <QSpinBox>
|
|
#include <QGridLayout>
|
|
|
|
#include "node.h"
|
|
|
|
class Graph;
|
|
class Schematic;
|
|
class QGridLayout;
|
|
|
|
class mySpinBox : public QSpinBox {
|
|
Q_OBJECT
|
|
public:
|
|
mySpinBox(int, int, int, double*, QWidget*);
|
|
|
|
protected:
|
|
QString textFromValue(int) const;
|
|
QValidator::State validate ( QString & text, int & pos ) const;
|
|
|
|
private:
|
|
double *Values = NULL;
|
|
int ValueSize;
|
|
};
|
|
|
|
class SweepDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
SweepDialog(Schematic*, QHash<QString,double> *NodeVals = 0);
|
|
~SweepDialog();
|
|
|
|
private slots:
|
|
void slotNewValue(int);
|
|
|
|
private:
|
|
Graph* setBiasPoints(QHash<QString,double> *NodeVals = 0);
|
|
|
|
QGridLayout *all; // the mother of all widgets
|
|
QList<mySpinBox *> BoxList;
|
|
|
|
Graph *pGraph;
|
|
Schematic *Doc;
|
|
QList<Node *> NodeList;
|
|
QList<double *> ValueList;
|
|
bool isSpice;
|
|
};
|
|
|
|
#endif
|