You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
575 B
C++
39 lines
575 B
C++
|
|
#pragma once
|
|
|
|
#include "Defines.h"
|
|
|
|
#include "iGuiBase_global.h"
|
|
|
|
class iUnitGroup;
|
|
class iParameter;
|
|
|
|
// 绑定组数据结构
|
|
class X_GUI_BASE_EXPORT zxBindWxPair
|
|
{
|
|
public:
|
|
|
|
zxBindWxPair();
|
|
~zxBindWxPair();
|
|
|
|
public:
|
|
|
|
bool isValid() const;
|
|
int getLineEditIndex(QLineEdit* pTbx) const;
|
|
|
|
public:
|
|
|
|
QList<QPointer<QLineEdit> > listTbxValues;
|
|
QPointer<QComboBox> pCbxUnit;
|
|
|
|
iUnitGroup* pUnitGroup;
|
|
QString sBaseUnit;
|
|
QList<double> listBaseValues;
|
|
|
|
bool isUpdating;
|
|
int nCurDigit;
|
|
|
|
iParameter* pParameter;
|
|
QString sPara;
|
|
};
|