##// END OF EJS Templates
Function added to the plugin to store packets in CSV format.
Function added to the plugin to store packets in CSV format.

File last commit:

r50:47b677d190ee default
r55:4ea52012da18 default
Show More
entermode.h
67 lines | 1.5 KiB | text/x-c | CLexer
dashboard tab added to the rmapplugin...
r46 #ifndef ENTERMODE_H
#define ENTERMODE_H
#include <QWidget>
#include <QPushButton>
#include <QGridLayout>
#include <QGroupBox>
Last comit before installation on pc-coillot
r50 #include <QVBoxLayout>
dashboard tab added to the rmapplugin...
r46
#include <TC_types.h>
#include <parameterdump.h>
Last comit before installation on pc-coillot
r50 #include <arbitrarytime.h>
dashboard tab added to the rmapplugin...
r46
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;
Last comit before installation on pc-coillot
r50 QPushButton *button_reset;
QPushButton *button_updateInfo;
QPushButton *button_enableCalibration;
QPushButton *button_disableCalibration;
QPushButton *button_updateTime;
dashboard tab added to the rmapplugin...
r46 QGridLayout *mainLayout;
QGridLayout *overallLayout;
Last comit before installation on pc-coillot
r50 QVBoxLayout *layout_updateTime;
QVBoxLayout *layout_otherTC;
dashboard tab added to the rmapplugin...
r46 QGroupBox *groupBox;
Last comit before installation on pc-coillot
r50 QGroupBox *groupBox_updateTime;
QGroupBox *groupBox_otherTC;
dashboard tab added to the rmapplugin...
r46
ParameterDump *parameterDump;
Last comit before installation on pc-coillot
r50
ArbitraryTime *arbitraryTime;
dashboard tab added to the rmapplugin...
r46
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();
Last comit before installation on pc-coillot
r50
void sendUpdateTime();
void sendReset();
void sendUpdateInfo();
void sendEnableCalibration();
void sendDisableCalibration();
dashboard tab added to the rmapplugin...
r46
};
#endif // ENTERMODE_H