qucs_s/qucs-filter/qucsfilter.h

84 lines
2.6 KiB
C
Raw Normal View History

2005-03-05 14:52:09 +00:00
/***************************************************************************
qucsfilter.h
-------------------
begin : Wed Mar 02 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 QUCSFILTER_H
#define QUCSFILTER_H
2022-02-14 22:24:38 +01:00
#include <QtGui>
#include <QtWidgets>
#include <QtCore>
2005-03-05 14:52:09 +00:00
class QGridLayout;
2005-03-05 14:52:09 +00:00
class QComboBox;
class QLineEdit;
class QLabel;
class QIntValidator;
class QDoubleValidator;
2023-06-16 16:20:34 +03:00
//namespace spicecompat {
// enum Simulator {simNgspice = 0, simXyceSer = 1, simXycePar = 2, simSpiceOpus = 3, simQucsator = 4, simNotSpecified=10};
//}
2005-03-05 14:52:09 +00:00
2005-03-19 11:51:25 +00:00
struct tQucsSettings {
int x, y; // position of main window
QFont font;
QString LangDir;
2006-02-14 07:25:27 +00:00
QString Language;
int DefaultSimulator;
2005-03-19 11:51:25 +00:00
};
extern struct tQucsSettings QucsSettings;
class QucsFilter : public QMainWindow
2005-03-05 14:52:09 +00:00
{
Q_OBJECT
public:
QucsFilter();
~QucsFilter();
private slots:
void slotQuit();
void slotHelpIntro();
void slotHelpAbout();
void slotHelpAboutQt();
void slotCalculate();
void slotTypeChanged(int);
void slotClassChanged(int);
void slotShowResult();
void slotRealizationChanged(int);
void slotTakeEr(const QString&);
2005-03-05 14:52:09 +00:00
private:
2005-09-12 12:01:40 +00:00
void setError(const QString&);
QString * calculateFilter(struct tFilter *);
2005-09-12 12:01:40 +00:00
2005-03-05 14:52:09 +00:00
int ResultState;
QGridLayout *all, *gbox1, *gbox2;
QGroupBox *box1, *box2;
QComboBox *ComboRealize, *ComboType, *ComboClass, *ComboCorner, *ComboStop, *ComboBandStop, *ComboEr;
QLineEdit *EditOrder, *EditCorner, *EditStop, *EditRipple, *EditImpedance, *EditThickness, *EditHeight, *EditMinWidth, *EditMaxWidth;
QLineEdit *EditAtten, *EditBandStop;
QLabel *LabelRipple, *LabelRipple_dB, *LabelStart, *LabelStop, *LabelResult;
QLabel *LabelAtten, *LabelAtten_dB, *LabelBandStop, *LabelOrder, *LabelImpedance, *LabelOhm;
2005-03-05 14:52:09 +00:00
QIntValidator *IntVal;
QDoubleValidator *DoubleVal;
};
#endif