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