##// END OF EJS Templates
update before compilation on pc-alison
update before compilation on pc-alison

File last commit:

r46:47a6c68a9cf9 default
r49:0d83256ac6de default
Show More
entermode.h
45 lines | 961 B | text/x-c | CLexer
#ifndef ENTERMODE_H
#define ENTERMODE_H
#include <QWidget>
#include <QPushButton>
#include <QGridLayout>
#include <QGroupBox>
#include <TC_types.h>
#include <parameterdump.h>
class EnterMode : public QWidget
{
Q_OBJECT
public:
explicit EnterMode(QWidget *parent = 0);
void sendEnterMode(unsigned char mode);
QPushButton *button_enterModeStandby;
QPushButton *button_enterModeNormal;
QPushButton *button_enterModeBurst;
QPushButton *button_enterModeSBM1;
QPushButton *button_enterModeSBM2;
QGridLayout *mainLayout;
QGridLayout *overallLayout;
QGroupBox *groupBox;
ParameterDump *parameterDump;
signals:
unsigned int WriteSPWSig(char *Value, unsigned int count, char targetLogicalAddress, char userApplication);
public slots:
void enterModeStandby();
void enterModeNormal();
void enterModeBurst();
void enterModeSBM1();
void enterModeSBM2();
};
#endif // ENTERMODE_H