mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
/***************************************************************************
|
|
transferfuncdialog.h
|
|
----------------
|
|
begin : Wed Apr 10 2014
|
|
copyright : (C) 2014 by Vadim Kuznetsov
|
|
email : ra3xdh@gmail.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 TRANSFERFUNCDIALOG_H
|
|
#define TRANSFERFUNCDIALOG_H
|
|
|
|
#include <QtGui>
|
|
#include <QtWidgets>
|
|
|
|
class TransferFuncDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
QLabel *lblA;
|
|
QLabel *lblB;
|
|
QLabel *imgTrfuncEq;
|
|
QTableWidget *tblA;
|
|
QTableWidget *tblB;
|
|
|
|
QPushButton *btnAccept;
|
|
QPushButton *btnCancel;
|
|
|
|
QHBoxLayout *top;
|
|
QVBoxLayout *top1;
|
|
QVBoxLayout *low1;
|
|
QVBoxLayout *low2;
|
|
QHBoxLayout *low3;
|
|
|
|
public:
|
|
explicit TransferFuncDialog(QVector<long double> &a, QVector<long double> &b, QWidget *parent = 0);
|
|
|
|
void getCoeffs(QVector<long double> &a, QVector<long double> &b);
|
|
|
|
signals:
|
|
|
|
private slots:
|
|
void slotCheckCoeffs();
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // TRANSFERFUNCDIALOG_H
|