2006-07-04 09:21:49 +00:00
|
|
|
//-*- C++ -*-
|
|
|
|
/****************************************************************************
|
|
|
|
** Qucs Attenuator Synthesis
|
|
|
|
** qucsattenuator.h
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QUCSATTENUATOR_H
|
|
|
|
#define QUCSATTENUATOR_H
|
|
|
|
|
2013-06-02 11:03:29 +02:00
|
|
|
#include <QMainWindow>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QLabel>
|
2024-04-21 09:27:11 +02:00
|
|
|
#include <QCheckBox>
|
2024-04-21 11:38:46 +02:00
|
|
|
#include <QDoubleSpinBox>
|
2013-05-27 18:00:38 +02:00
|
|
|
|
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 Language;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct tQucsSettings QucsSettings;
|
|
|
|
|
2013-06-02 11:03:29 +02:00
|
|
|
class QucsAttenuator : public QMainWindow
|
2006-07-04 09:21:49 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QucsAttenuator();
|
|
|
|
~QucsAttenuator();
|
2024-04-21 11:38:46 +02:00
|
|
|
double ConvertPowerUnits(double, QString, QString);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotHelpIntro();
|
|
|
|
void slotHelpAbout();
|
|
|
|
void slotHelpAboutQt();
|
|
|
|
void slotTopologyChanged();
|
|
|
|
void slotCalculate();
|
|
|
|
void slotQuit();
|
2024-04-21 12:02:51 +02:00
|
|
|
void slotSetText_Zin(double);
|
|
|
|
void slotSetText_Zout(double);
|
2024-04-21 11:38:46 +02:00
|
|
|
void slot_ComboInputPowerUnits_Changed(const QString&);
|
|
|
|
void slot_ComboR1PowerUnits_Changed(const QString&);
|
|
|
|
void slot_ComboR2PowerUnits_Changed(const QString&);
|
|
|
|
void slot_ComboR3PowerUnits_Changed(const QString&);
|
|
|
|
void slot_ComboR4PowerUnits_Changed(const QString&);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QComboBox *ComboTopology;
|
2024-04-21 11:38:46 +02:00
|
|
|
QLabel *LabelTopology, *LabelAtten, *LabelImp1, *LabelImp2, *LabelImp2_Ohm;
|
|
|
|
QLabel *LabelR1, *LabelR2, *LabelR3, *LabelR4, *pixTopology, *LabelResult;
|
|
|
|
QLabel *LabelR3_Ohm, *LabelR4_Ohm;
|
|
|
|
QComboBox *ComboR1_PowerUnits, *ComboR2_PowerUnits, *ComboR3_PowerUnits, *ComboR4_PowerUnits, *Combo_InputPowerUnits;
|
|
|
|
QLabel *PdissLabel, *Label_Pin;
|
|
|
|
QLineEdit *lineEdit_R1, *lineEdit_R2, *lineEdit_R3, *lineEdit_R4, *lineEdit_Results;
|
|
|
|
QLineEdit *lineEdit_R1_Pdiss, *lineEdit_R2_Pdiss, *lineEdit_R3_Pdiss, *lineEdit_R4_Pdiss;
|
2024-04-21 12:02:51 +02:00
|
|
|
QDoubleSpinBox *QSpinBox_InputPower, *QSpinBox_Attvalue, *QSpinBox_Zin, *QSpinBox_Zout;
|
2006-07-04 09:21:49 +00:00
|
|
|
QPushButton *Calculate;
|
2024-04-21 11:38:46 +02:00
|
|
|
QDoubleValidator *DoubleVal, *DoubleValPower;
|
2024-04-21 10:58:42 +02:00
|
|
|
QCheckBox *SparBoxCheckbox, *minR_Reflection_Att;
|
2024-04-21 11:38:46 +02:00
|
|
|
QStringList LastUnits;
|
2006-07-04 09:21:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|