2011-08-04 17:58:41 +02:00
|
|
|
#ifndef INPUTCHANNELFORM_H
|
|
|
|
#define INPUTCHANNELFORM_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include "configinputwidget.h"
|
|
|
|
namespace Ui {
|
|
|
|
class inputChannelForm;
|
|
|
|
}
|
|
|
|
|
|
|
|
class inputChannelForm : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit inputChannelForm(QWidget *parent = 0,bool showlegend=false);
|
|
|
|
~inputChannelForm();
|
|
|
|
friend class ConfigInputWidget;
|
|
|
|
|
2011-09-07 08:47:10 +02:00
|
|
|
private slots:
|
|
|
|
void minUpdated(int);
|
|
|
|
void maxUpdated(int);
|
|
|
|
void groupUpdated();
|
|
|
|
void channelDropdownUpdated(int);
|
|
|
|
void channelNumberUpdated(int);
|
|
|
|
|
2011-08-04 17:58:41 +02:00
|
|
|
private:
|
|
|
|
Ui::inputChannelForm *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INPUTCHANNELFORM_H
|