2011-08-04 17:58:41 +02:00
|
|
|
#ifndef INPUTCHANNELFORM_H
|
|
|
|
#define INPUTCHANNELFORM_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include "configinputwidget.h"
|
|
|
|
namespace Ui {
|
|
|
|
class inputChannelForm;
|
|
|
|
}
|
|
|
|
|
2012-04-26 13:29:00 +02:00
|
|
|
class inputChannelForm : public ConfigTaskWidget
|
2011-08-04 17:58:41 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit inputChannelForm(QWidget *parent = 0,bool showlegend=false);
|
|
|
|
~inputChannelForm();
|
|
|
|
friend class ConfigInputWidget;
|
2012-02-18 21:37:30 +01:00
|
|
|
void setName(QString &name);
|
2011-09-07 08:47:10 +02:00
|
|
|
private slots:
|
2011-09-09 07:54:47 +02:00
|
|
|
void minMaxUpdated();
|
|
|
|
void neutralUpdated(int);
|
2011-09-07 08:47:10 +02:00
|
|
|
void groupUpdated();
|
|
|
|
void channelDropdownUpdated(int);
|
|
|
|
void channelNumberUpdated(int);
|
|
|
|
|
2011-08-04 17:58:41 +02:00
|
|
|
private:
|
|
|
|
Ui::inputChannelForm *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INPUTCHANNELFORM_H
|