2006-07-04 09:21:49 +00:00
|
|
|
//-*- C++ -*-
|
|
|
|
/****************************************************************************
|
|
|
|
** Qucs Attenuator Synthesis
|
|
|
|
** qucsattenuator.h
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QUCSATTENUATOR_H
|
|
|
|
#define QUCSATTENUATOR_H
|
|
|
|
|
2013-05-27 01:14:03 +02:00
|
|
|
#include <QDialog>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QLabel>
|
2006-07-04 09:21:49 +00:00
|
|
|
#include "attenuatorfunc.h"
|
|
|
|
|
|
|
|
class QComboBox;
|
|
|
|
class QLineEdit;
|
|
|
|
class QIntValidator;
|
|
|
|
class QDoubleValidator;
|
|
|
|
class QLabel;
|
|
|
|
class QPushButton;
|
|
|
|
|
|
|
|
struct tQucsSettings
|
|
|
|
{
|
|
|
|
int x, y; // position of main window
|
|
|
|
QFont font;
|
|
|
|
QString LangDir;
|
|
|
|
QString BitmapDir;
|
|
|
|
QString Language;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct tQucsSettings QucsSettings;
|
|
|
|
|
|
|
|
class QucsAttenuator : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QucsAttenuator();
|
|
|
|
~QucsAttenuator();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotHelpIntro();
|
|
|
|
void slotHelpAbout();
|
|
|
|
void slotHelpAboutQt();
|
|
|
|
void slotTopologyChanged();
|
|
|
|
void slotCalculate();
|
|
|
|
void slotQuit();
|
2006-08-09 08:12:38 +00:00
|
|
|
void slotSetText_Zin(const QString &);
|
|
|
|
void slotSetText_Zout(const QString &);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QComboBox *ComboTopology;
|
|
|
|
QLabel *LabelTopology, *LabelAtten, *LabelImp1, *LabelImp2;
|
|
|
|
QLabel *LabelR1, *LabelR2, *LabelR3, *pixTopology, *LabelResult;
|
2006-07-28 07:13:18 +00:00
|
|
|
QLabel *LabelR3_Ohm;
|
2006-07-04 09:21:49 +00:00
|
|
|
QLineEdit *lineEdit_Attvalue, *lineEdit_Zin, *lineEdit_Zout;
|
|
|
|
QLineEdit *lineEdit_R1, *lineEdit_R2, *lineEdit_R3, *lineEdit_Results;
|
|
|
|
QPushButton *Calculate;
|
|
|
|
QIntValidator *IntVal;
|
|
|
|
QDoubleValidator *DoubleVal;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|