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
|
|
|
|
|
2013-05-28 20:00:32 +02:00
|
|
|
#include <QDialog>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QLabel>
|
2005-03-05 14:52:09 +00:00
|
|
|
|
2013-05-28 20:00:32 +02:00
|
|
|
class QGridLayout;
|
2005-03-05 14:52:09 +00:00
|
|
|
class QComboBox;
|
|
|
|
class QLineEdit;
|
|
|
|
class QLabel;
|
|
|
|
class QIntValidator;
|
|
|
|
class QDoubleValidator;
|
|
|
|
|
|
|
|
|
2005-03-19 11:51:25 +00:00
|
|
|
struct tQucsSettings {
|
|
|
|
int x, y; // position of main window
|
|
|
|
QFont font;
|
|
|
|
QString LangDir;
|
|
|
|
QString BitmapDir;
|
2006-02-14 07:25:27 +00:00
|
|
|
QString Language;
|
2005-03-19 11:51:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct tQucsSettings QucsSettings;
|
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
class QucsFilter : public QDialog
|
|
|
|
{
|
|
|
|
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();
|
|
|
|
|
|
|
|
private:
|
2005-09-12 12:01:40 +00:00
|
|
|
void setError(const QString&);
|
2006-01-09 09:51:55 +00:00
|
|
|
QString * calculateFilter(struct tFilter *);
|
2005-09-12 12:01:40 +00:00
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
int ResultState;
|
|
|
|
|
2013-05-28 20:00:32 +02:00
|
|
|
QGridLayout *gbox;
|
2006-01-09 09:51:55 +00:00
|
|
|
QComboBox *ComboType, *ComboClass, *ComboCorner, *ComboStop, *ComboBandStop;
|
2005-03-05 14:52:09 +00:00
|
|
|
QLineEdit *EditOrder, *EditCorner, *EditStop, *EditRipple, *EditImpedance;
|
2006-01-09 09:51:55 +00:00
|
|
|
QLineEdit *EditAtten, *EditBandStop;
|
|
|
|
QLabel *LabelRipple, *LabelRipple_dB, *LabelStart, *LabelStop, *LabelResult;
|
2006-01-18 07:31:58 +00:00
|
|
|
QLabel *LabelAtten, *LabelAtten_dB, *LabelBandStop, *LabelOrder;
|
2005-03-05 14:52:09 +00:00
|
|
|
QIntValidator *IntVal;
|
|
|
|
QDoubleValidator *DoubleVal;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|