2005-03-05 14:52:09 +00:00
|
|
|
/***************************************************************************
|
|
|
|
qucsfilter.cpp
|
2005-11-28 07:17:35 +00:00
|
|
|
----------------
|
2005-03-05 14:52:09 +00:00
|
|
|
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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2006-01-09 09:51:55 +00:00
|
|
|
#include <math.h>
|
2006-01-27 09:20:23 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
#include <qmenubar.h>
|
|
|
|
#include <qpopupmenu.h>
|
|
|
|
#include <qmessagebox.h>
|
|
|
|
#include <qlayout.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
#include <qvalidator.h>
|
|
|
|
#include <qtimer.h>
|
2005-03-13 14:46:24 +00:00
|
|
|
#include <qclipboard.h>
|
|
|
|
#include <qapplication.h>
|
2005-03-05 14:52:09 +00:00
|
|
|
|
2006-01-09 09:51:55 +00:00
|
|
|
#include "lc_filter.h"
|
|
|
|
#include "qf_poly.h"
|
|
|
|
#include "qf_filter.h"
|
|
|
|
#include "qf_cauer.h"
|
|
|
|
#include "qucsfilter.h"
|
|
|
|
#include "helpdialog.h"
|
2005-03-13 14:46:24 +00:00
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
QucsFilter::QucsFilter()
|
|
|
|
{
|
2005-03-19 11:51:25 +00:00
|
|
|
// set application icon
|
|
|
|
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
|
2006-02-17 07:20:07 +00:00
|
|
|
setCaption("Qucs Filter " PACKAGE_VERSION);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
// -------- create menubar -------------------
|
|
|
|
QPopupMenu *fileMenu = new QPopupMenu();
|
|
|
|
fileMenu->insertItem(tr("E&xit"), this, SLOT(slotQuit()), CTRL+Key_Q);
|
|
|
|
|
|
|
|
QPopupMenu *helpMenu = new QPopupMenu();
|
|
|
|
helpMenu->insertItem(tr("Help..."), this, SLOT(slotHelpIntro()), Key_F1);
|
|
|
|
helpMenu->insertSeparator();
|
|
|
|
helpMenu->insertItem(
|
|
|
|
tr("&About QucsFilter..."), this, SLOT(slotHelpAbout()), 0);
|
|
|
|
helpMenu->insertItem(tr("About Qt..."), this, SLOT(slotHelpAboutQt()), 0);
|
|
|
|
|
|
|
|
QMenuBar *bar = new QMenuBar(this);
|
|
|
|
bar->insertItem(tr("&File"), fileMenu);
|
2006-02-17 07:20:07 +00:00
|
|
|
bar->insertSeparator ();
|
2005-03-05 14:52:09 +00:00
|
|
|
bar->insertItem(tr("&Help"), helpMenu);
|
|
|
|
|
|
|
|
|
|
|
|
// ------- create main windows widgets --------
|
|
|
|
gbox = new QGridLayout(this, 10,3,5,5);
|
|
|
|
|
|
|
|
QWidget *Space = new QWidget(this); // reserve space for menubar
|
|
|
|
Space->setFixedSize(5, bar->height());
|
|
|
|
gbox->addWidget(Space, 0,0);
|
|
|
|
|
|
|
|
QLabel *Label1 = new QLabel(tr("Filter type:"), this);
|
|
|
|
gbox->addWidget(Label1, 1,0);
|
|
|
|
ComboType = new QComboBox(this);
|
2005-09-12 12:01:40 +00:00
|
|
|
ComboType->insertItem("Bessel");
|
2005-04-08 06:30:44 +00:00
|
|
|
ComboType->insertItem("Butterworth");
|
2005-09-26 08:21:16 +00:00
|
|
|
ComboType->insertItem("Chebyshev");
|
2006-01-09 09:51:55 +00:00
|
|
|
ComboType->insertItem("Cauer");
|
2005-03-05 14:52:09 +00:00
|
|
|
gbox->addWidget(ComboType, 1,1);
|
|
|
|
connect(ComboType, SIGNAL(activated(int)), SLOT(slotTypeChanged(int)));
|
|
|
|
|
|
|
|
QLabel *Label2 = new QLabel(tr("Filter class:"), this);
|
|
|
|
gbox->addWidget(Label2, 2,0);
|
|
|
|
ComboClass = new QComboBox(this);
|
|
|
|
ComboClass->insertItem(tr("Low pass"));
|
|
|
|
ComboClass->insertItem(tr("High pass"));
|
2005-08-29 06:10:19 +00:00
|
|
|
ComboClass->insertItem(tr("Band pass"));
|
|
|
|
ComboClass->insertItem(tr("Band stop"));
|
2005-03-05 14:52:09 +00:00
|
|
|
gbox->addWidget(ComboClass, 2,1);
|
|
|
|
connect(ComboClass, SIGNAL(activated(int)), SLOT(slotClassChanged(int)));
|
|
|
|
|
2005-04-19 06:33:22 +00:00
|
|
|
IntVal = new QIntValidator(1, 200, this);
|
|
|
|
DoubleVal = new QDoubleValidator(this);
|
|
|
|
|
2006-01-18 07:31:58 +00:00
|
|
|
LabelOrder = new QLabel(tr("Order:"), this);
|
|
|
|
gbox->addWidget(LabelOrder, 3,0);
|
2005-03-05 14:52:09 +00:00
|
|
|
EditOrder = new QLineEdit("3", this);
|
|
|
|
EditOrder->setValidator(IntVal);
|
2005-04-19 06:33:22 +00:00
|
|
|
gbox->addWidget(EditOrder, 3,1);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
2005-08-29 06:10:19 +00:00
|
|
|
LabelStart = new QLabel(tr("Corner frequency:"), this);
|
|
|
|
gbox->addWidget(LabelStart, 4,0);
|
2005-03-05 14:52:09 +00:00
|
|
|
EditCorner = new QLineEdit("1", this);
|
2005-04-19 06:33:22 +00:00
|
|
|
EditCorner->setValidator(DoubleVal);
|
2005-03-05 14:52:09 +00:00
|
|
|
gbox->addWidget(EditCorner, 4,1);
|
|
|
|
ComboCorner = new QComboBox(this);
|
2005-04-08 06:30:44 +00:00
|
|
|
ComboCorner->insertItem("Hz");
|
|
|
|
ComboCorner->insertItem("kHz");
|
|
|
|
ComboCorner->insertItem("MHz");
|
|
|
|
ComboCorner->insertItem("GHz");
|
2005-03-05 14:52:09 +00:00
|
|
|
ComboCorner->setCurrentItem(3);
|
|
|
|
gbox->addWidget(ComboCorner, 4,2);
|
|
|
|
|
|
|
|
LabelStop = new QLabel(tr("Stop frequency:"), this);
|
|
|
|
gbox->addWidget(LabelStop, 5,0);
|
|
|
|
EditStop = new QLineEdit("2", this);
|
2005-04-19 06:33:22 +00:00
|
|
|
EditStop->setValidator(DoubleVal);
|
2005-03-05 14:52:09 +00:00
|
|
|
gbox->addWidget(EditStop, 5,1);
|
|
|
|
ComboStop = new QComboBox(this);
|
2005-04-08 06:30:44 +00:00
|
|
|
ComboStop->insertItem("Hz");
|
|
|
|
ComboStop->insertItem("kHz");
|
|
|
|
ComboStop->insertItem("MHz");
|
|
|
|
ComboStop->insertItem("GHz");
|
2005-03-05 14:52:09 +00:00
|
|
|
ComboStop->setCurrentItem(3);
|
|
|
|
gbox->addWidget(ComboStop, 5,2);
|
|
|
|
|
2006-01-09 09:51:55 +00:00
|
|
|
LabelBandStop = new QLabel(tr("Stop band frequency:"), this);
|
|
|
|
gbox->addWidget(LabelBandStop, 6,0);
|
|
|
|
EditBandStop = new QLineEdit("3", this);
|
|
|
|
EditBandStop->setValidator(DoubleVal);
|
|
|
|
gbox->addWidget(EditBandStop, 6,1);
|
|
|
|
ComboBandStop = new QComboBox(this);
|
|
|
|
ComboBandStop->insertItem("Hz");
|
|
|
|
ComboBandStop->insertItem("kHz");
|
|
|
|
ComboBandStop->insertItem("MHz");
|
|
|
|
ComboBandStop->insertItem("GHz");
|
|
|
|
ComboBandStop->setCurrentItem(3);
|
|
|
|
gbox->addWidget(ComboBandStop, 6,2);
|
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
LabelRipple = new QLabel(tr("Pass band ripple:"), this);
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addWidget(LabelRipple, 7,0);
|
2005-03-05 14:52:09 +00:00
|
|
|
EditRipple = new QLineEdit("1", this);
|
2005-04-19 06:33:22 +00:00
|
|
|
EditRipple->setValidator(DoubleVal);
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addWidget(EditRipple, 7,1);
|
|
|
|
LabelRipple_dB = new QLabel("dB", this);
|
|
|
|
gbox->addWidget(LabelRipple_dB, 7,2);
|
|
|
|
|
|
|
|
LabelAtten = new QLabel(tr("Stop band attenuation:"), this);
|
|
|
|
gbox->addWidget(LabelAtten, 8,0);
|
|
|
|
EditAtten = new QLineEdit("20", this);
|
|
|
|
EditAtten->setValidator(DoubleVal);
|
|
|
|
gbox->addWidget(EditAtten, 8,1);
|
|
|
|
LabelAtten_dB = new QLabel("dB", this);
|
|
|
|
gbox->addWidget(LabelAtten_dB, 8,2);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
QLabel *Label9 = new QLabel(tr("Impedance:"), this);
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addWidget(Label9, 9,0);
|
2005-03-05 14:52:09 +00:00
|
|
|
EditImpedance = new QLineEdit("50", this);
|
2005-04-19 06:33:22 +00:00
|
|
|
EditImpedance->setValidator(DoubleVal);
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addWidget(EditImpedance, 9,1);
|
2005-04-08 06:30:44 +00:00
|
|
|
QLabel *Label10 = new QLabel("Ohm", this);
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addWidget(Label10, 9,2);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
QPushButton *ButtonGo =
|
|
|
|
new QPushButton(tr("Calculate and put into Clipboard"), this);
|
|
|
|
connect(ButtonGo, SIGNAL(clicked()), SLOT(slotCalculate()));
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addMultiCellWidget(ButtonGo, 10,10,0,2);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
LabelResult = new QLabel(this);
|
|
|
|
ResultState = 100;
|
|
|
|
slotShowResult();
|
|
|
|
LabelResult->setAlignment(Qt::AlignHCenter);
|
2006-01-09 09:51:55 +00:00
|
|
|
gbox->addMultiCellWidget(LabelResult, 11,11,0,2);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
// ------- finally set initial state --------
|
|
|
|
slotTypeChanged(0);
|
|
|
|
slotClassChanged(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
QucsFilter::~QucsFilter()
|
|
|
|
{
|
|
|
|
delete gbox;
|
|
|
|
delete IntVal;
|
|
|
|
delete DoubleVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotQuit()
|
|
|
|
{
|
|
|
|
int tmp;
|
|
|
|
tmp = x(); // call size and position function in order to ...
|
|
|
|
tmp = y(); // ... set them correctly before closing the ...
|
|
|
|
tmp = width(); // dialog !!! Otherwise the frame of the window ...
|
|
|
|
tmp = height(); // ... will not be recognized (a X11 problem).
|
|
|
|
|
|
|
|
accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotHelpAbout()
|
|
|
|
{
|
|
|
|
QMessageBox::about(this, tr("About..."),
|
2006-02-17 07:20:07 +00:00
|
|
|
"QucsFilter Version " PACKAGE_VERSION+
|
2005-03-05 14:52:09 +00:00
|
|
|
tr("\nFilter synthesis program\n")+
|
2006-02-17 07:20:07 +00:00
|
|
|
tr("Copyright (C) 2005, 2006 by")+
|
|
|
|
"\nToyoyuki Ishikawa, Vincent Habchi, Michael Margraf\n"
|
2005-03-05 14:52:09 +00:00
|
|
|
"\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 QucsFilter::slotHelpAboutQt()
|
|
|
|
{
|
|
|
|
QMessageBox::aboutQt(this, tr("About Qt"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotHelpIntro()
|
|
|
|
{
|
|
|
|
HelpDialog *d = new HelpDialog(this);
|
|
|
|
d->show();
|
|
|
|
}
|
|
|
|
|
2005-09-12 12:01:40 +00:00
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::setError(const QString& Message)
|
|
|
|
{
|
|
|
|
LabelResult->setText(tr("Result:") + "<font color=\"#FF0000\"><b> " +
|
|
|
|
tr("Error") + "</b></font>");
|
|
|
|
QMessageBox::critical(this, tr("Error"), Message);
|
|
|
|
}
|
|
|
|
|
2006-01-09 09:51:55 +00:00
|
|
|
// ************************************************************
|
|
|
|
QString * QucsFilter::calculateFilter(struct tFilter * Filter)
|
|
|
|
{
|
|
|
|
QString * s = NULL;
|
|
|
|
|
|
|
|
if (Filter->Type == TYPE_CAUER) {
|
|
|
|
qf_cauer * F = NULL;
|
|
|
|
double amin, amax, fc, fs, bw, r;
|
|
|
|
fc = Filter->Frequency;
|
|
|
|
amin = Filter->Ripple;
|
|
|
|
fs = Filter->Frequency3;
|
|
|
|
r = Filter->Impedance;
|
|
|
|
amax = Filter->Attenuation;
|
|
|
|
bw = Filter->Frequency2 - fc;
|
|
|
|
|
|
|
|
switch (Filter->Class) {
|
|
|
|
case CLASS_LOWPASS:
|
|
|
|
F = new qf_cauer (amin, amax, fc, fs, r, 0, LOWPASS);
|
|
|
|
break;
|
|
|
|
case CLASS_HIGHPASS:
|
|
|
|
F = new qf_cauer (amin, amax, fc, fs, r, 0, HIGHPASS);
|
|
|
|
break;
|
|
|
|
case CLASS_BANDPASS:
|
2006-01-10 10:08:42 +00:00
|
|
|
F = new qf_cauer (amin, amax, fc + bw / 2, fs, r, bw, BANDPASS);
|
2006-01-09 09:51:55 +00:00
|
|
|
break;
|
|
|
|
case CLASS_BANDSTOP:
|
2006-01-26 07:45:04 +00:00
|
|
|
F = new qf_cauer (amin, amax, fc + bw / 2, fs, r, bw, BANDSTOP);
|
2006-01-09 09:51:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (F) {
|
2006-01-18 07:31:58 +00:00
|
|
|
//F->dump();
|
|
|
|
EditOrder->setText(QString::number(F->order()));
|
2006-01-17 12:25:42 +00:00
|
|
|
s = new QString(F->to_qucs().c_str());
|
2006-01-09 09:51:55 +00:00
|
|
|
delete F;
|
|
|
|
}
|
2006-01-17 12:25:42 +00:00
|
|
|
else {
|
|
|
|
s = NULL;
|
|
|
|
}
|
2006-01-09 09:51:55 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
s = LC_Filter::createSchematic(Filter);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotCalculate()
|
|
|
|
{
|
|
|
|
// get numerical values from input widgets
|
2006-01-09 09:51:55 +00:00
|
|
|
double CornerFreq = EditCorner->text().toDouble();
|
|
|
|
double StopFreq = EditStop->text().toDouble();
|
|
|
|
double BandStopFreq = EditBandStop->text().toDouble();
|
2005-03-05 14:52:09 +00:00
|
|
|
|
2006-01-09 09:51:55 +00:00
|
|
|
// add exponent
|
|
|
|
CornerFreq *= pow(10, double(3*ComboCorner->currentItem()));
|
|
|
|
StopFreq *= pow(10, double(3*ComboStop->currentItem()));
|
|
|
|
BandStopFreq *= pow(10, double(3*ComboBandStop->currentItem()));
|
2005-03-05 14:52:09 +00:00
|
|
|
|
2005-09-12 12:01:40 +00:00
|
|
|
tFilter Filter;
|
|
|
|
Filter.Type = ComboType->currentItem();
|
|
|
|
Filter.Class = ComboClass->currentItem();
|
|
|
|
Filter.Order = EditOrder->text().toInt();
|
|
|
|
Filter.Ripple = EditRipple->text().toDouble();
|
2006-01-09 09:51:55 +00:00
|
|
|
Filter.Attenuation = EditAtten->text().toDouble();
|
2005-09-12 12:01:40 +00:00
|
|
|
Filter.Impedance = EditImpedance->text().toDouble();
|
|
|
|
Filter.Frequency = CornerFreq;
|
|
|
|
Filter.Frequency2 = StopFreq;
|
2006-01-09 09:51:55 +00:00
|
|
|
Filter.Frequency3 = BandStopFreq;
|
2005-09-12 12:01:40 +00:00
|
|
|
|
|
|
|
if(EditStop->isEnabled())
|
|
|
|
if(Filter.Frequency >= Filter.Frequency2) {
|
|
|
|
setError(tr("Stop frequency must be greater than start frequency."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-01-26 07:45:04 +00:00
|
|
|
if(EditOrder->isEnabled()) {
|
|
|
|
if (Filter.Order < 2) {
|
|
|
|
setError(tr("Filter order must not be less than two."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(Filter.Order > 19) if(Filter.Type == TYPE_BESSEL) {
|
|
|
|
setError(tr("Bessel filter order must not be greater than 19."));
|
|
|
|
return;
|
|
|
|
}
|
2005-11-28 07:17:35 +00:00
|
|
|
}
|
|
|
|
|
2006-01-09 09:51:55 +00:00
|
|
|
QString * s = calculateFilter(&Filter);
|
2005-03-13 14:46:24 +00:00
|
|
|
if(!s) return;
|
|
|
|
|
|
|
|
// put resulting filter schematic into clipboard
|
|
|
|
QClipboard *cb = QApplication::clipboard();
|
|
|
|
cb->setText(*s);
|
|
|
|
delete s;
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
// show result for some time
|
|
|
|
ResultState = 0;
|
2005-03-13 14:46:24 +00:00
|
|
|
LabelResult->setText(tr("Result:") + "<font color=\"#008000\"><b> " +
|
2005-04-08 06:30:44 +00:00
|
|
|
tr("Successful") + "</b></font>");
|
2005-03-05 14:52:09 +00:00
|
|
|
QTimer::singleShot(500, this, SLOT(slotShowResult()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotShowResult()
|
|
|
|
{
|
|
|
|
if(ResultState > 5) {
|
|
|
|
LabelResult->setText(tr("Result: --"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int c;
|
|
|
|
ResultState++;
|
|
|
|
if(ResultState & 1) c = 0xFF;
|
|
|
|
else c = 0x80;
|
2005-03-13 14:46:24 +00:00
|
|
|
QString s = QString("<font color=\"#00%100\"><b> ").arg(c, 2, 16);
|
2005-04-08 06:30:44 +00:00
|
|
|
LabelResult->setText(tr("Result:") + s + tr("Successful") + "</b></font>");
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
c = 500;
|
|
|
|
if(ResultState > 5) c = 3000;
|
|
|
|
QTimer::singleShot(c, this, SLOT(slotShowResult()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotTypeChanged(int index)
|
|
|
|
{
|
|
|
|
switch(index) {
|
2006-01-09 09:51:55 +00:00
|
|
|
case TYPE_BESSEL:
|
|
|
|
case TYPE_BUTTERWORTH:
|
2005-03-05 14:52:09 +00:00
|
|
|
LabelRipple->setEnabled(false);
|
|
|
|
EditRipple->setEnabled(false);
|
2006-01-09 09:51:55 +00:00
|
|
|
LabelRipple_dB->setEnabled(false);
|
2005-03-05 14:52:09 +00:00
|
|
|
break;
|
2006-01-09 09:51:55 +00:00
|
|
|
case TYPE_CHEBYSHEV:
|
|
|
|
case TYPE_CAUER:
|
2005-09-12 12:01:40 +00:00
|
|
|
LabelRipple->setEnabled(true);
|
|
|
|
EditRipple->setEnabled(true);
|
2006-01-09 09:51:55 +00:00
|
|
|
LabelRipple_dB->setEnabled(true);
|
2005-09-12 12:01:40 +00:00
|
|
|
break;
|
2005-03-05 14:52:09 +00:00
|
|
|
}
|
2006-01-09 09:51:55 +00:00
|
|
|
if (index == TYPE_CAUER) {
|
2006-01-18 07:31:58 +00:00
|
|
|
LabelOrder->setEnabled(false);
|
|
|
|
EditOrder->setEnabled(false);
|
2006-01-09 09:51:55 +00:00
|
|
|
LabelAtten->setEnabled(true);
|
|
|
|
EditAtten->setEnabled(true);
|
|
|
|
LabelAtten_dB->setEnabled(true);
|
|
|
|
LabelBandStop->setEnabled(true);
|
|
|
|
EditBandStop->setEnabled(true);
|
|
|
|
ComboBandStop->setEnabled(true);
|
|
|
|
}
|
|
|
|
else {
|
2006-01-18 07:31:58 +00:00
|
|
|
LabelOrder->setEnabled(true);
|
|
|
|
EditOrder->setEnabled(true);
|
2006-01-09 09:51:55 +00:00
|
|
|
LabelAtten->setEnabled(false);
|
|
|
|
EditAtten->setEnabled(false);
|
|
|
|
LabelAtten_dB->setEnabled(false);
|
|
|
|
LabelBandStop->setEnabled(false);
|
|
|
|
EditBandStop->setEnabled(false);
|
|
|
|
ComboBandStop->setEnabled(false);
|
|
|
|
}
|
2005-03-05 14:52:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************
|
|
|
|
void QucsFilter::slotClassChanged(int index)
|
|
|
|
{
|
|
|
|
switch(index) {
|
2006-01-09 09:51:55 +00:00
|
|
|
case CLASS_LOWPASS:
|
|
|
|
case CLASS_HIGHPASS:
|
2006-01-26 07:45:04 +00:00
|
|
|
LabelStop->setEnabled(false);
|
|
|
|
EditStop->setEnabled(false);
|
|
|
|
ComboStop->setEnabled(false);
|
|
|
|
LabelStart->setText(tr("Corner frequency:"));
|
|
|
|
break;
|
2006-01-09 09:51:55 +00:00
|
|
|
case CLASS_BANDPASS:
|
|
|
|
case CLASS_BANDSTOP:
|
2006-01-26 07:45:04 +00:00
|
|
|
LabelStop->setEnabled(true);
|
|
|
|
EditStop->setEnabled(true);
|
|
|
|
ComboStop->setEnabled(true);
|
|
|
|
LabelStart->setText(tr("Start frequency:"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (index == CLASS_BANDPASS) {
|
|
|
|
LabelBandStop->setText(tr("Stop band frequency:"));
|
|
|
|
LabelRipple->setText(tr("Pass band ripple:"));
|
|
|
|
}
|
|
|
|
else if (index == CLASS_BANDSTOP) {
|
|
|
|
LabelBandStop->setText(tr("Pass band frequency:"));
|
|
|
|
LabelRipple->setText(tr("Pass band attenuation:"));
|
2005-03-05 14:52:09 +00:00
|
|
|
}
|
|
|
|
}
|