##// END OF EJS Templates
Plugin modified to allow the launch of interactiv tests from the python interpreter...
Plugin modified to allow the launch of interactiv tests from the python interpreter the signal processPacketStoreNowSig is sent by the SLOT processPacketStoreLater(unsigned int delay) the SLOT WriteSPWDelay(QList<int> dataList, unsigned int delay) allows the storage of a TC for a sending after "delay" ms

File last commit:

r11:0c9852fa341b default
r11:0c9852fa341b default
Show More
qipdialogbox.h
31 lines | 657 B | text/x-c | CLexer
#ifndef WIDGETADDRESS_H
#define WIDGETADDRESS_H
#include <QWidget>
#include <QSpinBox>
#include <QString>
#include <QLabel>
class QIPDialogBox : public QWidget
{
Q_OBJECT
public:
explicit QIPDialogBox(QWidget *parent = 0);
void setIP(unsigned char address1, unsigned char address2, unsigned char address3, unsigned char address4);
signals:
public slots:
void valueChanged();
QString getIP();
private:
QSpinBox *addressPart1;
QSpinBox *addressPart2;
QSpinBox *addressPart3;
QSpinBox *addressPart4;
//QLabel * labelGRESBIP;
QString gresbIP;
};
#endif // WIDGETADDRESS_H