Added pin point ids.
--HG-- branch : feature
This commit is contained in:
parent
3cfefbe698
commit
c5c3c73429
|
@ -29,13 +29,16 @@
|
||||||
#include <QPointF>
|
#include <QPointF>
|
||||||
|
|
||||||
#include "vgrainlinedata.h"
|
#include "vgrainlinedata.h"
|
||||||
|
#include "../ifc/ifcdef.h"
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
VGrainlineData::VGrainlineData()
|
VGrainlineData::VGrainlineData()
|
||||||
: VAbstractFloatItemData(),
|
: VAbstractFloatItemData(),
|
||||||
m_qsLength(),
|
m_qsLength(),
|
||||||
m_dRotation(),
|
m_dRotation(),
|
||||||
m_eArrowType(atBoth)
|
m_eArrowType(atBoth),
|
||||||
|
m_topPin(NULL_ID),
|
||||||
|
m_bottomPin(NULL_ID)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -77,3 +80,27 @@ void VGrainlineData::SetArrowType(ArrowType eAT)
|
||||||
{
|
{
|
||||||
m_eArrowType = eAT;
|
m_eArrowType = eAT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
quint32 VGrainlineData::TopPin() const
|
||||||
|
{
|
||||||
|
return m_topPin;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VGrainlineData::SetTopPin(const quint32 &topPin)
|
||||||
|
{
|
||||||
|
m_topPin = topPin;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
quint32 VGrainlineData::BottomPin() const
|
||||||
|
{
|
||||||
|
return m_bottomPin;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VGrainlineData::SetBottomPin(const quint32 &bottomPin)
|
||||||
|
{
|
||||||
|
m_bottomPin = bottomPin;
|
||||||
|
}
|
||||||
|
|
|
@ -62,6 +62,12 @@ public:
|
||||||
ArrowType GetArrowType() const;
|
ArrowType GetArrowType() const;
|
||||||
void SetArrowType(ArrowType eAT);
|
void SetArrowType(ArrowType eAT);
|
||||||
|
|
||||||
|
quint32 TopPin() const;
|
||||||
|
void SetTopPin(const quint32 &topPin);
|
||||||
|
|
||||||
|
quint32 BottomPin() const;
|
||||||
|
void SetBottomPin(const quint32 &bottomPin);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/** @brief m_dLength formula to calculate the length of grainline */
|
/** @brief m_dLength formula to calculate the length of grainline */
|
||||||
QString m_qsLength;
|
QString m_qsLength;
|
||||||
|
@ -69,6 +75,10 @@ private:
|
||||||
QString m_dRotation;
|
QString m_dRotation;
|
||||||
/** @brief m_eArrowType type of arrow on the grainline */
|
/** @brief m_eArrowType type of arrow on the grainline */
|
||||||
ArrowType m_eArrowType;
|
ArrowType m_eArrowType;
|
||||||
|
/** @brief m_topPin top pin id */
|
||||||
|
quint32 m_topPin;
|
||||||
|
/** @brief m_bottomPin bottom pin id */
|
||||||
|
quint32 m_bottomPin;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // VGRAINLINEGEOMETRY_H
|
#endif // VGRAINLINEGEOMETRY_H
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
*************************************************************************/
|
*************************************************************************/
|
||||||
|
|
||||||
#include "vpatternlabeldata.h"
|
#include "vpatternlabeldata.h"
|
||||||
|
#include "../ifc/ifcdef.h"
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
VPatternLabelData::VPatternLabelData()
|
VPatternLabelData::VPatternLabelData()
|
||||||
|
@ -34,7 +35,9 @@ VPatternLabelData::VPatternLabelData()
|
||||||
m_dLabelWidth(0),
|
m_dLabelWidth(0),
|
||||||
m_dLabelHeight(0),
|
m_dLabelHeight(0),
|
||||||
m_iFontSize(0),
|
m_iFontSize(0),
|
||||||
m_dRotation(0)
|
m_dRotation(0),
|
||||||
|
m_topLeftPin(NULL_ID),
|
||||||
|
m_bottomRightPin(NULL_ID)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -88,3 +91,27 @@ void VPatternLabelData::SetRotation(qreal dRot)
|
||||||
{
|
{
|
||||||
m_dRotation = dRot;
|
m_dRotation = dRot;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
quint32 VPatternLabelData::TopLeftPin() const
|
||||||
|
{
|
||||||
|
return m_topLeftPin;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VPatternLabelData::SetTopLeftPin(const quint32 &topLeftPin)
|
||||||
|
{
|
||||||
|
m_topLeftPin = topLeftPin;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
quint32 VPatternLabelData::BottomRightPin() const
|
||||||
|
{
|
||||||
|
return m_bottomRightPin;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
void VPatternLabelData::SetBottomRightPin(const quint32 &bottomRightPin)
|
||||||
|
{
|
||||||
|
m_bottomRightPin = bottomRightPin;
|
||||||
|
}
|
||||||
|
|
|
@ -55,6 +55,12 @@ public:
|
||||||
qreal GetRotation() const;
|
qreal GetRotation() const;
|
||||||
void SetRotation(qreal dRot);
|
void SetRotation(qreal dRot);
|
||||||
|
|
||||||
|
quint32 TopLeftPin() const;
|
||||||
|
void SetTopLeftPin(const quint32 &topLeftPin);
|
||||||
|
|
||||||
|
quint32 BottomRightPin() const;
|
||||||
|
void SetBottomRightPin(const quint32 &bottomRightPin);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/** @brief m_dLabelWidth label width */
|
/** @brief m_dLabelWidth label width */
|
||||||
qreal m_dLabelWidth;
|
qreal m_dLabelWidth;
|
||||||
|
@ -64,7 +70,10 @@ protected:
|
||||||
int m_iFontSize;
|
int m_iFontSize;
|
||||||
/** @brief m_dRotation label rotation */
|
/** @brief m_dRotation label rotation */
|
||||||
qreal m_dRotation;
|
qreal m_dRotation;
|
||||||
|
/** @brief m_topLeftPin top left corner pin id */
|
||||||
|
quint32 m_topLeftPin;
|
||||||
|
/** @brief m_bottomRightPin bottom right corner pin id */
|
||||||
|
quint32 m_bottomRightPin;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // VPATTERNINFOGEOMETRY_H
|
#endif // VPATTERNINFOGEOMETRY_H
|
||||||
|
|
Loading…
Reference in New Issue
Block a user