qucs_s/qucs-filter/qucsfilter.h

76 lines
2.2 KiB
C
Raw Normal View History

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
#include <QDialog>
#include <QLabel>
2005-03-05 14:52:09 +00: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&);
QString * calculateFilter(struct tFilter *);
2005-09-12 12:01:40 +00:00
2005-03-05 14:52:09 +00:00
int ResultState;
QGridLayout *gbox;
QComboBox *ComboType, *ComboClass, *ComboCorner, *ComboStop, *ComboBandStop;
2005-03-05 14:52:09 +00:00
QLineEdit *EditOrder, *EditCorner, *EditStop, *EditRipple, *EditImpedance;
QLineEdit *EditAtten, *EditBandStop;
QLabel *LabelRipple, *LabelRipple_dB, *LabelStart, *LabelStop, *LabelResult;
QLabel *LabelAtten, *LabelAtten_dB, *LabelBandStop, *LabelOrder;
2005-03-05 14:52:09 +00:00
QIntValidator *IntVal;
QDoubleValidator *DoubleVal;
};
#endif