##// END OF EJS Templates
QSettings used in the lfrsgse to store the IP address of the echo bridge
QSettings used in the lfrsgse to store the IP address of the echo bridge

File last commit:

r28:66e3fbb189eb default
r28:66e3fbb189eb default
Show More
qipdialogbox.h
35 lines | 809 B | text/x-c | CLexer
Initial commit: rmapplugin fully operational with the GRESB Ethernet/SpaceWire bridge.
r0 #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);
Plugin modified to allow the launch of interactiv tests from the python interpreter...
r11 void setIP(unsigned char address1, unsigned char address2, unsigned char address3, unsigned char address4);
Initial commit: rmapplugin fully operational with the GRESB Ethernet/SpaceWire bridge.
r0
signals:
public slots:
void valueChanged();
Plugin modified to allow the launch of interactiv tests from the python interpreter...
r11 QString getIP();
QSettings used in the lfrsgse to store the IP address of the echo bridge
r28 unsigned char getAddressPart1();
unsigned char getAddressPart2();
unsigned char getAddressPart3();
unsigned char getAddressPart4();
Initial commit: rmapplugin fully operational with the GRESB Ethernet/SpaceWire bridge.
r0
private:
QSpinBox *addressPart1;
QSpinBox *addressPart2;
QSpinBox *addressPart3;
QSpinBox *addressPart4;
//QLabel * labelGRESBIP;
QString gresbIP;
};
#endif // WIDGETADDRESS_H