41 lines
688 B
C++
41 lines
688 B
C++
#ifndef OBTextRESULTITEM_H
|
|
#define OBTextRESULTITEM_H
|
|
|
|
#include <QObject>
|
|
#include "qmycustomplot.h"
|
|
|
|
//#define CoreWidth 0.5
|
|
//#define CoreHeight 0.05
|
|
struct Slf_TxtPOS {
|
|
int Order;
|
|
float Depth;
|
|
float CorrDepth;
|
|
};
|
|
|
|
class CObjTextResult :public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CObjTextResult();
|
|
virtual ~CObjTextResult();
|
|
|
|
virtual bool LoadFromSLF(QMyCustomPlot *widget, QString strSlfName, QString csCurve);
|
|
|
|
protected:
|
|
|
|
public:
|
|
QStringList m_FieldNameList;
|
|
QStringList m_FieldHZNameList;
|
|
QStringList m_FieldUnitList;
|
|
QStringList m_FieldHZUnitList;
|
|
|
|
QList<int> ValueTypes;
|
|
QStringList CoreValues;
|
|
|
|
int iMaxNum = 0;
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|