Files
core/HwpFile/HwpDoc/Paragraph/CtrlGeneralShape.cpp
2025-01-03 23:04:36 +03:00

217 lines
5.1 KiB
C++

#include "CtrlGeneralShape.h"
#include "CtrlShapePic.h"
#include "CtrlShapeRect.h"
#include "CtrlShapeLine.h"
#include "CtrlContainer.h"
#include "CtrlShapeEllipse.h"
#include "CtrlShapePolygon.h"
#include "CtrlShapeArc.h"
#include "CtrlShapeCurve.h"
#include "CtrlEqEdit.h"
#include "CtrlShapeOle.h"
#include "CtrlShapeVideo.h"
#include "CtrlShapeTextArt.h"
namespace HWP
{
CCtrlGeneralShape::CCtrlGeneralShape()
: m_pFill(nullptr)
{}
CCtrlGeneralShape::CCtrlGeneralShape(const HWP_STRING& sCtrlID)
: CCtrlObjElement(sCtrlID), m_pFill(nullptr)
{}
CCtrlGeneralShape::CCtrlGeneralShape(const CCtrlGeneralShape& oGeneralShape)
: CCtrlObjElement((CCtrlObjElement)oGeneralShape)
{
m_pParent = oGeneralShape.m_pParent;
m_nLineColor = oGeneralShape.m_nLineColor;
m_nLineThick = oGeneralShape.m_nLineThick;
m_eLineHead = oGeneralShape.m_eLineHead;
m_eLineTail = oGeneralShape.m_eLineTail;
m_eLineHeadSz = oGeneralShape.m_eLineHeadSz;
m_eLineTailSz = oGeneralShape.m_eLineTailSz;
m_eLineStyle = oGeneralShape.m_eLineStyle;
m_chOutline = oGeneralShape.m_chOutline;
m_nFillType = oGeneralShape.m_nFillType;
m_pFill = oGeneralShape.m_pFill;
if (nullptr != m_pFill)
m_pFill->AddRef();
m_shLeftSpace = oGeneralShape.m_shLeftSpace;
m_shRightSpace = oGeneralShape.m_shRightSpace;
m_shTopSpace = oGeneralShape.m_shTopSpace;
m_shBottomSpace = oGeneralShape.m_shBottomSpace;
m_nMaxTxtWidth = oGeneralShape.m_nMaxTxtWidth;
}
CCtrlGeneralShape::CCtrlGeneralShape(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
: CCtrlObjElement(sCtrlID, nSize, oBuffer, nOff, nVersion), m_pFill(nullptr)
{}
CCtrlGeneralShape::~CCtrlGeneralShape()
{
if (nullptr != m_pFill && 0 == m_pFill->Release())
m_pFill = nullptr;
}
void CCtrlGeneralShape::SetParent(CHWPPargraph* pParent)
{
m_pParent = pParent;
}
CHWPPargraph* CCtrlGeneralShape::GetParent()
{
return m_pParent;
}
int CCtrlGeneralShape::GetSize()
{
return m_nSize;
}
const CFill* CCtrlGeneralShape::GetFill() const
{
return m_pFill;
}
ELineStyle2 CCtrlGeneralShape::GetLineStyle() const
{
return m_eLineStyle;
}
int CCtrlGeneralShape::GetLineColor() const
{
return m_nLineColor;
}
int CCtrlGeneralShape::GetLineThick() const
{
return m_nLineThick;
}
CCtrlGeneralShape* CCtrlGeneralShape::Parse(CCtrlGeneralShape& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
oBuffer.SavePosition();
HWP_STRING sCtrlId;
oBuffer.ReadString(sCtrlId, 4, EStringCharacter::ASCII);
CCtrlGeneralShape *pShape = nullptr;
#define CREATE_AND_PARSE_SHAPE(type)\
pShape = new type(oObj); \
\
if (nullptr != pShape) \
type::ParseCtrl((type&)(*pShape), nSize - oBuffer.GetDistanceToLastPos(), oBuffer, 0, nVersion); \
else \
oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos())
if (L"cip$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapePic);
}
else if (L"cer$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeRect);
}
else if (L"nil$" == sCtrlId ||
L"loc$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeLine);
}
else if (L"noc$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlContainer);
}
else if (L"lle$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeEllipse);
}
else if (L"lop$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapePolygon);
}
else if (L"cra$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeArc);
}
else if (L"ruc$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeCurve);
}
else if (L"deqe" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlEqEdit);
}
else if (L"elo$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeOle);
}
else if (L"div$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeVideo);
}
else if (L"tat$" == sCtrlId)
{
CREATE_AND_PARSE_SHAPE(CCtrlShapeTextArt);
}
oBuffer.RemoveLastSavedPos();
return pShape;
}
int CCtrlGeneralShape::ParseListHeaderApend(CCtrlGeneralShape& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
oBuffer.SavePosition();
if (nSize >= 16)
{
oBuffer.Skip(2);
oBuffer.ReadInt(oObj.m_nCaptionAttr);
oBuffer.ReadInt(oObj.m_nCaptionWidth);
oObj.m_nCaptionSpacing = oBuffer.ReadShort();
oBuffer.ReadInt(oObj.m_nCaptionMaxW);
}
if ((nSize - oBuffer.GetDistanceToLastPos(true)) == 8)
oBuffer.Skip(8);
return nSize;
}
int CCtrlGeneralShape::ParseCtrl(CCtrlGeneralShape& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
oBuffer.SavePosition();
CCtrlObjElement::ParseCtrl(oObj, nSize, oBuffer, nOff, nVersion);
oBuffer.ReadColor(oObj.m_nLineColor);
oObj.m_nLineThick = oBuffer.ReadShort();
oBuffer.Skip(2);
int nLineAttr;
oBuffer.ReadInt(nLineAttr);
oObj.m_eLineStyle = GetLineStyle2(nLineAttr & 0x3F);
oObj.m_eLineHead = GetLineArrowStyle(((nLineAttr >> 10) & 0x3F), CHECK_FLAG(nLineAttr >> 30, 0x1));
oObj.m_eLineHeadSz = GetLineArrowSize((nLineAttr >> 22) & 0x0F);
oObj.m_eLineTail = GetLineArrowStyle(((nLineAttr >> 16) & 0x3F), CHECK_FLAG(nLineAttr >> 31, 0x1));
oObj.m_eLineTailSz = GetLineArrowSize((nLineAttr >> 26) & 0x0F);
oBuffer.ReadByte(oObj.m_chOutline);
oObj.m_pFill = new CFill(oBuffer, 0, nSize - oBuffer.GetDistanceToLastPos() - 22);
oBuffer.Skip(22);
return oBuffer.GetDistanceToLastPos(true);
}
}