##// END OF EJS Templates
First version with the Star Dundee bridge operational
First version with the Star Dundee bridge operational

File last commit:

r0:081a6eb3cced default
r1:45ff379330d3 default
Show More
qipdialogbox.h
30 lines | 549 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);
QString getGRESBIP();
signals:
public slots:
void valueChanged();
private:
QSpinBox *addressPart1;
QSpinBox *addressPart2;
QSpinBox *addressPart3;
QSpinBox *addressPart4;
//QLabel * labelGRESBIP;
QString gresbIP;
};
#endif // WIDGETADDRESS_H