qt/ledset/expertsmartpointsetwin.h
2023-03-31 18:44:09 +08:00

28 lines
684 B
C++

#ifndef EXPERTSMARTPOINTSETWIN_H
#define EXPERTSMARTPOINTSETWIN_H
#include "expertwin.h"
#include "gutil/qgui.h"
#include <QSpinBox>
#include <QComboBox>
class ExpertSmartPointSetWin : public BaseWin {
Q_OBJECT
public:
explicit ExpertSmartPointSetWin(ExpertWin *parent = nullptr);
void save();
ExpertWin *expertWin;
NumTable *table, *tableRow;
int virtualCnt = 0;
QList<QPoint> scans;
QSpinBox *fdModuleWidth, *fdModuleHeight, *fdGroupNum;
QComboBox *fdChipType, *fdDecodeMode, *fdGroupMode;
int ModuleWidth{16}, ModuleHeight{8}, GroupNum{2}, ScanNum{4};
QString ChipType, DecodeMode, GroupMode;
};
#endif // EXPERTSMARTPOINTSETWIN_H