57 lines
1.3 KiB
C++
Executable File
57 lines
1.3 KiB
C++
Executable File
#ifndef WIN_TEMPLATE_H
|
|
#define WIN_TEMPLATE_H
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QGridLayout>
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
#include <QDebug>
|
|
#include <QScrollBar>
|
|
#include <QPlainTextEdit>
|
|
#include <QComboBox>
|
|
#include <QLabel>
|
|
#include <QScrollArea>
|
|
#include <QSerialPortInfo>
|
|
#include <QWidget>
|
|
#include <QListWidget>
|
|
#include <QGroupBox>
|
|
#include <QPushButton>
|
|
#include <QRadioButton>
|
|
#include "tslib.h"
|
|
#include "stepList.h"
|
|
#include "plugin.h"
|
|
#include "guidefs.h"
|
|
|
|
class T_win_template : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
QGridLayout *myLayout;
|
|
hwinf *HWaccess;
|
|
uint16_t myNextStep;
|
|
uint8_t myStep;
|
|
QLabel *lab1;
|
|
QLabel *lab2;
|
|
QLabel *lab3;
|
|
QTimer *myTO;
|
|
|
|
public:
|
|
explicit T_win_template(hwinf *HWaccess = nullptr, QWidget *parent = nullptr);
|
|
bool work_ini(uint16_t *nextScreen, uint8_t *useNavi);
|
|
// useNavi=0: no change
|
|
// bit0,1: enable/disable button "next"
|
|
// bit2,3: enable/disable button "home"
|
|
// bit4,5: enable/disable button "back"
|
|
bool working (uint16_t *nextScreen, uint8_t *useNavi);
|
|
~T_win_template();
|
|
|
|
public slots:
|
|
void Nav_back(void);
|
|
void Nav_home(void);
|
|
void Nav_next(void);
|
|
|
|
};
|
|
|
|
#endif
|