2006-07-04 09:21:49 +00:00
|
|
|
/****************************************************************************
|
|
|
|
** Qucs Attenuator Synthesis
|
|
|
|
** qucsattenuator.cpp
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
**
|
|
|
|
*****************************************************************************/
|
2006-07-28 07:13:18 +00:00
|
|
|
|
2006-07-04 09:21:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "attenuatorfunc.h"
|
|
|
|
#include "qucsattenuator.h"
|
2013-05-27 01:14:03 +02:00
|
|
|
#include "helpdialog.h"
|
|
|
|
|
|
|
|
#include <QGridLayout>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QPixmap>
|
2013-05-27 01:14:03 +02:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <Q3VBoxLayout>
|
2013-05-27 01:14:03 +02:00
|
|
|
#include <Q3VBox>
|
|
|
|
#include <Q3GroupBox>
|
|
|
|
#include <Q3GridLayout>
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2013-05-27 01:14:03 +02:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QMenuBar>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QValidator>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QClipboard>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QImage>
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
QucsAttenuator::QucsAttenuator()
|
|
|
|
{
|
2013-05-27 01:14:03 +02:00
|
|
|
setWindowIcon(QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
|
|
|
|
setWindowTitle("Qucs Attenuator " PACKAGE_VERSION);
|
|
|
|
|
|
|
|
QMenu *fileMenu = new QMenu(tr("&File"));
|
|
|
|
|
|
|
|
QAction *fileQuit = new QAction(tr("&Quit"), this);
|
|
|
|
fileQuit->setShortcut(Qt::CTRL+Qt::Key_Q);
|
|
|
|
connect(fileQuit, SIGNAL(activated()), SLOT(slotQuit()));
|
|
|
|
|
|
|
|
fileMenu->addAction(fileQuit);
|
|
|
|
|
|
|
|
QMenu *helpMenu = new QMenu(tr("&Help"));
|
|
|
|
QAction *helpHelp = new QAction(tr("&Help"), this);
|
|
|
|
helpHelp->setShortcut(Qt::Key_F1);
|
|
|
|
helpMenu->addAction(helpHelp);
|
|
|
|
connect(helpHelp, SIGNAL(activated()), SLOT(slotHelpIntro()));
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2013-05-27 01:14:03 +02:00
|
|
|
helpMenu->addSeparator();
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2013-05-27 01:14:03 +02:00
|
|
|
QAction *about = new QAction(tr("About Qt..."), this);
|
|
|
|
helpMenu->addAction(about);
|
|
|
|
connect(about, SIGNAL(activated()), SLOT(slotHelpAboutQt()));
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
QMenuBar *bar = new QMenuBar(this);
|
2013-05-27 01:14:03 +02:00
|
|
|
bar->addMenu(fileMenu);
|
|
|
|
bar->addSeparator();
|
|
|
|
bar->addMenu(helpMenu);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3VBoxLayout * v2 = new Q3VBoxLayout (this);
|
|
|
|
Q3VBox * vm = new Q3VBox (this);
|
2006-07-28 07:13:18 +00:00
|
|
|
vm->setSpacing(0);
|
|
|
|
v2->setSpacing(2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
QWidget *Space = new QWidget(this); // reserve space for menubar
|
|
|
|
Space->setFixedSize(5, bar->height());
|
2006-07-28 07:13:18 +00:00
|
|
|
v2->addWidget(Space);
|
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3HBox * h1 = new Q3HBox (this);
|
2006-07-28 07:13:18 +00:00
|
|
|
v2->addWidget(h1);
|
|
|
|
h1->setSpacing(2);
|
|
|
|
h1->setMargin(5);
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3VBox * v1 = new Q3VBox (h1);
|
2006-07-28 07:13:18 +00:00
|
|
|
v1->setSpacing(2);
|
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3GroupBox * TopoGroup = new Q3GroupBox (tr("Topology"), v1);
|
|
|
|
Q3GridLayout * tbox = new Q3GridLayout(TopoGroup, 3,1,5,5);
|
2006-07-28 07:13:18 +00:00
|
|
|
|
|
|
|
QWidget *Space2 = new QWidget(TopoGroup);
|
|
|
|
Space2->setFixedSize(8, 8);
|
|
|
|
tbox->addMultiCellWidget(Space2,0,0,0,0);
|
|
|
|
|
|
|
|
ComboTopology = new QComboBox(TopoGroup);//=================Topology Combobox
|
|
|
|
ComboTopology->insertItem("Pi");
|
|
|
|
ComboTopology->insertItem("Tee");
|
|
|
|
ComboTopology->insertItem("Bridged Tee");
|
|
|
|
connect(ComboTopology, SIGNAL(activated(int)), SLOT(slotTopologyChanged()));
|
|
|
|
tbox->addWidget(ComboTopology, 1,0);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2006-07-28 07:13:18 +00:00
|
|
|
pixTopology = new QLabel(TopoGroup);//====================Pixmap for Topology
|
|
|
|
pixTopology->setPixmap(QPixmap (QImage (QucsSettings.BitmapDir + "att_pi.png")));
|
|
|
|
tbox->addMultiCellWidget(pixTopology,2,2,0,0);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3VBox * vb = new Q3VBox (h1);
|
2006-07-28 07:13:18 +00:00
|
|
|
vb->setSpacing(2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3GroupBox * InputGroup = new Q3GroupBox (tr("Input"), vb);
|
|
|
|
Q3GridLayout * ibox = new Q3GridLayout(InputGroup, 5,3,5,5);
|
2006-07-28 07:13:18 +00:00
|
|
|
ibox->addMultiCellWidget(Space2,0,0,0,2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
IntVal = new QIntValidator(this);
|
|
|
|
DoubleVal = new QDoubleValidator(this);
|
|
|
|
|
2006-07-28 07:13:18 +00:00
|
|
|
LabelAtten = new QLabel(tr("Attenuation:"), InputGroup);
|
|
|
|
ibox ->addWidget(LabelAtten, 1,0);
|
|
|
|
lineEdit_Attvalue = new QLineEdit(tr("1"), InputGroup);
|
2006-07-04 09:21:49 +00:00
|
|
|
lineEdit_Attvalue->setValidator(DoubleVal);
|
2006-07-28 07:13:18 +00:00
|
|
|
ibox->addWidget(lineEdit_Attvalue, 1,1);
|
|
|
|
QLabel *Label1 = new QLabel(tr("dB"), InputGroup);
|
|
|
|
ibox->addWidget(Label1, 1,2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2006-07-28 07:13:18 +00:00
|
|
|
LabelImp1 = new QLabel(tr("Zin:"), InputGroup);
|
|
|
|
ibox->addWidget(LabelImp1, 2,0);
|
|
|
|
lineEdit_Zin = new QLineEdit(tr("50"), InputGroup);
|
2006-07-04 09:21:49 +00:00
|
|
|
lineEdit_Zin->setValidator(DoubleVal);
|
2006-08-09 08:12:38 +00:00
|
|
|
connect(lineEdit_Zin, SIGNAL(textChanged(const QString&)), this,
|
|
|
|
SLOT(slotSetText_Zin(const QString&)) );
|
|
|
|
|
2006-07-28 07:13:18 +00:00
|
|
|
ibox->addWidget(lineEdit_Zin, 2,1);
|
|
|
|
QLabel *Label2 = new QLabel(tr("Ohm"), InputGroup);
|
|
|
|
ibox->addWidget(Label2, 2,2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2006-07-28 07:13:18 +00:00
|
|
|
LabelImp2 = new QLabel(tr("Zout:"), InputGroup);
|
|
|
|
ibox->addWidget(LabelImp2, 3,0);
|
|
|
|
lineEdit_Zout = new QLineEdit(tr("50"), InputGroup);
|
2006-07-04 09:21:49 +00:00
|
|
|
lineEdit_Zout->setValidator(DoubleVal);
|
2006-08-09 08:12:38 +00:00
|
|
|
connect(lineEdit_Zout, SIGNAL(textChanged(const QString&)), this,
|
|
|
|
SLOT(slotSetText_Zout(const QString&)) );
|
2006-07-28 07:13:18 +00:00
|
|
|
ibox->addWidget(lineEdit_Zout, 3,1);
|
|
|
|
QLabel *Label3 = new QLabel(tr("Ohm"), InputGroup);
|
|
|
|
ibox->addWidget(Label3, 3,2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
2006-07-28 07:13:18 +00:00
|
|
|
Calculate = new QPushButton(tr("Calculate and put into Clipboard"), vb);
|
2006-07-04 09:21:49 +00:00
|
|
|
connect(Calculate, SIGNAL(clicked()), SLOT(slotCalculate()));
|
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3GroupBox * OutputGroup = new Q3GroupBox (tr("Output"), vb);
|
|
|
|
Q3GridLayout * obox = new Q3GridLayout(OutputGroup, 5,3,5,5);
|
2006-07-28 07:13:18 +00:00
|
|
|
obox->addMultiCellWidget(Space2,0,0,0,2);
|
|
|
|
|
|
|
|
LabelR1 = new QLabel(tr("R1:"), OutputGroup);
|
|
|
|
obox->addWidget(LabelR1, 1,0);
|
|
|
|
lineEdit_R1 = new QLineEdit(tr("--"), OutputGroup);
|
|
|
|
obox->addWidget(lineEdit_R1, 1,1);
|
|
|
|
QLabel *Label4 = new QLabel(tr("Ohm"), OutputGroup);
|
|
|
|
obox->addWidget(Label4, 1,2);
|
|
|
|
|
|
|
|
LabelR2 = new QLabel(tr("R2:"), OutputGroup);
|
|
|
|
obox->addWidget(LabelR2, 2,0);
|
|
|
|
lineEdit_R2 = new QLineEdit(tr("--"), OutputGroup);
|
|
|
|
obox->addWidget(lineEdit_R2, 2,1);
|
|
|
|
QLabel *Label5 = new QLabel(tr("Ohm"), OutputGroup);
|
|
|
|
obox->addWidget(Label5, 2,2);
|
|
|
|
|
|
|
|
LabelR3 = new QLabel(tr("R3:"), OutputGroup);
|
|
|
|
obox->addWidget(LabelR3, 3,0);
|
|
|
|
lineEdit_R3 = new QLineEdit(tr("--"), OutputGroup);
|
|
|
|
obox->addWidget(lineEdit_R3, 3,1);
|
|
|
|
LabelR3_Ohm = new QLabel(tr("Ohm"), OutputGroup);
|
|
|
|
obox->addWidget(LabelR3_Ohm, 3,2);
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
LabelResult = new QLabel(tr("Result:"), this);
|
2006-07-28 07:13:18 +00:00
|
|
|
v2->addWidget(LabelResult);
|
2006-07-04 09:21:49 +00:00
|
|
|
LabelResult->setAlignment(Qt::AlignHCenter);
|
2006-07-28 07:13:18 +00:00
|
|
|
|
|
|
|
QWidget *Space1 = new QWidget(this); // reserve space for menubar
|
|
|
|
Space1->setFixedSize(5,5);
|
|
|
|
v2->addWidget(Space1);
|
2006-07-04 09:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QucsAttenuator::~QucsAttenuator()
|
|
|
|
{
|
|
|
|
delete IntVal;
|
|
|
|
delete DoubleVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QucsAttenuator::slotHelpIntro()
|
|
|
|
{
|
|
|
|
HelpDialog *d = new HelpDialog(this);
|
|
|
|
d->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QucsAttenuator::slotHelpAboutQt()
|
|
|
|
{
|
|
|
|
QMessageBox::aboutQt(this, tr("About Qt"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QucsAttenuator::slotHelpAbout()
|
|
|
|
{
|
|
|
|
QMessageBox::about(this, tr("About..."),
|
|
|
|
"QucsAttenuator Version " PACKAGE_VERSION+
|
|
|
|
tr("\nAttenuator synthesis program\n")+
|
|
|
|
tr("Copyright (C) 2006 by")+" Toyoyuki Ishikawa"
|
2006-07-28 07:13:18 +00:00
|
|
|
"\n"+
|
|
|
|
tr("Copyright (C) 2006 by")+" Stefan Jahn"
|
2006-07-04 09:21:49 +00:00
|
|
|
"\n"
|
|
|
|
"\nThis is free software; see the source for copying conditions."
|
|
|
|
"\nThere is NO warranty; not even for MERCHANTABILITY or "
|
|
|
|
"\nFITNESS FOR A PARTICULAR PURPOSE.\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void QucsAttenuator::slotQuit()
|
|
|
|
{
|
|
|
|
int tmp;
|
|
|
|
tmp = x();
|
|
|
|
tmp = y();
|
|
|
|
tmp = width();
|
|
|
|
tmp = height();
|
|
|
|
|
|
|
|
accept();
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
2006-08-09 08:12:38 +00:00
|
|
|
void QucsAttenuator::slotSetText_Zin( const QString &text )
|
|
|
|
{
|
|
|
|
if(ComboTopology->currentItem() == BRIDGE_TYPE) {
|
|
|
|
lineEdit_Zout->blockSignals( TRUE );
|
|
|
|
lineEdit_Zout->setText( text );
|
|
|
|
lineEdit_Zout->blockSignals( FALSE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void QucsAttenuator::slotSetText_Zout( const QString &text )
|
|
|
|
{
|
|
|
|
if(ComboTopology->currentItem() == BRIDGE_TYPE) {
|
|
|
|
lineEdit_Zin->blockSignals( TRUE );
|
|
|
|
lineEdit_Zin->setText( text );
|
|
|
|
lineEdit_Zin->blockSignals( FALSE );
|
|
|
|
}
|
|
|
|
}
|
2006-07-04 09:21:49 +00:00
|
|
|
|
|
|
|
void QucsAttenuator::slotTopologyChanged()
|
|
|
|
{
|
|
|
|
switch(ComboTopology->currentItem())
|
|
|
|
{
|
|
|
|
case PI_TYPE:
|
2006-07-28 07:13:18 +00:00
|
|
|
pixTopology->setPixmap(QPixmap(QImage(QucsSettings.BitmapDir + "att_pi.png")));
|
|
|
|
LabelR2->setText("R2:");
|
|
|
|
LabelR3->show();
|
|
|
|
lineEdit_R3->show();
|
|
|
|
LabelR3_Ohm->show();
|
2006-07-04 09:21:49 +00:00
|
|
|
break;
|
|
|
|
case TEE_TYPE:
|
2006-07-28 07:13:18 +00:00
|
|
|
pixTopology->setPixmap(QPixmap(QImage(QucsSettings.BitmapDir + "att_tee.png")));
|
|
|
|
LabelR2->setText("R2:");
|
|
|
|
LabelR3->show();
|
|
|
|
lineEdit_R3->show();
|
|
|
|
LabelR3_Ohm->show();
|
|
|
|
break;
|
|
|
|
case BRIDGE_TYPE:
|
|
|
|
pixTopology->setPixmap(QPixmap(QImage(QucsSettings.BitmapDir + "att_bridge.png")));
|
|
|
|
LabelR2->setText("R4:");
|
|
|
|
LabelR3->hide();
|
|
|
|
lineEdit_R3->hide();
|
|
|
|
LabelR3_Ohm->hide();
|
2006-08-09 08:12:38 +00:00
|
|
|
lineEdit_Zout->setText( lineEdit_Zin->text() );
|
2006-07-04 09:21:49 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-07-28 07:13:18 +00:00
|
|
|
adjustSize();
|
2006-07-04 09:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QucsAttenuator::slotCalculate()
|
|
|
|
{
|
|
|
|
QUCS_Att qatt;
|
|
|
|
int result;
|
|
|
|
QString * s = NULL;
|
|
|
|
struct tagATT Values;
|
|
|
|
|
|
|
|
|
|
|
|
Values.Topology = ComboTopology->currentItem();
|
|
|
|
Values.Attenuation = lineEdit_Attvalue->text().toDouble();
|
|
|
|
Values.Zin = lineEdit_Zin->text().toDouble();
|
|
|
|
Values.Zout = lineEdit_Zout->text().toDouble();
|
|
|
|
result = qatt.Calc(&Values);
|
|
|
|
|
|
|
|
if(result != -1)
|
|
|
|
{
|
2006-07-28 07:13:18 +00:00
|
|
|
LabelResult->setText(tr("Result:")+" "+tr("Success!"));
|
2006-07-04 09:21:49 +00:00
|
|
|
lineEdit_R1->setText(QString::number(Values.R1, 'f', 1));
|
|
|
|
lineEdit_R2->setText(QString::number(Values.R2, 'f', 1));
|
|
|
|
lineEdit_R3->setText(QString::number(Values.R3, 'f', 1));
|
|
|
|
|
|
|
|
s = qatt.createSchematic(&Values);
|
|
|
|
if(!s) return;
|
|
|
|
|
|
|
|
QClipboard *cb = QApplication::clipboard();
|
|
|
|
cb->setText(*s);
|
|
|
|
delete s;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-28 07:13:18 +00:00
|
|
|
LabelResult->setText(tr("Error: Set Attenuation more than %1 dB").arg(QString::number(Values.MinimumATT, 'f', 3)));
|
2006-07-04 09:21:49 +00:00
|
|
|
lineEdit_R1->setText("--");
|
|
|
|
lineEdit_R2->setText("--");
|
|
|
|
lineEdit_R3->setText("--");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|