Refactoring

This commit is contained in:
Green
2025-07-06 22:53:38 +03:00
parent 2b1e5faef9
commit e025ae2779
102 changed files with 2729 additions and 1585 deletions

View File

@ -99,8 +99,8 @@ SOURCES += \
HEADERS += \ HEADERS += \
HWPFile.h \ HWPFile.h \
HwpDoc/Common/Common.h \ HwpDoc/Common/Common.h \
HwpDoc/Common/XMLNode.h \
HwpDoc/Common/WriterContext.h \ HwpDoc/Common/WriterContext.h \
HwpDoc/Common/XMLReader.h \
HwpDoc/Conversion/ConversionState.h \ HwpDoc/Conversion/ConversionState.h \
HwpDoc/Conversion/Converter2OOXML.h \ HwpDoc/Conversion/Converter2OOXML.h \
HwpDoc/Conversion/FootnoteConverter.h \ HwpDoc/Conversion/FootnoteConverter.h \

View File

@ -1,25 +0,0 @@
#ifndef XMLNODEH_H
#define XMLNODEH_H
#include "../../../DesktopEditor/xml/include/xmlutils.h"
namespace HWP
{
class CXMLNode : public XmlUtils::CXmlNode
{
public:
CXMLNode();
CXMLNode(const XmlUtils::CXmlNode& oNode);
bool GetAttributeBool(const std::wstring& wsName);
int GetAttributeColor(const std::wstring& wsName, const int& _default = 0x00000000);
CXMLNode GetChild(const std::wstring& wsName);
std::vector<CXMLNode> GetChilds();
std::vector<CXMLNode> GetChilds(const std::wstring& wsName);
};
int ConvertWidthToHWP(const std::wstring& wsValue);
int ConvertHexToInt(const std::string& wsValue, const int& _default = 0x00000000);
}
#endif // XMLNODEH_H

View File

@ -1,86 +1,142 @@
#include "XMLNode.h" #include "XMLReader.h"
namespace HWP namespace HWP
{ {
CXMLNode::CXMLNode() CXMLReader::CXMLReader()
: XmlUtils::CXmlNode()
{} {}
CXMLNode::CXMLNode(const CXmlNode& oNode) CXMLReader::CXMLReader(CXmlLiteReader& oReader)
: XmlUtils::CXmlNode(oNode) // : XmlUtils::CXmlLiteReader(oReader)
{}
bool CXMLNode::GetAttributeBool(const std::wstring& wsName)
{ {
return L"1" == XmlUtils::CXmlNode::GetAttribute(wsName, L"0"); oReader.ReadNextNode();
FromString(oReader.GetInnerXml());
} }
int CXMLNode::GetAttributeColor(const std::wstring& wsName, const int& _default) bool CXMLReader::GetBool()
{ {
return ConvertHexToInt(XmlUtils::CXmlNode::GetAttributeA(wsName), _default); return "1" == GetText2A();
} }
CXMLNode CXMLNode::GetChild(const std::wstring& wsName) int CXMLReader::GetColor(const int& nDefault)
{ {
return CXMLNode(XmlUtils::CXmlNode::GetNode(wsName)); return ConvertHexToInt(GetText2A(), nDefault);
} }
std::vector<CXMLNode> CXMLNode::GetChilds() int CXMLReader::GetInt()
{ {
std::vector<XmlUtils::CXmlNode> arChilds; return GetIntValue(*this);
XmlUtils::CXmlNode::GetChilds(arChilds);
std::vector<CXMLNode> arNewChilds(arChilds.size());
for (unsigned int unIndex = 0; unIndex < arChilds.size(); ++unIndex)
arNewChilds[unIndex] = CXMLNode(arChilds[unIndex]);
return arNewChilds;
} }
std::vector<CXMLNode> CXMLNode::GetChilds(const std::wstring& wsName) double CXMLReader::GetDouble()
{ {
std::vector<XmlUtils::CXmlNode> arChilds{XmlUtils::CXmlNode::GetNodes(wsName)}; return GetDoubleValue(*this);
std::vector<CXMLNode> arNewChilds(arChilds.size());
for (unsigned int unIndex = 0; unIndex < arChilds.size(); ++unIndex)
arNewChilds[unIndex] = CXMLNode(arChilds[unIndex]);
return arNewChilds;
} }
int ConvertWidthToHWP(const std::wstring& wsValue) template<typename T>
T CXMLReader::GetAttribute(const std::string& sName, T _default, T (*GetValue)(CXMLReader& oReader))
{ {
if (wsValue.empty() || L"0.1" == wsValue || L"0.1 mm" == wsValue) if (!MoveToFirstAttribute())
return _default;
T oValue = _default;
do
{
if (sName == GetNameA())
{
oValue = GetValue(*this);
break;
}
}while(MoveToNextAttribute());
MoveToElement();
return oValue;
}
int CXMLReader::GetAttributeInt(const std::string& sName, int nDefault)
{
return GetAttribute<int>(sName, nDefault, &GetIntValue);
}
bool CXMLReader::GetAttributeBool(const std::string& sName)
{
return GetAttribute<bool>(sName, false, &GetBoolValue);
}
double CXMLReader::GetAttributeDouble(const std::string& sName)
{
return GetAttribute<double>(sName, 0., &GetDoubleValue);
}
std::string CXMLReader::GetAttributeA(const std::string& sName)
{
return GetAttribute<std::string>(sName, "", &GetTextAValue);
}
std::wstring CXMLReader::GetAttribute(const std::string& sName)
{
return GetAttribute<std::wstring>(sName, L"", &GetTextValue);
}
int CXMLReader::GetIntValue(CXMLReader& oXmlReader)
{
return std::atoi(oXmlReader.GetText2A().c_str());
}
bool CXMLReader::GetBoolValue(CXMLReader& oXmlReader)
{
return "1" == oXmlReader.GetText2A();
}
double CXMLReader::GetDoubleValue(CXMLReader& oXmlReader)
{
return std::atof(oXmlReader.GetText2A().c_str());
}
std::string CXMLReader::GetTextAValue(CXMLReader& oXmlReader)
{
return oXmlReader.GetText2A();
}
std::wstring CXMLReader::GetTextValue(CXMLReader& oXmlReader)
{
return oXmlReader.GetText2();
}
int ConvertWidthToHWP(const std::string& sValue)
{
if (sValue.empty() || "0.1" == sValue || "0.1 mm" == sValue)
return 0; return 0;
else if (L"0.12" == wsValue || L"0.12 mm" == wsValue) else if ("0.12" == sValue || "0.12 mm" == sValue)
return 1; return 1;
else if (L"0.15" == wsValue || L"0.15 mm" == wsValue) else if ("0.15" == sValue || "0.15 mm" == sValue)
return 2; return 2;
else if (L"0.2" == wsValue || L"0.2 mm" == wsValue) else if ("0.2" == sValue || "0.2 mm" == sValue)
return 3; return 3;
else if (L"0.25" == wsValue || L"0.25 mm" == wsValue) else if ("0.25" == sValue || "0.25 mm" == sValue)
return 4; return 4;
else if (L"0.3" == wsValue || L"0.3 mm" == wsValue) else if ("0.3" == sValue || "0.3 mm" == sValue)
return 5; return 5;
else if (L"0.4" == wsValue || L"0.4 mm" == wsValue) else if ("0.4" == sValue || "0.4 mm" == sValue)
return 6; return 6;
else if (L"0.5" == wsValue || L"0.5 mm" == wsValue) else if ("0.5" == sValue || "0.5 mm" == sValue)
return 7; return 7;
else if (L"0.6" == wsValue || L"0.6 mm" == wsValue) else if ("0.6" == sValue || "0.6 mm" == sValue)
return 8; return 8;
else if (L"0.7" == wsValue || L"0.7 mm" == wsValue) else if ("0.7" == sValue || "0.7 mm" == sValue)
return 9; return 9;
else if (L"1.0" == wsValue || L"1.0 mm" == wsValue) else if ("1.0" == sValue || "1.0 mm" == sValue)
return 10; return 10;
else if (L"1.5" == wsValue || L"1.5 mm" == wsValue) else if ("1.5" == sValue || "1.5 mm" == sValue)
return 11; return 11;
else if (L"2.0" == wsValue || L"2.0 mm" == wsValue) else if ("2.0" == sValue || "2.0 mm" == sValue)
return 12; return 12;
else if (L"3.0" == wsValue || L"3.0 mm" == wsValue) else if ("3.0" == sValue || "3.0 mm" == sValue)
return 13; return 13;
else if (L"4.0" == wsValue || L"4.0 mm" == wsValue) else if ("4.0" == sValue || "4.0 mm" == sValue)
return 14; return 14;
else if (L"5.0" == wsValue || L"5.0 mm" == wsValue) else if ("5.0" == sValue || "5.0 mm" == sValue)
return 15; return 15;
return 0; return 0;

View File

@ -0,0 +1,80 @@
#ifndef XMLNODEH_H
#define XMLNODEH_H
#include "../../../DesktopEditor/xml/include/xmlutils.h"
namespace HWP
{
class CXMLReader : public XmlUtils::CXmlLiteReader
{
public:
CXMLReader();
CXMLReader(XmlUtils::CXmlLiteReader& oReader);
bool GetBool();
int GetColor(const int& nDefault = 0x000000);
int GetInt();
double GetDouble();
int GetAttributeInt(const std::string& sName, int nDefault = 0);
bool GetAttributeBool(const std::string& sName);
double GetAttributeDouble(const std::string& sName);
std::string GetAttributeA(const std::string& sName);
std::wstring GetAttribute(const std::string& sName);
private:
static int GetIntValue(CXMLReader& oXmlReader);
static bool GetBoolValue(CXMLReader& oXmlReader);
static double GetDoubleValue(CXMLReader& oXmlReader);
static std::string GetTextAValue(CXMLReader& oXmlReader);
static std::wstring GetTextValue(CXMLReader& oXmlReader);
template<typename T>
T GetAttribute(const std::string& sName, T _default, T (*GetValue)(CXMLReader& oXmlReader));
};
#define WHILE_READ_NEXT_NODE_WITH_DEPTH(xml_reader, name_depth)\
const int n##name_depth = xml_reader.GetDepth();\
while (xml_reader.ReadNextSiblingNode2(n##name_depth))
#define WHILE_READ_NEXT_NODE_WITH_DEPTH_AND_NAME(xml_reader, name_depth)\
const int n##name_depth##Depth = xml_reader.GetDepth();\
std::string sNode##name_depth##Name;\
while (xml_reader.ReadNextSiblingNode2(n##name_depth##Depth))\
{\
sNode##name_depth##Name = xml_reader.GetNameA();
#define WHILE_READ_NEXT_NODE(xml_reader) WHILE_READ_NEXT_NODE_WITH_DEPTH(xml_reader, Depth)
#define WHILE_READ_NEXT_NODE_WITH_NAME(xml_reader)\
const int nDepth = xml_reader.GetDepth();\
std::string sNodeName;\
while (xml_reader.ReadNextSiblingNode2(nDepth))\
{\
sNodeName = xml_reader.GetNameA();
#define WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(xml_reader, name_depth, node_name)\
WHILE_READ_NEXT_NODE_WITH_DEPTH(xml_reader, name_depth)\
{\
if (node_name != xml_reader.GetNameA())\
continue;
#define WHILE_READ_NEXT_NODE_WITH_ONE_NAME(xml_reader, node_name) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(xml_reader, Depth, node_name)
#define END_WHILE }
#define START_READ_ATTRIBUTES(xml_reader)\
if (xml_reader.MoveToFirstAttribute())\
{\
std::string sAttributeName{xml_reader.GetNameA()};\
do
#define END_READ_ATTRIBUTES(xml_reader)\
while(xml_reader.MoveToNextAttribute());\
xml_reader.MoveToElement();\
}
int ConvertWidthToHWP(const std::string& sValue);
int ConvertHexToInt(const std::string& sValue, const int& _default = 0x00000000);
}
#endif // XMLNODEH_H

View File

@ -182,81 +182,93 @@ bool CHWPDocInfo::Parse(CHWPStream& oBuffer, int nVersion)
return true; return true;
} }
bool CHWPDocInfo::Parse(CXMLNode& oNode, int nVersion) bool CHWPDocInfo::Parse(CXMLReader& oReader, int nVersion)
{ {
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hh:beginNum" == oChild.GetName()) if ("hh:beginNum" == sNodeName)
m_arRecords.push_back(new CHWPRecordDocumentProperties(*this, oChild, nVersion)); m_arRecords.push_back(new CHWPRecordDocumentProperties(*this, oReader, nVersion));
else if (L"hh:refList" == oChild.GetName()) else if ("hh:refList" == sNodeName)
ReadRefList(oChild, nVersion); ReadRefList(oReader, nVersion);
} }
END_WHILE
return true; return true;
} }
bool CHWPDocInfo::ReadRefList(CXMLNode& oNode, int nVersion) bool CHWPDocInfo::ReadRefList(CXMLReader& oReader, int nVersion)
{ {
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hh:fontfaces" == oChild.GetName()) if ("hh:fontfaces" == sNodeName)
{ {
for (CXMLNode& oFontFaceNode : oChild.GetChilds(L"hh:fontface")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, FontFace, "hh:fontface")
for (CXMLNode& oFontNode : oFontFaceNode.GetChilds(L"hh:font")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Font, "hh:font")
m_arFaseNames.push_back(new CHWPRecordFaceName(*this, oFontNode, nVersion)); m_arFaseNames.push_back(new CHWPRecordFaceName(*this, oReader, nVersion));
END_WHILE
END_WHILE
} }
else if (L"hh:borderFills" == oChild.GetName()) else if ("hh:borderFills" == sNodeName)
{ {
for (CXMLNode& oBorderFillNode : oChild.GetChilds(L"hh:borderFill")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, BorderFill, "hh:borderFill")
m_arBorderFills.push_back(new CHWPRecordBorderFill(*this, oBorderFillNode, nVersion)); m_arBorderFills.push_back(new CHWPRecordBorderFill(*this, oReader, nVersion));
END_WHILE
} }
else if (L"hh:charProperties" == oChild.GetName()) else if ("hh:charProperties" == sNodeName)
{ {
for (CXMLNode& oCharPrNode : oChild.GetChilds(L"hh:charPr")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, CharPr, "hh:charPr")
m_arCharShapes.push_back(new CHWPRecordCharShape(*this, oCharPrNode, nVersion)); m_arCharShapes.push_back(new CHWPRecordCharShape(*this, oReader, nVersion));
END_WHILE
} }
else if (L"hh:tabProperties" == oChild.GetName()) else if ("hh:tabProperties" == sNodeName)
{ {
for (CXMLNode& oTabPrNode : oChild.GetChilds(L"hh:tabPr")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, TabPr, "hh:tabPr")
m_arTabDefs.push_back(new CHwpRecordTabDef(*this, oTabPrNode, nVersion)); m_arTabDefs.push_back(new CHwpRecordTabDef(*this, oReader, nVersion));
END_WHILE
} }
else if (L"hh:numberings" == oChild.GetName()) else if ("hh:numberings" == sNodeName)
{ {
for (CXMLNode& oNumberingNode : oChild.GetChilds(L"hh:numbering")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Numbering, "hh:numbering")
m_arNumberings.push_back(new CHWPRecordNumbering(*this, oNumberingNode, nVersion)); m_arNumberings.push_back(new CHWPRecordNumbering(*this, oReader, nVersion));
END_WHILE
} }
else if (L"hh:bullets" == oChild.GetName()) else if ("hh:bullets" == sNodeName)
{ {
for (CXMLNode& oBulletNode : oChild.GetChilds()) WHILE_READ_NEXT_NODE_WITH_DEPTH(oReader, Bullet)
m_arBullets.push_back(new CHWPRecordBullet(*this, oBulletNode, nVersion)); m_arBullets.push_back(new CHWPRecordBullet(*this, oReader, nVersion));
} }
else if (L"hh:paraProperties" == oChild.GetName()) else if ("hh:paraProperties" == sNodeName)
{ {
for (CXMLNode& oParaPrNode : oChild.GetChilds(L"hh:paraPr")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, ParaPr, "hh:paraPr")
m_arParaShapes.push_back(new CHWPRecordParaShape(*this, oParaPrNode, nVersion)); m_arParaShapes.push_back(new CHWPRecordParaShape(*this, oReader, nVersion));
END_WHILE
} }
else if (L"hh:styles" == oChild.GetName()) else if ("hh:styles" == sNodeName)
{ {
for (CXMLNode& oStyleNode : oChild.GetChilds(L"hh:style")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Style, "hh:style")
m_arStyles.push_back(new CHWPRecordStyle(*this, oStyleNode, nVersion)); m_arStyles.push_back(new CHWPRecordStyle(*this, oReader, nVersion));
END_WHILE
} }
} }
END_WHILE
return true; return true;
} }
bool CHWPDocInfo::ReadContentHpf(CXMLNode& oNode, int nVersion) bool CHWPDocInfo::ReadContentHpf(CXMLReader& oReader, int nVersion)
{ {
CHWPRecordBinData *pRecordBinData = nullptr; CHWPRecordBinData *pRecordBinData = nullptr;
for (CXMLNode& oChild : oNode.GetChilds(L"opf:manifest")) WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "opf:manifest")
{ {
for (CXMLNode& oGrandChild : oChild.GetChilds(L"opf:item")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Item, "opf:item")
{ {
pRecordBinData = new CHWPRecordBinData(oGrandChild, nVersion); pRecordBinData = new CHWPRecordBinData(oReader, nVersion);
m_mBinDatas.insert(std::make_pair<HWP_STRING, CHWPRecord*>(pRecordBinData->GetItemID(), (HWP::CHWPRecord*)pRecordBinData)); m_mBinDatas.insert(std::make_pair<HWP_STRING, CHWPRecord*>(pRecordBinData->GetItemID(), (HWP::CHWPRecord*)pRecordBinData));
} }
END_WHILE
} }
END_WHILE
return true; return true;
} }

View File

@ -4,7 +4,7 @@
#include "HanType.h" #include "HanType.h"
#include "HWPStream.h" #include "HWPStream.h"
#include "HWPElements/HWPRecord.h" #include "HWPElements/HWPRecord.h"
#include "Common/XMLNode.h" #include "Common/XMLReader.h"
#include <map> #include <map>
@ -46,8 +46,8 @@ public:
~CHWPDocInfo(); ~CHWPDocInfo();
bool Parse(CHWPStream& oBuffer, int nVersion); bool Parse(CHWPStream& oBuffer, int nVersion);
bool Parse(CXMLNode& oNode, int nVersion); bool Parse(CXMLReader& oReader, int nVersion);
bool ReadContentHpf(CXMLNode& oNode, int nVersion); bool ReadContentHpf(CXMLReader& oReader, int nVersion);
const CHWPRecord* GetRecord(int nIndex) const; const CHWPRecord* GetRecord(int nIndex) const;
const CHWPRecord* GetFaceName(int nIndex) const; const CHWPRecord* GetFaceName(int nIndex) const;
@ -65,7 +65,7 @@ public:
EHanType GetHanType() const; EHanType GetHanType() const;
ECompatDoc GetCompatibleDoc() const; ECompatDoc GetCompatibleDoc() const;
private: private:
bool ReadRefList(CXMLNode& oNode, int nVersion); bool ReadRefList(CXMLReader& oReader, int nVersion);
}; };
} }

View File

@ -74,35 +74,41 @@ CHWPRecordBinData::CHWPRecordBinData(CHWPDocInfo& oDocInfo, int nTagNum, int nLe
oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true)); oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true));
} }
CHWPRecordBinData::CHWPRecordBinData(CXMLNode& oNode, int nVersion) CHWPRecordBinData::CHWPRecordBinData(CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_BIN_DATA, 0, 0) : CHWPRecord(EHWPTag::HWPTAG_BIN_DATA, 0, 0)
{ {
m_sItemID = oNode.GetAttribute(L"id"); std::string sType;
HWP_STRING sSubPath;
HWP_STRING sType = oNode.GetAttribute(L"isEmbeded"); START_READ_ATTRIBUTES(oReader)
{
if ("id" == sAttributeName)
m_sItemID = oReader.GetText2();
else if ("isEmbeded" == sAttributeName)
sType = oReader.GetText2A();
else if ("href" == sAttributeName)
m_sAPath = oReader.GetText2();
else if ("sub-path" == sAttributeName)
sSubPath = oReader.GetText2();
else if ("media-type" == sAttributeName)
{
m_sFormat = oReader.GetText2();
if (L"0" == sType) std::wregex oRegex(L"image/(.*)");
m_sFormat = std::regex_replace(m_sFormat, oRegex, L"$1");
}
}
END_READ_ATTRIBUTES(oReader)
if ("0" == sType)
{ {
m_eType = EType::LINK; m_eType = EType::LINK;
m_sAPath = oNode.GetAttribute(L"sub-path"); if (!sSubPath.empty())
m_sAPath = sSubPath;
if (m_sAPath.empty())
m_sAPath = oNode.GetAttribute(L"href");
} }
else if (L"1" == sType) else if ("1" == sType)
{
m_eType = EType::EMBEDDING; m_eType = EType::EMBEDDING;
m_sAPath = oNode.GetAttribute(L"href");
}
else
m_sAPath = oNode.GetAttribute(L"href");
m_sFormat = oNode.GetAttribute(L"media-type");
std::wregex oRegex(L"image/(.*)");
m_sFormat = std::regex_replace(m_sFormat, oRegex, L"$1");
} }
HWP_STRING CHWPRecordBinData::GetPath() const HWP_STRING CHWPRecordBinData::GetPath() const

View File

@ -4,7 +4,7 @@
#include "HWPRecord.h" #include "HWPRecord.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -44,7 +44,7 @@ class CHWPRecordBinData : public CHWPRecord
HWP_STRING m_sItemID; HWP_STRING m_sItemID;
public: public:
CHWPRecordBinData(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordBinData(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordBinData(CXMLNode& oNode, int nVersion); CHWPRecordBinData(CXMLReader& oReader, int nVersion);
HWP_STRING GetPath() const; HWP_STRING GetPath() const;
HWP_STRING GetItemID() const; HWP_STRING GetItemID() const;

View File

@ -58,19 +58,26 @@ EColorFillPattern GetColorFillPattern(int nPattern)
} }
} }
void TBorder::ReadFromNode(CXMLNode& oNode) void TBorder::Read(CXMLReader& oReader)
{ {
m_eStyle = GetLineStyle2(oNode.GetAttribute(L"type")); START_READ_ATTRIBUTES(oReader)
m_nColor = oNode.GetAttributeColor(L"color"); {
m_chWidth = (HWP_BYTE)ConvertWidthToHWP(oNode.GetAttribute(L"width")); if ("type" == sAttributeName)
m_eStyle = GetLineStyle2(oReader.GetText2());
else if ("color" == sAttributeName)
m_nColor = oReader.GetInt();
else if ("width" == sAttributeName)
m_chWidth = (HWP_BYTE)ConvertWidthToHWP(oReader.GetText2A());
}
END_READ_ATTRIBUTES(oReader)
} }
CFill::CFill() CFill::CFill()
: m_nFillType(0) : m_nFillType(0), m_eHatchStyle(EColorFillPattern::NONE), m_eMode(EImageFillType::NONE), m_chAlpha(0xff)
{} {}
CFill::CFill(CHWPStream& oBuffer, int nOff, int nSize) CFill::CFill(CHWPStream& oBuffer, int nOff, int nSize)
: m_nFillType(0) : m_nFillType(0), m_eHatchStyle(EColorFillPattern::NONE), m_eMode(EImageFillType::NONE), m_chAlpha(0xff)
{ {
oBuffer.SavePosition(); oBuffer.SavePosition();
@ -147,81 +154,122 @@ CFill::CFill(CHWPStream& oBuffer, int nOff, int nSize)
m_nSize = oBuffer.GetDistanceToLastPos(true); m_nSize = oBuffer.GetDistanceToLastPos(true);
} }
CFill::CFill(CXMLNode& oNode) CFill::CFill(CXMLReader& oReader)
: m_nFillType(0) : m_nFillType(0), m_eHatchStyle(EColorFillPattern::NONE), m_eMode(EImageFillType::NONE), m_chAlpha(0xff)
{ {
for (CXMLNode& oChild : oNode.GetChilds()) std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hc:winBrush" == oChild.GetName()) sNodeName = oReader.GetNameA();
if ("hc:winBrush" == sNodeName)
{ {
ReadWinBrush(oChild); ReadWinBrush(oReader);
m_nFillType |= 0x01; m_nFillType |= 0x01;
} }
else if (L"hc:gradation" == oChild.GetName()) else if ("hc:gradation" == sNodeName)
{ {
ReadGradation(oChild); ReadGradation(oReader);
m_nFillType |= 0x04; m_nFillType |= 0x04;
} }
else if (L"hc:imgBrush" == oChild.GetName()) else if ("hc:imgBrush" == sNodeName)
{ {
ReadImgBrush(oChild); ReadImgBrush(oReader);
m_nFillType |= 0x02; m_nFillType |= 0x02;
} }
} }
} }
void CFill::ReadWinBrush(CXMLNode& oNode) void CFill::ReadWinBrush(CXMLReader& oReader)
{ {
m_nFaceColor = oNode.GetAttributeColor(L"faceColor", 0xFFFFFFFF); m_eHatchStyle = EColorFillPattern::NONE;
m_nHatchColor = oNode.GetAttributeColor(L"hatchColor", 0x000000); m_chAlpha = 0xff;
m_eHatchStyle = GetColorFillPattern(oNode.GetAttributeInt(L"hatchStyle", -1));
m_chAlpha = (HWP_BYTE)oNode.GetAttributeInt(L"alpha", 255);
}
void CFill::ReadGradation(CXMLNode& oNode) START_READ_ATTRIBUTES(oReader)
{
m_eGradType = ::HWP::GetGradFillType(oNode.GetAttributeInt(L"type"));
m_nAngle = oNode.GetAttributeInt(L"angle");
m_nCenterX = oNode.GetAttributeInt(L"centerX");
m_nCenterY = oNode.GetAttributeInt(L"centerY");
m_nStep = oNode.GetAttributeInt(L"step");
m_nColorNum = oNode.GetAttributeInt(L"colorNum");
m_chStepCenter = (HWP_BYTE)oNode.GetAttributeInt(L"stepCenter");
m_chAlpha = (HWP_BYTE)oNode.GetAttributeInt(L"alpha", 255);
std::vector<XmlUtils::CXmlNode> arChilds;
oNode.GetNodes(L"hc:color", arChilds);
m_arColors.resize(arChilds.size());
for (unsigned int unIndex = 0; unIndex < arChilds.size(); ++unIndex)
m_arColors[unIndex] = CXMLNode(arChilds[unIndex]).GetAttributeColor(L"value");
}
void CFill::ReadImgBrush(CXMLNode& oNode)
{
m_eMode = GetImageFillType(oNode.GetAttributeInt(L"mode", (int)EImageFillType::NONE));
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hc:img" == oChild.GetName()) if ("faceColor" == sAttributeName)
m_nFaceColor = oReader.GetColor(0xFFFFFFFF);
else if ("hatchColor" == sAttributeName)
m_nHatchColor = oReader.GetColor();
else if ("hatchStyle" == sAttributeName)
m_eHatchStyle = GetColorFillPattern(oReader.GetInt());
else if ("alpha" == sAttributeName)
m_chAlpha = (HWP_BYTE)oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
void CFill::ReadGradation(CXMLReader& oReader)
{
START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
m_eGradType = ::HWP::GetGradFillType(oReader.GetInt());
else if ("angle" == sAttributeName)
m_nAngle = oReader.GetInt();
else if ("centerX" == sAttributeName)
m_nCenterX = oReader.GetInt();
else if ("centerY" == sAttributeName)
m_nCenterY = oReader.GetInt();
else if ("step" == sAttributeName)
m_nStep = oReader.GetInt();
else if ("colorNum" == sAttributeName)
m_nColorNum = oReader.GetInt();
else if ("stepCenter" == sAttributeName)
m_chStepCenter = (HWP_BYTE)oReader.GetInt();
else if ("alpha" == sAttributeName)
m_chAlpha = (HWP_BYTE)oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE(oReader)
{
if ("hc:color" != oReader.GetNameA())
continue;
START_READ_ATTRIBUTES(oReader)
{ {
m_chBright = (HWP_BYTE)oChild.GetAttributeInt(L"bright"); if ("value" != oReader.GetNameA())
m_chContrast = (HWP_BYTE)oChild.GetAttributeInt(L"contrast"); continue;
HWP_STRING sEffect = oChild.GetAttribute(L"effect"); m_arColors.push_back(oReader.GetColor());
if (L"REAL_PIC" == sEffect)
m_chEffect = 0;
else if (L"GRAY_SCALE" == sEffect)
m_chEffect = 1;
else if (L"BLACK_WHITE" == sEffect)
m_chEffect = 2;
m_sBinItemID = oChild.GetAttribute(L"binaryItemIDRef");
m_chAlpha = (HWP_BYTE)oChild.GetAttributeInt(L"alpha", 255);
} }
END_READ_ATTRIBUTES(oReader)
}
}
void CFill::ReadImgBrush(CXMLReader& oReader)
{
m_eMode = GetImageFillType(oReader.GetAttributeInt("mode"));
WHILE_READ_NEXT_NODE(oReader)
{
if ("hc:img" != oReader.GetNameA())
continue;
START_READ_ATTRIBUTES(oReader)
{
if ("bright" == sAttributeName)
m_chBright = (HWP_BYTE)oReader.GetInt();
else if ("contrast" == sAttributeName)
m_chContrast = (HWP_BYTE)oReader.GetInt();
else if ("effect" == sAttributeName)
{
const std::string sEffect{oReader.GetText2A()};
if ("REAL_PIC" == sEffect)
m_chEffect = 0;
else if ("GRAY_SCALE" == sEffect)
m_chEffect = 1;
else if ("BLACK_WHITE" == sEffect)
m_chEffect = 2;
}
else if ("binaryItemIDRef" == sAttributeName)
m_sBinItemID = oReader.GetText2();
else if ("alpha" == sAttributeName)
m_chAlpha = (HWP_BYTE)oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
@ -333,65 +381,89 @@ CHWPRecordBorderFill::CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, int nTagNum, i
m_pFill = new CFill(oBuffer, 0, 0); // TODO:: перейти от использования off и size m_pFill = new CFill(oBuffer, 0, 0); // TODO:: перейти от использования off и size
} }
CHWPRecordBorderFill::CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordBorderFill::CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_BORDER_FILL, 0, 0), m_pFill(nullptr) : CHWPRecord(EHWPTag::HWPTAG_BORDER_FILL, 0, 0), m_pFill(nullptr)
{ {
m_bThreeD = oNode.GetAttributeBool(L"threeD"); START_READ_ATTRIBUTES(oReader)
m_bShadow = oNode.GetAttributeBool(L"shadow");
m_bBreakCellSeparateLine = oNode.GetAttributeBool(L"breakCellSeparateLine");
HWP_STRING sChildName;
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hh:slash" == oChild.GetName()) if ("threeD" == sAttributeName)
m_bThreeD = oReader.GetBool();
else if ("shadow" == sAttributeName)
m_bShadow = oReader.GetBool();
else if ("breakCellSeparateLine" == sAttributeName)
m_bBreakCellSeparateLine = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{
sNodeName = oReader.GetNameA();
if ("hh:slash" == sNodeName)
{ {
HWP_STRING sType = oChild.GetAttribute(L"type"); START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"NONE" == sType) if ("NONE" == sType)
m_chSlash = 0x0; m_chSlash = 0x0;
else if (L"CENTER" == sType) else if ("CENTER" == sType)
m_chSlash = 0b010; m_chSlash = 0b010;
else if (L"CENTER_BELOW" == sType) else if ("CENTER_BELOW" == sType)
m_chSlash = 0b011; m_chSlash = 0b011;
else if (L"CENTER_ABOVE" == sType) else if ("CENTER_ABOVE" == sType)
m_chSlash = 0b110; m_chSlash = 0b110;
else if (L"ALL" == sType) else if ("ALL" == sType)
m_chSlash = 0b111; m_chSlash = 0b111;
}
m_chCrookedSlash = oChild.GetAttributeBool(L"Crooked"); else if ("Crooked" == sAttributeName)
m_bCounterSlash = oChild.GetAttributeBool(L"isCounter"); m_chCrookedSlash = oReader.GetBool();
else if ("isCounter" == sAttributeName)
m_bCounterSlash = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hh:backSlash" == oChild.GetName()) else if ("hh:backSlash" == sNodeName)
{ {
HWP_STRING sType = oChild.GetAttribute(L"type"); START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"NONE" == sType) if ("NONE" == sType)
m_chBackSlash = 0x0; m_chBackSlash = 0x0;
else if (L"CENTER" == sType) else if ("CENTER" == sType)
m_chBackSlash = 0b010; m_chBackSlash = 0b010;
else if (L"CENTER_BELOW" == sType) else if ("CENTER_BELOW" == sType)
m_chBackSlash = 0b011; m_chBackSlash = 0b011;
else if (L"CENTER_ABOVE" == sType) else if ("CENTER_ABOVE" == sType)
m_chBackSlash = 0b110; m_chBackSlash = 0b110;
else if (L"ALL" == sType) else if ("ALL" == sType)
m_chBackSlash = 0b111; m_chBackSlash = 0b111;
}
m_chCrookedBackSlash = oChild.GetAttributeBool(L"Crooked"); else if ("Crooked" == sAttributeName)
m_bCounterBackSlash = oChild.GetAttributeBool(L"isCounter"); m_chCrookedBackSlash = oReader.GetBool();
else if ("isCounter" == sAttributeName)
m_bCounterBackSlash = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hh:leftBorder" == oChild.GetName()) else if ("hh:leftBorder" == sNodeName)
m_oLeft.ReadFromNode(oChild); m_oLeft.Read(oReader);
else if (L"hh:rightBorder" == oChild.GetName()) else if ("hh:rightBorder" == sNodeName)
m_oRight.ReadFromNode(oChild); m_oRight.Read(oReader);
else if (L"hh:topBorder" == oChild.GetName()) else if ("hh:topBorder" == sNodeName)
m_oTop.ReadFromNode(oChild); m_oTop.Read(oReader);
else if (L"hh:bottomBorder" == oChild.GetName()) else if ("hh:bottomBorder" == sNodeName)
m_oBottom.ReadFromNode(oChild); m_oBottom.Read(oReader);
else if (L"hh:diagonal" == oChild.GetName()) else if ("hh:diagonal" == sNodeName)
m_oDiagonal.ReadFromNode(oChild); m_oDiagonal.Read(oReader);
else if (L"hc:fillBrush" == oChild.GetName()) else if ("hc:fillBrush" == sNodeName)
m_pFill = new CFill(oChild); m_pFill = new CFill(oReader);
} }
} }

View File

@ -4,7 +4,7 @@
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "HwpRecordTypes.h" #include "HwpRecordTypes.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
#include <vector> #include <vector>
namespace HWP namespace HWP
@ -15,7 +15,7 @@ struct TBorder
HWP_BYTE m_chWidth; HWP_BYTE m_chWidth;
int m_nColor; int m_nColor;
void ReadFromNode(CXMLNode& oNode); void Read(CXMLReader& oReader);
}; };
enum class EImageFillType enum class EImageFillType
@ -86,13 +86,13 @@ class CFill : public IRef
HWP_BYTE m_chAlpha; HWP_BYTE m_chAlpha;
void ReadWinBrush(CXMLNode& oNode); void ReadWinBrush(CXMLReader& oReader);
void ReadGradation(CXMLNode& oNode); void ReadGradation(CXMLReader& oReader);
void ReadImgBrush(CXMLNode& oNode); void ReadImgBrush(CXMLReader& oReader);
public: public:
CFill(); CFill();
CFill(CHWPStream& oBuffer, int nOff, int nSize); CFill(CHWPStream& oBuffer, int nOff, int nSize);
CFill(CXMLNode& oNode); CFill(CXMLReader& oReader);
int GetSize() const; int GetSize() const;
bool NoneFill() const; bool NoneFill() const;
@ -136,7 +136,7 @@ class CHWPRecordBorderFill : public CHWPRecord
public: public:
CHWPRecordBorderFill(int nTagNum, int nLevel, int nSize); CHWPRecordBorderFill(int nTagNum, int nLevel, int nSize);
CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordBorderFill(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
~CHWPRecordBorderFill(); ~CHWPRecordBorderFill();
TBorder GetLeftBorder() const; TBorder GetLeftBorder() const;

View File

@ -45,25 +45,43 @@ CHWPRecordBullet::CHWPRecordBullet(CHWPDocInfo& oDocInfo, int nTagNum, int nLeve
oBuffer.ReadChar(m_chCheckBulletChar); oBuffer.ReadChar(m_chCheckBulletChar);
} }
CHWPRecordBullet::CHWPRecordBullet(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordBullet::CHWPRecordBullet(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_BULLET, 0, 0), m_pParent(&oDocInfo) : CHWPRecord(EHWPTag::HWPTAG_BULLET, 0, 0), m_pParent(&oDocInfo)
{ {
std::wstring wsAttributeValue = oNode.GetAttribute(L"char"); START_READ_ATTRIBUTES(oReader)
if (!wsAttributeValue.empty())
m_chBulletChar = wsAttributeValue.at(0);
wsAttributeValue = oNode.GetAttribute(L"checkedChar");
if (!wsAttributeValue.empty())
m_chCheckBulletChar = wsAttributeValue.at(0);
m_nBulletImage = oNode.GetAttributeInt(L"useImage");
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hc:img" == oChild.GetName()) if ("char" == sAttributeName)
m_sBinItemRefID = oChild.GetAttribute(L"binaryItemIDRef"); {
const HWP_STRING wsValue{oReader.GetText2()};
if (!wsValue.empty())
m_chBulletChar = wsValue.at(0);
}
else if ("checkedChar" == sAttributeName)
{
const HWP_STRING wsValue{oReader.GetText2()};
if (!wsValue.empty())
m_chCheckBulletChar = wsValue.at(0);
}
else if ("useImage" == sAttributeName)
m_nBulletImage = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE(oReader)
{
if ("hc:img" != oReader.GetNameA())
continue;
START_READ_ATTRIBUTES(oReader)
{
if ("binaryItemIDRef" != sAttributeName)
continue;
m_sBinItemRefID = oReader.GetText2();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
} }

View File

@ -5,7 +5,7 @@
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "HWPRecordNumbering.h" #include "HWPRecordNumbering.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -24,7 +24,7 @@ class CHWPRecordBullet : public CHWPRecord
HWP_CHAR m_chCheckBulletChar; HWP_CHAR m_chCheckBulletChar;
public: public:
CHWPRecordBullet(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordBullet(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordBullet(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordBullet(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
}; };
} }

View File

@ -107,15 +107,29 @@ EShadow GetShadow(const HWP_STRING& sValue)
ELSE_STRING_IN_ENUM(NONE, EShadow); ELSE_STRING_IN_ENUM(NONE, EShadow);
} }
void CHWPRecordCharShape::ReadContainerData(CXMLNode& oNode, short arValues[], int nDefaultValue) void CHWPRecordCharShape::ReadContainerData(CXMLReader& oReader, short arValues[], int nDefaultValue)
{ {
arValues[(int)ELang::HANGUL] = oNode.GetAttributeInt(L"hangul", nDefaultValue); for (unsigned int unIndex = 0; unIndex < (int)ELang::MAX; ++unIndex)
arValues[(int)ELang::LATIN] = oNode.GetAttributeInt(L"latin", nDefaultValue); arValues[unIndex] = nDefaultValue;
arValues[(int)ELang::HANJA] = oNode.GetAttributeInt(L"hanja", nDefaultValue);
arValues[(int)ELang::JAPANESE] = oNode.GetAttributeInt(L"japanese", nDefaultValue); START_READ_ATTRIBUTES(oReader)
arValues[(int)ELang::OTHER] = oNode.GetAttributeInt(L"other", nDefaultValue); {
arValues[(int)ELang::SYMBOL] = oNode.GetAttributeInt(L"symbol", nDefaultValue); if ("hangul" == sAttributeName)
arValues[(int)ELang::USER] = oNode.GetAttributeInt(L"user", nDefaultValue); arValues[(int)ELang::HANGUL] = oReader.GetInt();
else if ("latin" == sAttributeName)
arValues[(int)ELang::LATIN] = oReader.GetInt();
else if ("hanja" == sAttributeName)
arValues[(int)ELang::HANJA] = oReader.GetInt();
else if ("japanese" == sAttributeName)
arValues[(int)ELang::JAPANESE] = oReader.GetInt();
else if ("other" == sAttributeName)
arValues[(int)ELang::OTHER] = oReader.GetInt();
else if ("symbol" == sAttributeName)
arValues[(int)ELang::SYMBOL] = oReader.GetInt();
else if ("user" == sAttributeName)
arValues[(int)ELang::USER] = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
CHWPRecordCharShape::CHWPRecordCharShape(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion) CHWPRecordCharShape::CHWPRecordCharShape(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
@ -194,101 +208,138 @@ CHWPRecordCharShape::CHWPRecordCharShape(CHWPDocInfo& oDocInfo, int nTagNum, int
oBuffer.RemoveLastSavedPos(); oBuffer.RemoveLastSavedPos();
} }
CHWPRecordCharShape::CHWPRecordCharShape(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordCharShape::CHWPRecordCharShape(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_HWP_CHAR_SHAPE, 0, 0), m_pParent(&oDocInfo), : CHWPRecord(EHWPTag::HWPTAG_HWP_CHAR_SHAPE, 0, 0), m_pParent(&oDocInfo),
m_bItalic(false), m_bBold(false), m_bEmboss(false), m_bEngrave(false), m_nHeight(1000), m_bItalic(false), m_bBold(false), m_eUnderline(EUnderline::NONE),
m_bSuperScript(false), m_bSubScript(false) m_eUnderLineShape(ELineStyle1::SOLID), m_eOutline(EOutline::NONE), m_eShadow(EShadow::NONE), m_bEmboss(false), m_bEngrave(false),
m_bSuperScript(false), m_bSubScript(false), m_eStrikeOutShape(ELineStyle2::NONE), m_nShadeColor(0xFFFFFFFF)
{ {
m_eUnderline = EUnderline::NONE; START_READ_ATTRIBUTES(oReader)
m_eUnderLineShape = ELineStyle1::SOLID;
m_eOutline = EOutline::NONE;
m_eShadow = EShadow::NONE;
m_eStrikeOutShape = ELineStyle2::NONE;
m_nHeight = oNode.GetAttributeInt(L"height", 1000);
m_nTextColor = oNode.GetAttributeColor(L"textColor", 0x000000);
m_nShadeColor = oNode.GetAttributeColor(L"shadeColor", 0xFFFFFFFF);
m_bUseFontSpace = oNode.GetAttributeBool(L"useFontSpace");
m_bUseKerning = oNode.GetAttributeBool(L"useKerning");
m_eSymMark = GetAccent(oNode.GetAttribute(L"symMark"));
m_shBorderFillIDRef = oNode.GetAttributeInt(L"borderFillIDRef");
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hh:fontRef" == oChild.GetName()) if ("height" == sAttributeName)
m_nHeight = oReader.GetInt();
else if ("textColor" == sAttributeName)
m_nTextColor = oReader.GetColor();
else if ("shadeColor" == sAttributeName)
m_nShadeColor = oReader.GetColor(0xFFFFFFFF);
else if ("useFontSpace" == sAttributeName)
m_bUseFontSpace = oReader.GetBool();
else if ("useKerning" == sAttributeName)
m_bUseKerning = oReader.GetBool();
else if ("symMark" == sAttributeName)
m_eSymMark = GetAccent(oReader.GetText2());
else if ("borderFillIDRef" == sAttributeName)
m_shBorderFillIDRef = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{
sNodeName = oReader.GetNameA();
if ("hh:fontRef" == sNodeName)
{ {
if (nullptr == m_pParent) if (nullptr == m_pParent)
continue; continue;
const CHWPRecordFaceName* pFaceName = nullptr; const CHWPRecordFaceName* pFaceName = nullptr;
#define UPDATE_FACENAME(node_name, elang_type) \ #define UPDATE_FACENAME(elang_type)\
pFaceName = dynamic_cast<const CHWPRecordFaceName*>(m_pParent->GetFaceName(oChild.GetAttributeInt(node_name))); \ {\
if (nullptr != pFaceName) \ pFaceName = dynamic_cast<const CHWPRecordFaceName*>(m_pParent->GetFaceName(oReader.GetInt()));\
m_arFontNames[(int)elang_type] = pFaceName->GetFaceName() if (nullptr != pFaceName)\
m_arFontNames[(int)elang_type] = pFaceName->GetFaceName();\
}
UPDATE_FACENAME(L"hangul", ELang::HANGUL); START_READ_ATTRIBUTES(oReader)
UPDATE_FACENAME(L"latin", ELang::LATIN); {
UPDATE_FACENAME(L"hanja", ELang::HANJA); if ("hangul" == sAttributeName)
UPDATE_FACENAME(L"japanese", ELang::JAPANESE); UPDATE_FACENAME(ELang::HANGUL)
UPDATE_FACENAME(L"other", ELang::OTHER); else if ("latin" == sAttributeName)
UPDATE_FACENAME(L"symbol", ELang::SYMBOL); UPDATE_FACENAME(ELang::LATIN)
UPDATE_FACENAME(L"user", ELang::USER); else if ("hanja" == sAttributeName)
UPDATE_FACENAME(ELang::HANJA)
else if ("japanese" == sAttributeName)
UPDATE_FACENAME(ELang::JAPANESE)
else if ("other" == sAttributeName)
UPDATE_FACENAME(ELang::OTHER)
else if ("symbol" == sAttributeName)
UPDATE_FACENAME(ELang::SYMBOL)
else if ("user" == sAttributeName)
UPDATE_FACENAME(ELang::USER)
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hh:ratio" == oChild.GetName()) else if ("hh:ratio" == sNodeName)
ReadContainerData(oChild, m_arRatios, 100); ReadContainerData(oReader, m_arRatios, 100);
else if (L"hh:spacing" == oChild.GetName()) else if ("hh:spacing" == sNodeName)
ReadContainerData(oChild, m_arSpacings); ReadContainerData(oReader, m_arSpacings);
else if (L"hh:relSz" == oChild.GetName()) else if ("hh:relSz" == sNodeName)
ReadContainerData(oChild, m_arRelSizes, 100); ReadContainerData(oReader, m_arRelSizes, 100);
else if (L"hh:offset" == oChild.GetName()) else if ("hh:offset" == sNodeName)
ReadContainerData(oChild, m_arCharOffset); ReadContainerData(oReader, m_arCharOffset);
else if (L"hh:underline" == oChild.GetName()) else if ("hh:underline" == sNodeName)
{ {
m_eUnderline = GetUnderline(oChild.GetAttribute(L"type")); START_READ_ATTRIBUTES(oReader)
m_eUnderLineShape = GetLineStyle1(oChild.GetAttribute(L"shape")); {
m_nUnderlineColor = oChild.GetAttributeColor(L"color"); if ("type" == sAttributeName)
m_eUnderline = GetUnderline(oReader.GetText2());
else if ("shape" == sAttributeName)
m_eUnderLineShape = GetLineStyle1(oReader.GetText2());
else if ("color" == sAttributeName)
m_nUnderlineColor = oReader.GetColor();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hh:strikeout" == oChild.GetName()) else if ("hh:strikeout" == sNodeName)
{ {
m_eStrikeOutShape = GetLineStyle2(oChild.GetAttribute(L"shape")); START_READ_ATTRIBUTES(oReader)
m_nStrikeOutColor = oChild.GetAttributeColor(L"color"); {
if ("shape" == sAttributeName)
m_eStrikeOutShape = GetLineStyle2(oReader.GetText2());
else if ("color" == sAttributeName)
m_nStrikeOutColor = oReader.GetColor();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hh:outline" == sNodeName)
m_eOutline = GetOutline(oReader.GetAttribute("type"));
else if ("hh:shadow" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"3D" == oChild.GetAttribute(L"shape")) if ("DROP" == sType)
m_eStrikeOutShape = ELineStyle2::NONE; m_eShadow = EShadow::DISCRETE;
else if ("CONTINUOUS" == sType)
m_eShadow = EShadow::CONTINUOUS;
else
m_eShadow = EShadow::NONE;
}
else if ("color" == sAttributeName)
m_nShadowColor = oReader.GetColor();
else if ("offsetX" == sAttributeName)
m_chShadowOffsetX = (HWP_BYTE)oReader.GetInt();
else if ("offsetY" == sAttributeName)
m_chShadowOffsetY = (HWP_BYTE)oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hh:outline" == oChild.GetName()) else if ("hh:italic" == sNodeName)
{
m_eOutline = GetOutline(oChild.GetAttribute(L"type"));
}
else if (L"hh:shadow" == oChild.GetName())
{
HWP_STRING sType = oChild.GetAttribute(L"type");
if (L"DROP" == sType)
m_eShadow = EShadow::DISCRETE;
else if (L"CONTINUOUS" == sType)
m_eShadow = EShadow::CONTINUOUS;
else
m_eShadow = EShadow::NONE;
m_nShadowColor = oChild.GetAttributeColor(L"color");
m_chShadowOffsetX = (HWP_BYTE)oChild.GetAttributeInt(L"offsetX");
m_chShadowOffsetY = (HWP_BYTE)oChild.GetAttributeInt(L"offsetY");
}
else if (L"hh:italic" == oChild.GetName())
m_bItalic = true; m_bItalic = true;
else if (L"hh:bold" == oChild.GetName()) else if ("hh:bold" == sNodeName)
m_bBold = true; m_bBold = true;
else if (L"hh:emboss" == oChild.GetName()) else if ("hh:emboss" == sNodeName)
m_bEmboss = true; m_bEmboss = true;
else if (L"hh:engrave" == oChild.GetName()) else if ("hh:engrave" == sNodeName)
m_bEmboss = true; m_bEngrave = true;
else if (L"hh:supscript" == oChild.GetName()) else if ("hh:supscript" == sNodeName)
m_bSuperScript = true; m_bSuperScript = true;
else if (L"hh:subscript" == oChild.GetName()) else if ("hh:subscript" == sNodeName)
m_bSubScript = true; m_bSubScript = true;
} }
} }

View File

@ -5,7 +5,7 @@
#include "../HWPStream.h" #include "../HWPStream.h"
#include "HWPRecord.h" #include "HWPRecord.h"
#include "HwpRecordTypes.h" #include "HwpRecordTypes.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -100,10 +100,10 @@ class CHWPRecordCharShape : public CHWPRecord
short m_shBorderFillIDRef; short m_shBorderFillIDRef;
int m_nStrikeOutColor; int m_nStrikeOutColor;
void ReadContainerData(CXMLNode& oNode, short arValues[], int nDefaultValue = 0); void ReadContainerData(CXMLReader& oReader, short arValues[], int nDefaultValue = 0);
public: public:
CHWPRecordCharShape(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordCharShape(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordCharShape(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordCharShape(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
bool Bold() const; bool Bold() const;
bool Italic() const; bool Italic() const;

View File

@ -16,14 +16,24 @@ CHWPRecordDocumentProperties::CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo
oBuffer.ReadInt(m_nCharUnitLocInPara); oBuffer.ReadInt(m_nCharUnitLocInPara);
} }
CHWPRecordDocumentProperties::CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordDocumentProperties::CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_DOCUMENT_PROPERTIES, 0, 0), m_pParent(&oDocInfo) : CHWPRecord(EHWPTag::HWPTAG_DOCUMENT_PROPERTIES, 0, 0), m_pParent(&oDocInfo)
{ {
m_shFigureStartNo = oNode.GetAttributeInt(L"page"); START_READ_ATTRIBUTES(oReader)
m_shFootNoteStartNo = oNode.GetAttributeInt(L"footnote"); {
m_shEndNoteStartNo = oNode.GetAttributeInt(L"endnote"); if ("page" == sAttributeName)
m_shFigureStartNo = oNode.GetAttributeInt(L"pic"); m_shPageStartNo = oReader.GetInt();
m_shTableStartNo = oNode.GetAttributeInt(L"tbl"); else if ("footnote" == sAttributeName)
m_shEqStartNo = oNode.GetAttributeInt(L"equation"); m_shFootNoteStartNo = oReader.GetInt();
else if ("endnote" == sAttributeName)
m_shEndNoteStartNo = oReader.GetInt();
else if ("pic" == sAttributeName)
m_shFigureStartNo = oReader.GetInt();
else if ("tbl" == sAttributeName)
m_shTableStartNo = oReader.GetInt();
else if ("equation" == sAttributeName)
m_shEqStartNo = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }

View File

@ -4,7 +4,7 @@
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "HWPRecord.h" #include "HWPRecord.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -24,7 +24,7 @@ class CHWPRecordDocumentProperties : public CHWPRecord
int m_nCharUnitLocInPara; int m_nCharUnitLocInPara;
public: public:
CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordDocumentProperties(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
}; };
} }

View File

@ -53,45 +53,72 @@ CHWPRecordFaceName::CHWPRecordFaceName(CHWPDocInfo& oDocInfo, int nTagNum, int n
oBuffer.ReadString(m_sBasicFaceName, EStringCharacter::UTF16); oBuffer.ReadString(m_sBasicFaceName, EStringCharacter::UTF16);
} }
CHWPRecordFaceName::CHWPRecordFaceName(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordFaceName::CHWPRecordFaceName(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_FACE_NAME, 0, 0), m_pParent(&oDocInfo) : CHWPRecord(EHWPTag::HWPTAG_FACE_NAME, 0, 0), m_pParent(&oDocInfo)
{ {
m_sFaceName = oNode.GetAttribute(L"face"); m_sFaceName = oReader.GetAttribute("face");
for (CXMLNode& oChild: oNode.GetChilds()) std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hh:substFont" == oChild.GetName()) sNodeName = oReader.GetNameA();
if ("hh:substFont" == sNodeName)
{ {
m_bSubstExists = true; m_bSubstExists = true;
m_sSubstFace = oChild.GetAttribute(L"face");
HWP_STRING sType = oChild.GetAttribute(L"type"); START_READ_ATTRIBUTES(oReader)
{
if ("face" == sAttributeName)
m_sSubstFace = oReader.GetText2();
else if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"TTF" == sType) if ("TTF" == sType)
m_eSubstType = EAltType::FFT; m_eSubstType = EAltType::FFT;
else if (L"HFT" == sType) else if ("HFT" == sType)
m_eSubstType = EAltType::HFT; m_eSubstType = EAltType::HFT;
else else
m_eSubstType = EAltType::UNKNOWN; m_eSubstType = EAltType::UNKNOWN;
}
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hh:typeInfo" == oChild.GetName()) else if ("hh:typeInfo" == sNodeName)
{ {
m_bAttrExists = true; m_bAttrExists = true;
m_sBasicFaceName = oChild.GetAttribute(L"familyType"); START_READ_ATTRIBUTES(oReader)
{
if ("familyType" == sAttributeName)
{
m_sBasicFaceName = oReader.GetText2();
if (!m_sBasicFaceName.empty()) if (!m_sBasicFaceName.empty())
m_bBasicFaceExists = true; m_bBasicFaceExists = true;
}
m_chSerifStyle = (HWP_BYTE)oChild.GetAttributeInt(L"serifStyle"); else if ("serifStyle" == sAttributeName)
m_shWeight = oChild.GetAttributeInt(L"weight"); m_chSerifStyle = (HWP_BYTE)oReader.GetInt();
m_shPropotion = oChild.GetAttributeInt(L"proportion"); else if ("weight" == sAttributeName)
m_shContrast = oChild.GetAttributeInt(L"contrast"); m_shWeight = oReader.GetInt();
m_shStrokeVariation = oChild.GetAttributeInt(L"strokeVariation"); else if ("proportion" == sAttributeName)
m_shArmStyle = oChild.GetAttributeInt(L"armStyle"); m_shPropotion = oReader.GetInt();
m_shLetterform = oChild.GetAttributeInt(L"letterform"); else if ("contrast" == sAttributeName)
m_shMidLine = oChild.GetAttributeInt(L"midline"); m_shContrast = oReader.GetInt();
m_shXHeight = oChild.GetAttributeInt(L"xHeight"); else if ("strokeVariation" == sAttributeName)
m_shStrokeVariation = oReader.GetInt();
else if ("armStyle" == sAttributeName)
m_shArmStyle = oReader.GetInt();
else if ("letterform" == sAttributeName)
m_shLetterform = oReader.GetInt();
else if ("midline" == sAttributeName)
m_shMidLine = oReader.GetInt();
else if ("xHeight" == sAttributeName)
m_shXHeight = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
} }

View File

@ -1,7 +1,7 @@
#ifndef HWPRECORDFACENAME_H #ifndef HWPRECORDFACENAME_H
#define HWPRECORDFACENAME_H #define HWPRECORDFACENAME_H
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "HWPRecord.h" #include "HWPRecord.h"
@ -41,7 +41,7 @@ class CHWPRecordFaceName : public CHWPRecord
short m_shXHeight; short m_shXHeight;
public: public:
CHWPRecordFaceName(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordFaceName(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordFaceName(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordFaceName(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
HWP_STRING GetFaceName() const; HWP_STRING GetFaceName() const;
}; };

View File

@ -54,52 +54,70 @@ CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, int nTagNum, int
oBuffer.RemoveLastSavedPos(); oBuffer.RemoveLastSavedPos();
} }
CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_NUMBERING, 0, 0), m_pParent(&oDocInfo) : CHWPRecord(EHWPTag::HWPTAG_NUMBERING, 0, 0), m_pParent(&oDocInfo)
{ {
m_shStart = oNode.GetAttributeInt(L"start", 1); m_shStart = oReader.GetAttributeInt("start", 1);
unsigned int unIndex = 0; unsigned int unIndex = 0;
HWP_STRING sType; short shLevel = 0;
std::string sNodeName, sNumFormat;
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hh:paraHead" == oChild.GetName() || sNodeName = oReader.GetNameA();
L"paraHead" == oChild.GetName())
if ("hh:paraHead" == sNodeName ||
"paraHead" == sNodeName)
{ {
sType = oChild.GetAttribute(L"align"); START_READ_ATTRIBUTES(oReader)
{
if ("align" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"LEFT" == sType) if ("LEFT" == sType)
m_arNumbering[unIndex].m_chAlign = 0; m_arNumbering[unIndex].m_chAlign = 0;
else if (L"CENTER" == sType) else if ("CENTER" == sType)
m_arNumbering[unIndex].m_chAlign = 1; m_arNumbering[unIndex].m_chAlign = 1;
else if (L"RIGHT" == sType) else if ("RIGHT" == sType)
m_arNumbering[unIndex].m_chAlign = 2; m_arNumbering[unIndex].m_chAlign = 2;
}
else if ("useInstWidth" == sAttributeName)
m_arNumbering[unIndex].m_bUseInstWidth = oReader.GetBool();
else if ("autoIndent" == sAttributeName)
m_arNumbering[unIndex].m_bAutoIndent = oReader.GetBool();
else if ("widthAdjust" == sAttributeName)
m_arNumbering[unIndex].m_shWidthAdjust = oReader.GetInt();
else if ("textOffsetType" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
m_arNumbering[unIndex].m_bUseInstWidth = oChild.GetAttributeBool(L"useInstWidth"); if ("PERCENT" == sType)
m_arNumbering[unIndex].m_bAutoIndent = oChild.GetAttributeBool(L"autoIndent"); m_arNumbering[unIndex].m_chTextOffsetType = 0;
m_arNumbering[unIndex].m_shWidthAdjust = oChild.GetAttributeInt(L"widthAdjust"); else if ("HWPUNIT" == sType)
m_arNumbering[unIndex].m_chTextOffsetType = 1;
}
else if ("textOffset" == sAttributeName)
m_arNumbering[unIndex].m_shTextOffset = oReader.GetInt();
else if ("charPrIDRef" == sAttributeName)
m_arNumbering[unIndex].m_nCharShape = std::abs(oReader.GetInt());
else if ("start" == sAttributeName)
m_arNumbering[unIndex].m_nStartNumber = oReader.GetInt();
else if ("numFormat" == sAttributeName)
sNumFormat = oReader.GetText2A();
else if ("level" == sAttributeName)
shLevel = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
sType = oChild.GetAttribute(L"textOffsetType"); if ("DIGIT" == sNumFormat)
if (L"PERCENT" == sType)
m_arNumbering[unIndex].m_chTextOffsetType = 0;
else if (L"HWPUNIT" == sType)
m_arNumbering[unIndex].m_chTextOffsetType = 1;
m_arNumbering[unIndex].m_shTextOffset = oChild.GetAttributeInt(L"textOffset");
short shLevel = oChild.GetAttributeInt(L"level");
sType = oChild.GetAttribute(L"numFormat");
if (L"DIGIT" == sType)
{ {
if (shLevel > 0 && shLevel < 11) if (shLevel > 0 && shLevel < 11)
m_arNumbering[unIndex].m_sNumFormat = L'^' + std::to_wstring(shLevel) + L'.'; m_arNumbering[unIndex].m_sNumFormat = L'^' + std::to_wstring(shLevel) + L'.';
} }
else if (L"HANGUL_SYLLABLE" == sType || else if ("HANGUL_SYLLABLE" == sNumFormat ||
L"HANGUL_JAMO" == sType) "HANGUL_JAMO" == sNumFormat)
{ {
switch (shLevel) switch (shLevel)
{ {
@ -115,7 +133,7 @@ CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode,
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^차."; break; case 10: m_arNumbering[unIndex].m_sNumFormat = L"^차."; break;
} }
} }
else if (L"CIRCLED_DIGIT" == sType) else if ("CIRCLED_DIGIT" == sNumFormat)
{ {
switch (shLevel) switch (shLevel)
{ {
@ -131,7 +149,7 @@ CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode,
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u2469."; break; case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u2469."; break;
} }
} }
else if (L"LATIN_SMALL" == sType) else if ("LATIN_SMALL" == sNumFormat)
{ {
switch (shLevel) switch (shLevel)
{ {
@ -147,7 +165,7 @@ CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode,
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^j."; break; case 10: m_arNumbering[unIndex].m_sNumFormat = L"^j."; break;
} }
} }
else if (L"CIRCLED_HANGUL_SYLLABLE" == sType) else if ("CIRCLED_HANGUL_SYLLABLE" == sNumFormat)
{ {
switch (shLevel) switch (shLevel)
{ {
@ -163,7 +181,7 @@ CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode,
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u3277."; break; case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u3277."; break;
} }
} }
else if (L"ROMAN_SMALL" == sType) else if ("ROMAN_SMALL" == sNumFormat)
{ {
switch (shLevel) switch (shLevel)
{ {
@ -180,8 +198,6 @@ CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode,
} }
} }
m_arNumbering[unIndex].m_nCharShape = std::abs(oChild.GetAttributeInt(L"charPrIDRef"));
m_arNumbering[unIndex].m_nStartNumber = oChild.GetAttributeInt(L"start");
++unIndex; ++unIndex;
} }

View File

@ -4,7 +4,7 @@
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "HWPRecord.h" #include "HWPRecord.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -36,7 +36,7 @@ class CHWPRecordNumbering : public CHWPRecord
int m_arExtLevelStart[3]; int m_arExtLevelStart[3];
public: public:
CHWPRecordNumbering(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordNumbering(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
short GetStart() const; short GetStart() const;
HWP_STRING GetNumFormat(unsigned short ushIndex) const; HWP_STRING GetNumFormat(unsigned short ushIndex) const;

View File

@ -131,115 +131,171 @@ CHWPRecordParaShape::CHWPRecordParaShape(CHWPDocInfo& oDocInfo, int nTagNum, int
oBuffer.Skip(8); oBuffer.Skip(8);
} }
CHWPRecordParaShape::CHWPRecordParaShape(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordParaShape::CHWPRecordParaShape(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_PARA_SHAPE, 0, 0), m_pParent(&oDocInfo), : CHWPRecord(EHWPTag::HWPTAG_PARA_SHAPE, 0, 0), m_pParent(&oDocInfo),
m_eAlign(EHorizontalAlign::JUSTIFY), m_bWidowOrphan(false), m_bKeepWithNext(false), m_eAlign(EHorizontalAlign::JUSTIFY), m_bWidowOrphan(false), m_bKeepWithNext(false),
m_bPageBreakBefore(false), m_eVertAlign(EVerticalAlign::BASELINE), m_eHeadingType(EHeadingType::NONE), m_bPageBreakBefore(false), m_eVertAlign(EVerticalAlign::BASELINE), m_eHeadingType(EHeadingType::NONE),
m_bConnect(false), m_bIgnoreMargin(false), m_bParaTailShape(false) m_bConnect(false), m_bIgnoreMargin(false), m_bParaTailShape(false)
{ {
m_shTabDef = oNode.GetAttributeInt(L"tabPrIDRef"); START_READ_ATTRIBUTES(oReader)
m_chCondense = (HWP_BYTE)oNode.GetAttributeInt(L"condense"); {
if ("tabPrIDRef" == sAttributeName)
m_shTabDef = oReader.GetInt();
else if ("condense" == sAttributeName)
m_chCondense = (HWP_BYTE)oReader.GetInt();
else if ("fontLineHeight" == sAttributeName)
m_bFontLineHeight = oReader.GetBool();
else if ("snapToGrid" == sAttributeName)
m_bSnapToGrid = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
m_bFontLineHeight = oNode.GetAttributeBool(L"fontLineHeight"); WHILE_READ_NEXT_NODE(oReader)
m_bSnapToGrid = oNode.GetAttributeBool(L"snapToGrid"); RecursiveParaShape(oReader);
for (CXMLNode& oChild : oNode.GetChilds())
RecursiveParaShape(oChild);
} }
void CHWPRecordParaShape::RecursiveParaShape(CXMLNode& oNode) void CHWPRecordParaShape::RecursiveParaShape(CXMLReader& oReader)
{ {
if (L"hh:align" == oNode.GetName()) std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
m_eAlign = ::HWP::GetHorizontalAlign(oNode.GetAttribute(L"horizontal")); sNodeName = oReader.GetNameA();
m_eVertAlign = ::HWP::GetVerticalAlign(oNode.GetAttribute(L"vertical"));
}
else if (L"hh:heading" == oNode.GetName())
{
m_eHeadingType = ::HWP::GetHeadingType(oNode.GetAttribute(L"type"));
m_shHeadingIdRef = oNode.GetAttributeInt(L"idRef");
m_chHeadingLevel = (HWP_BYTE)oNode.GetAttributeInt(L"level");
}
else if (L"hh:breakSetting" == oNode.GetName())
{
HWP_STRING sType = oNode.GetAttribute(L"breakLatinWord");
if (L"KEEP_WORD" == sType) if ("hh:align" == sNodeName)
m_chBreakLatinWord = 0; {
else if (L"BREAK_WORD" == sType) START_READ_ATTRIBUTES(oReader)
m_chBreakLatinWord = 1; {
if ("horizontal" == sAttributeName)
m_eAlign = ::HWP::GetHorizontalAlign(oReader.GetText2());
else if ("vertical" == sAttributeName)
m_eVertAlign = ::HWP::GetVerticalAlign(oReader.GetText2());
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hh:heading" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
m_eHeadingType = ::HWP::GetHeadingType(oReader.GetText2());
else if ("idRef" == sAttributeName)
m_shHeadingIdRef = oReader.GetInt();
else if ("level" == sAttributeName)
m_chHeadingLevel = (HWP_BYTE)oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hh:breakSetting" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("breakLatinWord" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
sType = oNode.GetAttribute(L"breakNonLatinWord"); if ("KEEP_WORD" == sType)
m_chBreakLatinWord = 0;
else if ("BREAK_WORD" == sType)
m_chBreakLatinWord = 1;
}
else if ("breakNonLatinWord" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"KEEP_WORD" == sType) if ("KEEP_WORD" == sType)
m_chBreakNonLatinWord = 0; m_chBreakNonLatinWord = 0;
else if (L"BREAK_WORD" == sType) else if ("BREAK_WORD" == sType)
m_chBreakNonLatinWord = 1; m_chBreakNonLatinWord = 1;
}
else if ("widowOrphan" == sAttributeName)
m_bWidowOrphan = oReader.GetBool();
else if ("keepWithNext" == sAttributeName)
m_bKeepWithNext = oReader.GetBool();
else if ("pageBreakBefore" == sAttributeName)
m_bPageBreakBefore = oReader.GetBool();
else if ("lineWrap" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
m_bWidowOrphan = oNode.GetAttributeBool(L"widowOrphan"); if ("BREAK" == sType)
m_bKeepWithNext = oNode.GetAttributeBool(L"keepWithNext"); m_chLineWrap = 0;
m_bPageBreakBefore = oNode.GetAttributeBool(L"pageBreakBefore"); else if ("SQUEEZE" == sType)
m_chLineWrap = 1;
}
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hh:lineSpacing" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
sType = oNode.GetAttribute(L"lineWrap"); if ("PERCENT" == sType)
m_nLineSpacingType = 0;
if (L"BREAK" == sType) else if ("FIXED" == sType)
m_chLineWrap = 0; m_nLineSpacingType = 1;
else if (L"SQUEEZE" == sType) else if ("BETWEENLINES" == sType)
m_chLineWrap = 1; m_nLineSpacingType = 2;
} else if ("AT_LEAST" == sType)
else if (L"hh:lineSpacing" == oNode.GetName()) m_nLineSpacingType = 4;
{ }
HWP_STRING sType = oNode.GetAttribute(L"type"); else if ("value" == sAttributeName)
m_nLineSpacing = oReader.GetInt();
if (L"PERCENT" == sType) }
m_nLineSpacingType = 0; END_READ_ATTRIBUTES(oReader)
else if (L"FIXED" == sType) }
m_nLineSpacingType = 1; else if ("hh:border" == sNodeName)
else if (L"BETWEENLINES" == sType) {
m_nLineSpacingType = 2; START_READ_ATTRIBUTES(oReader)
else if (L"AT_LEAST" == sType) {
m_nLineSpacingType = 4; if ("borderFillIDRef" == sAttributeName)
m_shBorderFill = oReader.GetInt();
m_nLineSpacing = oNode.GetAttributeInt(L"value"); else if ("offsetLeft" == sAttributeName)
} m_shOffsetLeft = oReader.GetInt();
else if (L"hh:border" == oNode.GetName()) else if ("offsetRight" == sAttributeName)
{ m_shOffsetRight = oReader.GetInt();
m_shBorderFill = oNode.GetAttributeInt(L"borderFillIDRef"); else if ("offsetTop" == sAttributeName)
m_shOffsetLeft = oNode.GetAttributeInt(L"offsetLeft"); m_shOffsetTop = oReader.GetInt();
m_shOffsetRight = oNode.GetAttributeInt(L"offsetRight"); else if ("offsetBottom" == sAttributeName)
m_shOffsetTop = oNode.GetAttributeInt(L"offsetTop"); m_shOffsetBottom = oReader.GetInt();
m_shOffsetBottom = oNode.GetAttributeInt(L"offsetBottom"); else if ("connect" == sAttributeName)
m_bConnect = oReader.GetBool();
m_bConnect = oNode.GetAttributeBool(L"connect"); else if ("ignoreMargin" == sAttributeName)
m_bIgnoreMargin = oNode.GetAttributeBool(L"ignoreMargin"); m_bIgnoreMargin = oReader.GetBool();
} }
else if (L"hh:autoSpacing" == oNode.GetName()) END_READ_ATTRIBUTES(oReader)
{ }
m_bAutoSpaceEAsianEng = oNode.GetAttributeBool(L"eAsianEng"); else if ("hh:autoSpacing" == sNodeName)
m_bAutoSpaceEAsianNum = oNode.GetAttributeBool(L"eAsianNum"); {
} START_READ_ATTRIBUTES(oReader)
else if (L"hc:intent" == oNode.GetName()) {
m_nIndent = oNode.GetAttributeInt(L"value"); if ("eAsianEng" == sAttributeName)
else if (L"hc:left" == oNode.GetName()) m_bAutoSpaceEAsianEng = oReader.GetBool();
m_nMarginLeft = oNode.GetAttributeInt(L"value"); else if ("eAsianNum" == sAttributeName)
else if (L"hc:right" == oNode.GetName()) m_bAutoSpaceEAsianNum = oReader.GetBool();
m_nMarginRight = oNode.GetAttributeInt(L"value"); }
else if (L"hc:prev" == oNode.GetName()) END_READ_ATTRIBUTES(oReader)
m_nMarginPrev = oNode.GetAttributeInt(L"value"); }
else if (L"hc:next" == oNode.GetName()) else if ("hc:intent" == sNodeName)
m_nMarginNext = oNode.GetAttributeInt(L"value"); m_nIndent = oReader.GetAttributeInt("value");
else if (/*L"hp:switch" == oNode.GetName() || else if ("hc:left" == sNodeName)
L"hp:case" == oNode.GetName() || m_nMarginLeft = oReader.GetAttributeInt("value");
L"hp:default" == oNode.GetName() ||*/ else if ("hc:right" == sNodeName)
L"hh:margin" == oNode.GetName()) m_nMarginRight = oReader.GetAttributeInt("value");
{ else if ("hc:prev" == sNodeName)
for (CXMLNode& oChild : oNode.GetChilds()) m_nMarginPrev = oReader.GetAttributeInt("value");
RecursiveParaShape(oChild); else if ("hc:next" == sNodeName)
} m_nMarginNext = oReader.GetAttributeInt("value");
else if (L"hp:switch" == oNode.GetName()) else if ("hh:margin" == sNodeName ||
{ "hp:switch" == sNodeName)
for (CXMLNode& oChild : oNode.GetChild(L"hp:default").GetChilds()) {
RecursiveParaShape(oChild); WHILE_READ_NEXT_NODE(oReader)
RecursiveParaShape(oReader);
}
} }
} }

View File

@ -3,7 +3,7 @@
#include "HWPRecord.h" #include "HWPRecord.h"
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -74,10 +74,10 @@ class CHWPRecordParaShape : public CHWPRecord
bool m_bAutoSpaceEAsianNum; bool m_bAutoSpaceEAsianNum;
int m_nLineSpacingType; int m_nLineSpacingType;
void RecursiveParaShape(CXMLNode& oNode); void RecursiveParaShape(CXMLReader& oReader);
public: public:
CHWPRecordParaShape(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordParaShape(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordParaShape(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordParaShape(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
EHorizontalAlign GetHorizantalAlign() const; EHorizontalAlign GetHorizantalAlign() const;
EVerticalAlign GetVerticalAlign() const; EVerticalAlign GetVerticalAlign() const;

View File

@ -20,23 +20,36 @@ CHWPRecordStyle::CHWPRecordStyle(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel,
m_nCharShape = oBuffer.ReadShort(); m_nCharShape = oBuffer.ReadShort();
} }
CHWPRecordStyle::CHWPRecordStyle(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHWPRecordStyle::CHWPRecordStyle(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_STYLE, 0, 0), m_pParent(&oDocInfo) : CHWPRecord(EHWPTag::HWPTAG_STYLE, 0, 0), m_pParent(&oDocInfo)
{ {
HWP_STRING sType = oNode.GetAttribute(L"type"); START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"PARA" == sType) if ("PARA" == sType)
m_chType = 0; m_chType = 0;
else if (L"CHAR" == sType) else if ("CHAR" == sType)
m_chType = 1; m_chType = 1;
}
m_sName = oNode.GetAttribute(L"name"); else if ("name" == sAttributeName)
m_sEngName = oNode.GetAttribute(L"engName"); m_sName = oReader.GetText2();
m_nParaShape = oNode.GetAttributeInt(L"paraPrIDRef"); else if ("engName" == sAttributeName)
m_nCharShape = oNode.GetAttributeInt(L"charPrIDRef"); m_sEngName = oReader.GetText2();
m_chNextStyle = oNode.GetAttributeInt(L"nextStyleIDRef"); else if ("paraPrIDRef" == sAttributeName)
m_shLangID = oNode.GetAttributeInt(L"langID"); m_nParaShape = oReader.GetInt();
m_bLockForm = oNode.GetAttributeBool(L"lockForm"); else if ("charPrIDRef" == sAttributeName)
m_nCharShape = oReader.GetInt();
else if ("nextStyleIDRef" == sAttributeName)
m_chNextStyle = oReader.GetInt();
else if ("langID" == sAttributeName)
m_shLangID = oReader.GetInt();
else if ("lockForm" == sAttributeName)
m_bLockForm = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
} }
HWP_STRING CHWPRecordStyle::GetName() const HWP_STRING CHWPRecordStyle::GetName() const

View File

@ -3,7 +3,7 @@
#include "HWPRecord.h" #include "HWPRecord.h"
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -22,7 +22,7 @@ class CHWPRecordStyle : public CHWPRecord
public: public:
CHWPRecordStyle(int nTagNum, int nLevel, int nSize); CHWPRecordStyle(int nTagNum, int nLevel, int nSize);
CHWPRecordStyle(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHWPRecordStyle(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHWPRecordStyle(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHWPRecordStyle(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
HWP_STRING GetName() const; HWP_STRING GetName() const;
HWP_STRING GetEngName() const; HWP_STRING GetEngName() const;

View File

@ -5,11 +5,18 @@ namespace HWP
TTab::TTab() TTab::TTab()
{} {}
TTab::TTab(CXMLNode& oNode) TTab::TTab(CXMLReader& oReader)
{ {
m_nPos = oNode.GetAttributeInt(L"pos"); START_READ_ATTRIBUTES(oReader)
SetType(oNode.GetAttributeInt(L"type")); {
m_eLeader = GetLineStyle2(oNode.GetAttribute(L"leader")); if ("pos" == sAttributeName)
m_nPos = oReader.GetInt();
else if ("type" == sAttributeName)
SetType(oReader.GetInt());
else if ("leader" == sAttributeName)
m_eLeader = GetLineStyle2(oReader.GetText2());
}
END_READ_ATTRIBUTES(oReader)
} }
void TTab::SetType(int nValue) void TTab::SetType(int nValue)
@ -24,7 +31,7 @@ void TTab::SetType(int nValue)
} }
CHwpRecordTabDef::CHwpRecordTabDef(int nTagNum, int nLevel, int nSize) CHwpRecordTabDef::CHwpRecordTabDef(int nTagNum, int nLevel, int nSize)
: CHWPRecord(nTagNum, nLevel, nSize), m_pParent(nullptr) : CHWPRecord(nTagNum, nLevel, nSize), m_pParent(nullptr), m_nAttr(0), m_nCount(0)
{} {}
CHwpRecordTabDef::CHwpRecordTabDef(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion) CHwpRecordTabDef::CHwpRecordTabDef(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
@ -60,25 +67,35 @@ CHwpRecordTabDef::CHwpRecordTabDef(CHWPDocInfo& oDocInfo, int nTagNum, int nLeve
oBuffer.RemoveLastSavedPos(); oBuffer.RemoveLastSavedPos();
} }
CHwpRecordTabDef::CHwpRecordTabDef(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion) CHwpRecordTabDef::CHwpRecordTabDef(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
: CHWPRecord(EHWPTag::HWPTAG_TAB_DEF, 0, 0), m_pParent(&oDocInfo) : CHWPRecord(EHWPTag::HWPTAG_TAB_DEF, 0, 0), m_pParent(&oDocInfo), m_nAttr(0), m_nCount(0)
{ {
if (oNode.GetAttributeBool(L"autoTabLeft")) START_READ_ATTRIBUTES(oReader)
m_nAttr |= 0x00000001; {
else if ("autoTabLeft" == sAttributeName)
m_nAttr &= 0xFFFFFFFE;
if (oNode.GetAttributeBool(L"autoTabRight"))
m_nAttr |= 0x00000002;
else
m_nAttr &= 0xFFFFFFFD;
for (CXMLNode& oChild : oNode.GetChilds(L"hp:switch"))
for (CXMLNode& oGrandChild : oChild.GetChilds(L"hp:default"))
{ {
CXMLNode oTabItem{oGrandChild.GetChild(L"hh:tabItem")}; if (oReader.GetBool())
m_arTabs.push_back(new TTab(oTabItem)); m_nAttr |= 0x00000001;
else
m_nAttr &= 0xFFFFFFFE;
} }
else if ("autoTabRight" == sAttributeName)
{
if (oReader.GetBool())
m_nAttr |= 0x00000002;
else
m_nAttr &= 0xFFFFFFFD;
}
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:switch")
WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Child, "hp:default")
WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, TabChild, "hh:tabItem")
m_arTabs.push_back(new TTab(oReader));
END_WHILE
END_WHILE
END_WHILE
} }
int CHwpRecordTabDef::GetCount() const int CHwpRecordTabDef::GetCount() const

View File

@ -4,7 +4,7 @@
#include "HWPRecord.h" #include "HWPRecord.h"
#include "../HWPDocInfo.h" #include "../HWPDocInfo.h"
#include "HwpRecordTypes.h" #include "HwpRecordTypes.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -22,7 +22,7 @@ struct TTab
TTab(); TTab();
TTab(CXMLNode& oNode); TTab(CXMLReader& oReader);
void SetType(int nValue); void SetType(int nValue);
}; };
@ -37,7 +37,7 @@ class CHwpRecordTabDef : public CHWPRecord
public: public:
CHwpRecordTabDef(int nTagNum, int nLevel, int nSize); CHwpRecordTabDef(int nTagNum, int nLevel, int nSize);
CHwpRecordTabDef(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CHwpRecordTabDef(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CHwpRecordTabDef(CHWPDocInfo& oDocInfo, CXMLNode& oNode, int nVersion); CHwpRecordTabDef(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion);
int GetCount() const; int GetCount() const;
const TTab* GetTab(unsigned int unIndex) const; const TTab* GetTab(unsigned int unIndex) const;

View File

@ -111,14 +111,11 @@ CHWPSection::~CHWPSection()
CLEAR_ARRAY(CHWPPargraph, m_arParas); CLEAR_ARRAY(CHWPPargraph, m_arParas);
} }
bool CHWPSection::Parse(CXMLNode& oNode, int nVersion) bool CHWPSection::Parse(CXMLReader& oReader, int nVersion)
{ {
std::vector<CXMLNode> arParagraphNodes{oNode.GetChilds(L"hp:p")}; WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:p")
m_arParas.push_back(new CHWPPargraph(oReader, nVersion));
m_arParas.resize(arParagraphNodes.size()); END_WHILE
for (unsigned int unIndex = 0; unIndex < arParagraphNodes.size(); ++unIndex)
m_arParas[unIndex] = new CHWPPargraph(arParagraphNodes[unIndex], nVersion);
return true; return true;
} }

View File

@ -16,7 +16,7 @@ public:
CHWPSection(); CHWPSection();
~CHWPSection(); ~CHWPSection();
bool Parse(CXMLNode& oNode, int nVersion); bool Parse(CXMLReader& oReader, int nVersion);
bool Parse(CHWPStream& oBuffer, int nVersion); bool Parse(CHWPStream& oBuffer, int nVersion);
int ParseRecurse(CHWPPargraph* oCurrPara, int nRunLevel, CHWPStream& oBuffer, int nOff, int nVersion); int ParseRecurse(CHWPPargraph* oCurrPara, int nRunLevel, CHWPStream& oBuffer, int nOff, int nVersion);
int ParseCtrlRecurse(CCtrl* oCurrCtrl, int nRunLevel, CHWPStream& oBuffer, int nOff, int nVersion); int ParseCtrlRecurse(CCtrl* oCurrCtrl, int nRunLevel, CHWPStream& oBuffer, int nOff, int nVersion);

View File

@ -116,7 +116,8 @@ VECTOR<HWP_STRING> CHWPXFile::GetPathsToSections() const
bool CHWPXFile::GetFileHeader() bool CHWPXFile::GetFileHeader()
{ {
CXMLNode oVersionXml{GetDocument(L"version.xml")}; CXMLNode oVersionXml{GetDocument(L"version.xml")};
return m_oFileHeader.Parse(oVersionXml); CXMLReader oReader{GetDocument(L"version.xml")};
return m_oFileHeader.Parse(oReader);
} }
const CHWPDocInfo* CHWPXFile::GetDocInfo() const const CHWPDocInfo* CHWPXFile::GetDocInfo() const
@ -146,11 +147,11 @@ bool CHWPXFile::GetChildStream(const HWP_STRING& sFileName, CHWPStream& oBuffer)
bool CHWPXFile::GetDocInfo(int nVersion) bool CHWPXFile::GetDocInfo(int nVersion)
{ {
CXMLNode oContent{GetDocument(L"Contents/content.hpf")}; CXMLReader oContentReader{GetDocument(L"Contents/content.hpf")};
if (m_oDocInfo.ReadContentHpf(oContent, nVersion)) if (m_oDocInfo.ReadContentHpf(oContentReader, nVersion))
{ {
CXMLNode oHeader{GetDocument(L"Contents/header.xml")}; CXMLReader oHeaderReader{GetDocument(L"Contents/header.xml")};
return m_oDocInfo.Parse(oHeader, nVersion); return m_oDocInfo.Parse(oHeaderReader, nVersion);
} }
return false; return false;
@ -158,10 +159,10 @@ bool CHWPXFile::GetDocInfo(int nVersion)
bool CHWPXFile::ReadSection(const HWP_STRING& sName, int nVersion) bool CHWPXFile::ReadSection(const HWP_STRING& sName, int nVersion)
{ {
CXMLNode oRootNode{GetDocument(sName)}; CXMLReader oReader{GetDocument(sName)};
CHWPSection* pSection = new CHWPSection(); CHWPSection* pSection = new CHWPSection();
const bool bResult = pSection->Parse(oRootNode, nVersion); const bool bResult = pSection->Parse(oReader, nVersion);
if (bResult) if (bResult)
m_arSections.push_back(pSection); m_arSections.push_back(pSection);
@ -171,11 +172,34 @@ bool CHWPXFile::ReadSection(const HWP_STRING& sName, int nVersion)
return bResult; return bResult;
} }
CXMLNode CHWPXFile::GetDocument(const HWP_STRING& sEntryName) CXMLReader CHWPXFile::GetDocument(const HWP_STRING& sEntryName)
{ {
if (nullptr == m_pZipFolder) if (nullptr == m_pZipFolder)
return CXMLNode(); return CXMLReader();
return CXMLNode(m_pZipFolder->getNodeFromFile(sEntryName)); XmlUtils::CXmlLiteReader oTempReader{m_pZipFolder->getReaderFromFile(sEntryName)};
std::cout << oTempReader.GetNameA() << std::endl;
if (oTempReader.IsValid())
std::cout << "Valid" << std::endl;
else
std::cout << "No valid" << std::endl;
oTempReader.ReadNextNode();
if (oTempReader.IsValid())
std::cout << "Valid" << std::endl;
else
std::cout << "No valid" << std::endl;
std::wcout << oTempReader.GetDepth() << L" _ " << oTempReader.GetName() << std::endl;
CXMLReader oReader(oTempReader);
std::wcout << oReader.GetInnerXml() << std::endl;
return oReader;
} }
} }

View File

@ -32,7 +32,7 @@ private:
bool GetFileHeader(); bool GetFileHeader();
bool GetDocInfo(int nVersion); bool GetDocInfo(int nVersion);
bool ReadSection(const HWP_STRING& sName, int nVersion); bool ReadSection(const HWP_STRING& sName, int nVersion);
CXMLNode GetDocument(const HWP_STRING& sEntryName); CXMLReader GetDocument(const HWP_STRING& sEntryName);
}; };
} }

View File

@ -60,15 +60,30 @@ bool CHwpFileHeader::Parse(CHWPStream& oBuffer)
return true; return true;
} }
bool CHwpFileHeader::Parse(CXMLNode& oNode) bool CHwpFileHeader::Parse(CXMLReader& oReader)
{ {
if (!oNode.IsValid()) if (!oReader.IsValid())
return false; return false;
m_sVersion += oNode.GetAttribute(L"major"); HWP_STRING wsMajor, wsMinor, wsMicro, wsBuildNumber;
m_sVersion += oNode.GetAttribute(L"minor");
m_sVersion += oNode.GetAttribute(L"micro"); START_READ_ATTRIBUTES(oReader)
m_sVersion += oNode.GetAttribute(L"buildNumber"); {
if ("major" == sAttributeName)
wsMajor = oReader.GetText2();
else if ("minor" == sAttributeName)
wsMinor = oReader.GetText2();
else if ("micro" == sAttributeName)
wsMicro = oReader.GetText2();
else if ("buildNumber" == sAttributeName)
wsBuildNumber = oReader.GetText2();
}
END_READ_ATTRIBUTES(oReader)
m_sVersion = ((!wsMajor.empty()) ? wsMajor : L"0") +
((!wsMinor.empty()) ? wsMinor : L"0") +
((!wsMicro.empty()) ? wsMicro : L"0") +
((!wsBuildNumber.empty()) ? wsBuildNumber : L"0");
return true; return true;
} }

View File

@ -2,7 +2,7 @@
#define HWPFILEHEADER_H #define HWPFILEHEADER_H
#include "HWPStream.h" #include "HWPStream.h"
#include "Common/XMLNode.h" #include "Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -47,7 +47,7 @@ public:
HWP_STRING GetVersion() const; HWP_STRING GetVersion() const;
bool Parse(CHWPStream& oBuffer); bool Parse(CHWPStream& oBuffer);
bool Parse(CXMLNode& oNode); bool Parse(CXMLReader& oReader);
}; };
} }

View File

@ -6,8 +6,8 @@ CCapParagraph::CCapParagraph()
: CHWPPargraph() : CHWPPargraph()
{} {}
CCapParagraph::CCapParagraph(CXMLNode& oNode, int nVersion) CCapParagraph::CCapParagraph(CXMLReader& oReader, int nVersion)
: CHWPPargraph(oNode, nVersion) : CHWPPargraph(oReader, nVersion)
{} {}
EParagraphType CCapParagraph::GetType() const EParagraphType CCapParagraph::GetType() const

View File

@ -9,7 +9,7 @@ class CCapParagraph : public CHWPPargraph
{ {
public: public:
CCapParagraph(); CCapParagraph();
CCapParagraph(CXMLNode& oNode, int nVersion); CCapParagraph(CXMLReader& oReader, int nVersion);
EParagraphType GetType() const override; EParagraphType GetType() const override;
}; };

View File

@ -7,8 +7,8 @@ CCellParagraph::CCellParagraph()
{ {
} }
CCellParagraph::CCellParagraph(CXMLNode& oNode, int nVersion) CCellParagraph::CCellParagraph(CXMLReader& oReader, int nVersion)
: CHWPPargraph(oNode, nVersion) : CHWPPargraph(oReader, nVersion)
{} {}
EParagraphType CCellParagraph::GetType() const EParagraphType CCellParagraph::GetType() const

View File

@ -9,7 +9,7 @@ class CCellParagraph : public CHWPPargraph
{ {
public: public:
CCellParagraph(); CCellParagraph();
CCellParagraph(CXMLNode& oNode, int nVersion); CCellParagraph(CXMLReader& oReader, int nVersion);
EParagraphType GetType() const override; EParagraphType GetType() const override;
}; };

View File

@ -2,9 +2,6 @@
#define COMMONOBJ_H #define COMMONOBJ_H
#include "HWPPargraph.h" #include "HWPPargraph.h"
#include <string>
#include <vector>
#include <list>
namespace HWP namespace HWP
{ {

View File

@ -50,27 +50,29 @@ bool CCtrl::Equals(CCtrl* pFirstCtrl, CCtrl* pSecondCtrl)
pFirstCtrl->m_bFullFilled == pSecondCtrl->m_bFullFilled; pFirstCtrl->m_bFullFilled == pSecondCtrl->m_bFullFilled;
} }
CCtrl* CCtrl::GetCtrl(CXMLNode& oNode, int nVersion) CCtrl* CCtrl::GetCtrl(CXMLReader& oReader, int nVersion)
{ {
if (L"hp:colPr" == oNode.GetName()) const std::string sNodeName{oReader.GetNameA()};
return new CCtrlColumnDef(L"dloc", oNode, nVersion);
else if (L"hp:header" == oNode.GetName()) if ("hp:colPr" == sNodeName)
return new CCtrlHeadFoot(L"daeh", oNode, nVersion); return new CCtrlColumnDef(L"dloc", oReader, nVersion);
else if (L"hp:footer" == oNode.GetName()) else if ("hp:header" == sNodeName)
return new CCtrlHeadFoot(L"toof", oNode, nVersion); return new CCtrlHeadFoot(L"daeh", oReader, nVersion);
else if (L"hp:footNote" == oNode.GetName()) else if ("hp:footer" == sNodeName)
return new CCtrlNote(L" nf", oNode, nVersion); return new CCtrlHeadFoot(L"toof", oReader, nVersion);
else if (L"hp:endNote" == oNode.GetName()) else if ("hp:footNote" == sNodeName)
return new CCtrlNote(L" ne", oNode, nVersion); return new CCtrlNote(L" nf", oReader, nVersion);
else if (L"hp:autoNum" == oNode.GetName()) else if ("hp:endNote" == sNodeName)
return new CCtrlAutoNumber(L"onta", oNode, nVersion); return new CCtrlNote(L" ne", oReader, nVersion);
else if (L"hp:newNum" == oNode.GetName()) else if ("hp:autoNum" == sNodeName)
return new CCtrlNewNumber(L"onwn", oNode, nVersion); return new CCtrlAutoNumber(L"onta", oReader, nVersion);
else if (L"hp:pageNum" == oNode.GetName()) else if ("hp:newNum" == sNodeName)
return new CCtrlPageNumPos(L"pngp", oNode, nVersion); return new CCtrlNewNumber(L"onwn", oReader, nVersion);
else if (L"hp:fieldBegin" == oNode.GetName() || else if ("hp:pageNum" == sNodeName)
L"hp:fieldEnd" == oNode.GetName()) return new CCtrlPageNumPos(L"pngp", oReader, nVersion);
return new CCtrlField(L"", oNode, nVersion); else if ("hp:fieldBegin" == sNodeName ||
"hp:fieldEnd" == sNodeName)
return new CCtrlField(L"", oReader, nVersion);
return nullptr; return nullptr;
} }

View File

@ -2,7 +2,7 @@
#define CTRL_H #define CTRL_H
#include "../Common/Common.h" #include "../Common/Common.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -46,7 +46,7 @@ public:
void SetFullFilled(); void SetFullFilled();
static bool Equals(CCtrl* pFirstCtrl, CCtrl* pSecondCtrl); static bool Equals(CCtrl* pFirstCtrl, CCtrl* pSecondCtrl);
static CCtrl* GetCtrl(CXMLNode& oNode, int nVersion); static CCtrl* GetCtrl(CXMLReader& oReader, int nVersion);
}; };
} }

View File

@ -44,57 +44,63 @@ CCtrlAutoNumber::CCtrlAutoNumber(const HWP_STRING& sCtrlID, int nSize, CHWPStrea
m_bFullFilled = true; m_bFullFilled = true;
} }
CCtrlAutoNumber::CCtrlAutoNumber(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlAutoNumber::CCtrlAutoNumber(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID) : CCtrl(sCtrlID)
{ {
m_eNumType = ::HWP::GetNumType(oNode.GetAttribute(L"numType")); m_eNumType = ::HWP::GetNumType(oReader.GetAttribute("numType"));
HWP_STRING sType; WHILE_READ_NEXT_NODE(oReader)
for (CXMLNode& oChild : oNode.GetChilds())
{ {
m_bSuperscript = oChild.GetAttributeBool(L"supscript"); START_READ_ATTRIBUTES(oReader)
{
if ("supscript" == sAttributeName)
m_bSuperscript = oReader.GetBool();
else if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
sType = oChild.GetAttribute(L"type"); if ("DIGIT" == sType)
m_eNumShape = ENumberShape2::DIGIT;
if (L"DIGIT" == sType) else if ("CIRCLE_DIGIT" == sType)
m_eNumShape = ENumberShape2::DIGIT; m_eNumShape = ENumberShape2::CIRCLE_DIGIT;
else if (L"CIRCLE_DIGIT" == sType) else if ("ROMAN_CAPITAL" == sType)
m_eNumShape = ENumberShape2::CIRCLE_DIGIT; m_eNumShape = ENumberShape2::ROMAN_CAPITAL;
else if (L"ROMAN_CAPITAL" == sType) else if ("ROMAN_SMALL" == sType)
m_eNumShape = ENumberShape2::ROMAN_CAPITAL; m_eNumShape = ENumberShape2::ROMAN_SMALL;
else if (L"ROMAN_SMALL" == sType) else if ("LATIN_CAPITAL" == sType)
m_eNumShape = ENumberShape2::ROMAN_SMALL; m_eNumShape = ENumberShape2::LATIN_CAPITAL;
else if (L"LATIN_CAPITAL" == sType) else if ("LATIN_SMALL" == sType)
m_eNumShape = ENumberShape2::LATIN_CAPITAL; m_eNumShape = ENumberShape2::LATIN_SMALL;
else if (L"LATIN_SMALL" == sType) else if ("CIRCLED_LATIN_CAPITAL" == sType)
m_eNumShape = ENumberShape2::LATIN_SMALL; m_eNumShape = ENumberShape2::CIRCLED_LATIN_CAPITAL;
else if (L"CIRCLED_LATIN_CAPITAL" == sType) else if ("CIRCLED_LATIN_SMALL" == sType)
m_eNumShape = ENumberShape2::CIRCLED_LATIN_CAPITAL; m_eNumShape = ENumberShape2::CIRCLED_LATIN_SMALL;
else if (L"CIRCLED_LATIN_SMALL" == sType) else if ("CIRCLED_HANGUL_SYLLABLE" == sType)
m_eNumShape = ENumberShape2::CIRCLED_LATIN_SMALL; m_eNumShape = ENumberShape2::CIRCLED_HANGUL_SYLLABLE;
else if (L"CIRCLED_HANGUL_SYLLABLE" == sType) else if ("HANGUL_JAMO" == sType)
m_eNumShape = ENumberShape2::CIRCLED_HANGUL_SYLLABLE; m_eNumShape = ENumberShape2::HANGUL_JAMO;
else if (L"HANGUL_JAMO" == sType) else if ("CIRCLED_HANGUL_JAMO" == sType)
m_eNumShape = ENumberShape2::HANGUL_JAMO; m_eNumShape = ENumberShape2::CIRCLED_HANGUL_JAMO;
else if (L"CIRCLED_HANGUL_JAMO" == sType) else if ("HANGUL_PHONETIC" == sType)
m_eNumShape = ENumberShape2::CIRCLED_HANGUL_JAMO; m_eNumShape = ENumberShape2::HANGUL_PHONETIC;
else if (L"HANGUL_PHONETIC" == sType) else if ("IDEOGRAPH" == sType)
m_eNumShape = ENumberShape2::HANGUL_PHONETIC; m_eNumShape = ENumberShape2::IDEOGRAPH;
else if (L"IDEOGRAPH" == sType) else if ("CIRCLED_IDEOGRAPH" == sType)
m_eNumShape = ENumberShape2::IDEOGRAPH; m_eNumShape = ENumberShape2::CIRCLED_IDEOGRAPH;
else if (L"CIRCLED_IDEOGRAPH" == sType) else if ("DECAGON_CIRCLE" == sType)
m_eNumShape = ENumberShape2::CIRCLED_IDEOGRAPH; m_eNumShape = ENumberShape2::DECAGON_CIRCLE;
else if (L"DECAGON_CIRCLE" == sType) else if ("DECAGON_CRICLE_HANGJA" == sType)
m_eNumShape = ENumberShape2::DECAGON_CIRCLE; m_eNumShape = ENumberShape2::DECAGON_CRICLE_HANGJA;
else if (L"DECAGON_CRICLE_HANGJA" == sType) else if ("SYMBOL" == sType)
m_eNumShape = ENumberShape2::DECAGON_CRICLE_HANGJA; m_eNumShape = ENumberShape2::SYMBOL;
else if (L"SYMBOL" == sType) else if ("USER_CHAR" == sType)
m_eNumShape = ENumberShape2::SYMBOL; m_eNumShape = ENumberShape2::USER_HWP_CHAR;
else if (L"USER_CHAR" == sType) }
m_eNumShape = ENumberShape2::USER_HWP_CHAR; else if ("hp:autoNumFormat" == sAttributeName ||
"autoNumFormat" == sAttributeName)
m_eNumShape = GetNumberShape2(oChild.GetAttributeInt(L"hp:autoNumFormat", oChild.GetAttributeInt(L"autoNumFormat"))); m_eNumShape = GetNumberShape2(oReader.GetInt());
}
END_READ_ATTRIBUTES(oReader)
} }
m_bFullFilled = true; m_bFullFilled = true;

View File

@ -5,7 +5,7 @@
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../HWPElements/HwpRecordTypes.h" #include "../HWPElements/HwpRecordTypes.h"
#include "../Common/Common.h" #include "../Common/Common.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -31,7 +31,7 @@ class CCtrlAutoNumber : public CCtrl
public: public:
CCtrlAutoNumber(const HWP_STRING& sCtrlID); CCtrlAutoNumber(const HWP_STRING& sCtrlID);
CCtrlAutoNumber(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlAutoNumber(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlAutoNumber(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlAutoNumber(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -40,12 +40,17 @@ CCtrlColumnDef::CCtrlColumnDef(const HWP_STRING& sCtrlID, int nSize, CHWPStream&
m_bFullFilled = true; m_bFullFilled = true;
} }
CCtrlColumnDef::CCtrlColumnDef(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlColumnDef::CCtrlColumnDef(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID) : CCtrl(sCtrlID), m_eColLineStyle(ELineStyle2::SOLID)
{ {
m_eColLineStyle = ELineStyle2::SOLID; START_READ_ATTRIBUTES(oReader)
m_shColCount = oNode.GetAttributeInt(L"colCount"); {
m_bSameSz = oNode.GetAttributeBool(L"sameSz"); if ("colCount" == sAttributeName)
m_shColCount = oReader.GetInt();
else if ("sameSz" == sAttributeName)
m_bSameSz = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
if (!m_bSameSz) if (!m_bSameSz)
{ {
@ -54,19 +59,35 @@ CCtrlColumnDef::CCtrlColumnDef(const HWP_STRING& sCtrlID, CXMLNode& oNode, int n
} }
unsigned int unColSzIndex = 0; unsigned int unColSzIndex = 0;
std::string sNodeName;
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:colLine" == oChild.GetName()) sNodeName = oReader.GetNameA();
if ("hp:colLine" == sNodeName)
{ {
m_eColLineStyle = GetLineStyle2(oChild.GetAttribute(L"type")); START_READ_ATTRIBUTES(oReader)
m_chColLineWidth = (HWP_BYTE)ConvertWidthToHWP(oChild.GetAttribute(L"width")); {
m_nColLineColor = oChild.GetAttributeColor(L"color"); if ("type" == sAttributeName)
m_eColLineStyle = GetLineStyle2(oReader.GetText2());
else if ("width" == sAttributeName)
m_chColLineWidth = (HWP_BYTE)ConvertWidthToHWP(oReader.GetText2A());
else if ("color" == sAttributeName)
m_nColLineColor = oReader.GetColor();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:colSz" == oChild.GetName()) else if ("hp:colSz" == sNodeName)
{ {
m_arColSzWidths[unColSzIndex] = oChild.GetAttributeInt(L"width"); START_READ_ATTRIBUTES(oReader)
m_arColSzGaps[unColSzIndex++] = oChild.GetAttributeInt(L"gap"); {
if ("width" == sAttributeName)
m_arColSzWidths[unColSzIndex] = oReader.GetInt();
else if ("gap" == sAttributeName)
m_arColSzGaps[unColSzIndex++] = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }

View File

@ -4,7 +4,7 @@
#include "../HWPElements/HwpRecordTypes.h" #include "../HWPElements/HwpRecordTypes.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "Ctrl.h" #include "Ctrl.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -22,7 +22,7 @@ class CCtrlColumnDef : public CCtrl
public: public:
CCtrlColumnDef(const HWP_STRING& sCtrlID); CCtrlColumnDef(const HWP_STRING& sCtrlID);
CCtrlColumnDef(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlColumnDef(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlColumnDef(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlColumnDef(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -240,113 +240,182 @@ namespace HWP
oBuffer.ReadString(m_sObjDesc, EStringCharacter::UTF16); oBuffer.ReadString(m_sObjDesc, EStringCharacter::UTF16);
} }
CCtrlCommon::CCtrlCommon(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlCommon::CCtrlCommon(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID), m_bTreatAsChar(false), m_eVertRelTo(EVRelTo::PARA), m_eHorzRelTo(EHRelTo::PARA), m_nVertOffset(0), m_nHorzOffset(0), m_nWidth(0), m_nHeight(0), m_arOutMargin{0, 0, 0, 0}, m_arInMargin{0, 0, 0, 0}, m_eTextVerAlign(EVertAlign::TOP) : CCtrl(sCtrlID), m_bTreatAsChar(false), m_eVertRelTo(EVRelTo::PARA), m_eHorzRelTo(EHRelTo::PARA), m_nVertOffset(0), m_nHorzOffset(0), m_nWidth(0), m_nHeight(0), m_arOutMargin{0, 0, 0, 0}, m_arInMargin{0, 0, 0, 0}, m_eTextVerAlign(EVertAlign::TOP)
{ {
m_nObjInstanceID = std::abs(oNode.GetAttributeInt(L"id")); std::string sType;
HWP_STRING sType = oNode.GetAttribute(L"textFlow"); START_READ_ATTRIBUTES(oReader)
if (L"BOTH_SIDES" == sType)
m_chTextFlow = 0;
else if (L"LEFT_ONLY" == sType)
m_chTextFlow = 1;
else if (L"RIGHT_ONLY" == sType)
m_chTextFlow = 2;
else if (L"LARGEST_ONLY" == sType)
m_chTextFlow = 3;
sType = oNode.GetAttribute(L"textWrap");
if (L"SQUARE" == sType)
m_eTextWrap = ETextWrap::SQUARE;
else if (L"TOP_AND_BOTTOM" == sType)
m_eTextWrap = ETextWrap::TOP_AND_BOTTOM;
else if (L"BEHIND_TEXT" == sType)
m_eTextWrap = ETextWrap::BEHIND_TEXT;
else if (L"IN_FRONT_OF_TEXT" == sType)
m_eTextWrap = ETextWrap::IN_FRONT_OF_TEXT;
m_nZOrder = oNode.GetAttributeInt(L"zOrder");
sType = oNode.GetAttribute(L"numberingType");
if (L"NONE" == sType)
m_chNumeringType = 0;
else if (L"PICTURE" == sType)
m_chNumeringType = 1;
else if (L"TABLE" == sType)
m_chNumeringType = 2;
else if (L"EQUATION" == sType)
m_chNumeringType = 3;
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hp:sz" == oChild.GetName()) if ("id" == sAttributeName)
m_nObjInstanceID = std::abs(oReader.GetInt());
else if ("textFlow" == sAttributeName)
{ {
m_nWidth = oChild.GetAttributeInt(L"width"); sType = oReader.GetText2A();
m_eWidthRelTo = ::HWP::GetWidthRelTo(oChild.GetAttribute(L"widthRelTo"));
m_nHeight = oChild.GetAttributeInt(L"height"); if ("BOTH_SIDES" == sType)
m_eHeightRelTo = ::HWP::GetHeightRelTo(oChild.GetAttribute(L"heightRelTo")); m_chTextFlow = 0;
else if ("LEFT_ONLY" == sType)
m_chTextFlow = 1;
else if ("RIGHT_ONLY" == sType)
m_chTextFlow = 2;
else if ("LARGEST_ONLY" == sType)
m_chTextFlow = 3;
} }
else if (L"hp:pos" == oChild.GetName()) else if ("textWrap" == sAttributeName)
{ {
m_bTreatAsChar = oChild.GetAttributeBool(L"treatAsChar"); sType = oReader.GetText2A();
if (m_bTreatAsChar) if ("SQUARE" == sType)
m_bAffectLSpacing = oChild.GetAttributeBool(L"affectLSpacing"); m_eTextWrap = ETextWrap::SQUARE;
else else if ("TOP_AND_BOTTOM" == sType)
m_bAllowOverlap = oChild.GetAttributeBool(L"allowOverlap"); m_eTextWrap = ETextWrap::TOP_AND_BOTTOM;
else if ("BEHIND_TEXT" == sType)
m_eVertRelTo = GetVRelTo(oChild.GetAttribute(L"vertRelTo")); m_eTextWrap = ETextWrap::BEHIND_TEXT;
m_eHorzRelTo = GetHRelTo(oChild.GetAttribute(L"horzRelTo")); else if ("IN_FRONT_OF_TEXT" == sType)
m_eTextWrap = ETextWrap::IN_FRONT_OF_TEXT;
if (EVRelTo::PARA == m_eVertRelTo)
m_bFlowWithText = oChild.GetAttributeBool(L"flowWithText");
m_eVertAlign = GetVertAlign(oChild.GetAttribute(L"vertAlign"));
m_eHorzAlign = GetHorzAlign(oChild.GetAttribute(L"horzAlign"));
m_nVertOffset = oChild.GetAttributeInt(L"vertOffset");
m_nHorzOffset = oChild.GetAttributeInt(L"horzOffset");
} }
else if (L"hp:outMargin" == oChild.GetName()) else if ("zOrder" == sAttributeName)
m_nZOrder = oReader.GetInt();
else if ("numberingType" == sAttributeName)
{ {
m_arOutMargin[0] = oChild.GetAttributeInt(L"left"); sType = oReader.GetText2A();
m_arOutMargin[1] = oChild.GetAttributeInt(L"right");
m_arOutMargin[2] = oChild.GetAttributeInt(L"top"); if ("NONE" == sType)
m_arOutMargin[3] = oChild.GetAttributeInt(L"bottom"); m_chNumeringType = 0;
else if ("PICTURE" == sType)
m_chNumeringType = 1;
else if ("TABLE" == sType)
m_chNumeringType = 2;
else if ("EQUATION" == sType)
m_chNumeringType = 3;
} }
else if (L"hp:inMargin" == oChild.GetName()) }
END_READ_ATTRIBUTES(oReader)
std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{
sNodeName = oReader.GetNameA();
if ("hp:sz" == sNodeName)
{ {
m_arInMargin[0] = oChild.GetAttributeInt(L"left"); START_READ_ATTRIBUTES(oReader)
m_arInMargin[1] = oChild.GetAttributeInt(L"right");
m_arInMargin[2] = oChild.GetAttributeInt(L"top");
m_arInMargin[3] = oChild.GetAttributeInt(L"bottom");
}
else if (L"hp:caption" == oChild.GetName())
{
HWP_STRING sType = oChild.GetAttribute(L"side");
if (L"LEFT" == sType)
m_nCaptionAttr = 0b00;
else if (L"RIGHT" == sType)
m_nCaptionAttr = 0b01;
else if (L"TOP" == sType)
m_nCaptionAttr = 0b10;
else if (L"BOTTOM" == sType)
m_nCaptionAttr = 0b11;
if (oChild.GetAttributeBool(L"fullSz"))
m_nCaptionAttr |= 0b100;
m_nCaptionWidth = oChild.GetAttributeInt(L"width");
m_nCaptionSpacing = oChild.GetAttributeInt(L"gap");
m_nCaptionMaxW = oChild.GetAttributeInt(L"lastWidth");
for (CXMLNode& oSubList : oChild.GetChilds(L"hp:subList"))
{ {
for (CXMLNode& oParagraph : oSubList.GetChilds(L"hp:p")) if ("width" == sAttributeName)
m_arCaption.push_back(new CCapParagraph(oParagraph, nVersion)); m_nWidth = oReader.GetInt();
else if ("widthRelTo" == sAttributeName)
m_eWidthRelTo = ::HWP::GetWidthRelTo(oReader.GetText2());
else if ("height" == sAttributeName)
m_nHeight = oReader.GetInt();
else if ("heightRelTo" == sAttributeName)
m_eHeightRelTo = ::HWP::GetHeightRelTo(oReader.GetText2());
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:pos" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("treatAsChar" == sAttributeName)
m_bTreatAsChar = oReader.GetBool();
else if ("affectLSpacing" == sAttributeName)
m_bAffectLSpacing = oReader.GetBool();
else if ("allowOverlap" == sAttributeName)
m_bAllowOverlap = oReader.GetBool();
else if ("vertRelTo" == sAttributeName)
m_eVertRelTo = GetVRelTo(oReader.GetText2());
else if ("horzRelTo" == sAttributeName)
m_eHorzRelTo = GetHRelTo(oReader.GetText2());
else if ("flowWithText" == sAttributeName)
m_bFlowWithText = oReader.GetBool();
else if ("vertAlign" == sAttributeName)
m_eVertAlign = GetVertAlign(oReader.GetText2());
else if ("horzAlign" == sAttributeName)
m_eHorzAlign = GetHorzAlign(oReader.GetText2());
else if ("vertOffset" == sAttributeName)
m_nVertOffset = oReader.GetInt();
else if ("horzOffset" == sAttributeName)
m_nHorzOffset = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:outMargin" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("left" == sAttributeName)
m_arOutMargin[0] = oReader.GetInt();
else if ("right" == sAttributeName)
m_arOutMargin[1] = oReader.GetInt();
else if ("top" == sAttributeName)
m_arOutMargin[2] = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_arOutMargin[3] = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:inMargin" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("left" == sAttributeName)
m_arInMargin[0] = oReader.GetInt();
else if ("right" == sAttributeName)
m_arInMargin[1] = oReader.GetInt();
else if ("top" == sAttributeName)
m_arInMargin[2] = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_arInMargin[3] = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:caption" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("side" == sAttributeName)
{
sType = oReader.GetText2A();
if ("LEFT" == sType)
m_nCaptionAttr = 0b00;
else if ("RIGHT" == sType)
m_nCaptionAttr = 0b01;
else if ("TOP" == sType)
m_nCaptionAttr = 0b10;
else if ("BOTTOM" == sType)
m_nCaptionAttr = 0b11;
}
else if ("fullSz" == sAttributeName)
{
if (oReader.GetBool())
m_nCaptionAttr |= 0b100;
}
else if ("width" == sAttributeName)
m_nCaptionWidth = oReader.GetInt();
else if ("gap" == sAttributeName)
m_nCaptionSpacing = oReader.GetInt();
else if ("lastWidth" == sAttributeName)
m_nCaptionMaxW = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
const int nChildDepth = oReader.GetDepth();
while (oReader.ReadNextSiblingNode2(nChildDepth))
{
if ("hp:subList" != oReader.GetNameA())
continue;
const int nSubChildDepth = oReader.GetDepth();
while (oReader.ReadNextSiblingNode2(nSubChildDepth))
{
if ("hp:p" != oReader.GetNameA())
continue;
m_arCaption.push_back(new CCapParagraph(oReader, nVersion));
}
} }
} }
} }

View File

@ -114,7 +114,7 @@ public:
CCtrlCommon(const HWP_STRING& sCtrlID); CCtrlCommon(const HWP_STRING& sCtrlID);
CCtrlCommon(const CCtrlCommon& oCtrlCommon); CCtrlCommon(const CCtrlCommon& oCtrlCommon);
CCtrlCommon(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlCommon(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlCommon(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlCommon(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
virtual ~CCtrlCommon(); virtual ~CCtrlCommon();
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -25,31 +25,34 @@ CCtrlContainer::CCtrlContainer(const HWP_STRING& sCtrlID, int nSize, CHWPStream&
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlContainer::CCtrlContainer(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlContainer::CCtrlContainer(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
for (CXMLNode& oChild : oNode.GetChilds()) std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:container" == oChild.GetName()) sNodeName = oReader.GetNameA();
m_arShapes.push_back(new CCtrlContainer(L"noc$", oChild, nVersion));
else if (L"hp:line" == oChild.GetName()) if ("hp:container" == sNodeName)
m_arShapes.push_back(new CCtrlShapeLine(L"nil$", oChild, nVersion)); m_arShapes.push_back(new CCtrlContainer(L"noc$", oReader, nVersion));
else if (L"hp:rect" == oChild.GetName()) else if ("hp:line" == sNodeName)
m_arShapes.push_back(new CCtrlShapeRect(L"cer$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapeLine(L"nil$", oReader, nVersion));
else if (L"hp:ellipse" == oChild.GetName()) else if ("hp:rect" == sNodeName)
m_arShapes.push_back(new CCtrlShapeEllipse(L"lle$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapeRect(L"cer$", oReader, nVersion));
else if (L"hp:arc" == oChild.GetName()) else if ("hp:ellipse" == sNodeName)
m_arShapes.push_back(new CCtrlShapeArc(L"cra$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapeEllipse(L"lle$", oReader, nVersion));
else if (L"hp:polygon" == oChild.GetName()) else if ("hp:arc" == sNodeName)
m_arShapes.push_back(new CCtrlShapePolygon(L"lop$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapeArc(L"cra$", oReader, nVersion));
else if (L"hp:curve" == oChild.GetName()) else if ("hp:polygon" == sNodeName)
m_arShapes.push_back(new CCtrlShapeCurve(L"ruc$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapePolygon(L"lop$", oReader, nVersion));
else if (L"hp:connectLine" == oChild.GetName()) else if ("hp:curve" == sNodeName)
m_arShapes.push_back(new CCtrlShapeConnectLine(L"loc$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapeCurve(L"ruc$", oReader, nVersion));
else if (L"hp:pic" == oChild.GetName()) else if ("hp:connectLine" == sNodeName)
m_arShapes.push_back(new CCtrlShapePic(L"cip$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapeConnectLine(L"loc$", oReader, nVersion));
else if (L"hp:ole" == oChild.GetName()) else if ("hp:pic" == sNodeName)
m_arShapes.push_back(new CCtrlShapeOle(L"elo$", oChild, nVersion)); m_arShapes.push_back(new CCtrlShapePic(L"cip$", oReader, nVersion));
else if ("hp:ole" == sNodeName)
m_arShapes.push_back(new CCtrlShapeOle(L"elo$", oReader, nVersion));
} }
m_shNElement = m_arShapes.size(); m_shNElement = m_arShapes.size();

View File

@ -14,7 +14,7 @@ public:
CCtrlContainer(const HWP_STRING& sCtrlID); CCtrlContainer(const HWP_STRING& sCtrlID);
CCtrlContainer(const CCtrlGeneralShape& oShape); CCtrlContainer(const CCtrlGeneralShape& oShape);
CCtrlContainer(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlContainer(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlContainer(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlContainer(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
~CCtrlContainer(); ~CCtrlContainer();

View File

@ -17,23 +17,40 @@ CCtrlEqEdit::CCtrlEqEdit(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuff
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlEqEdit::CCtrlEqEdit(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlEqEdit::CCtrlEqEdit(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID) : CCtrlGeneralShape(sCtrlID)
{ {
m_sVersion = oNode.GetAttribute(L"version"); START_READ_ATTRIBUTES(oReader)
m_nBaseline = oNode.GetAttributeInt(L"baseLine"); {
m_nColor = oNode.GetAttributeColor(L"textColor"); if ("version" == sAttributeName)
m_nCharSize = oNode.GetAttributeInt(L"baseUnit"); m_sVersion = oReader.GetText2();
else if ("baseLine" == sAttributeName)
m_nBaseline = oReader.GetInt();
else if ("textColor" == sAttributeName)
m_nColor = oReader.GetColor();
else if ("baseUnit" == sAttributeName)
m_nCharSize = oReader.GetInt();
else if ("lineMode" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
HWP_STRING sType = oNode.GetAttribute(L"lineMode"); if ("LINE" == sType)
m_nAttr = 1;
else if ("CHAR" == sType)
m_nAttr = 0;
}
else if ("font" == sAttributeName)
m_sFont = oReader.GetText2();
}
END_READ_ATTRIBUTES(oReader)
if (L"LINE" == sType) WHILE_READ_NEXT_NODE(oReader)
m_nAttr = 1; {
else if (L"CHAR" == sType) if ("hp:script" != oReader.GetNameA())
m_nAttr = 0; continue;
m_sFont = oNode.GetAttribute(L"font"); m_sEqn = oReader.GetText2();
m_sEqn = oNode.GetChild(L"hp:script").GetText(); }
m_bFullFilled = true; m_bFullFilled = true;
} }

View File

@ -19,7 +19,7 @@ public:
CCtrlEqEdit(const HWP_STRING& sCtrlID); CCtrlEqEdit(const HWP_STRING& sCtrlID);
CCtrlEqEdit(const CCtrlGeneralShape& oShape); CCtrlEqEdit(const CCtrlGeneralShape& oShape);
CCtrlEqEdit(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlEqEdit(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlEqEdit(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlEqEdit(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -1,6 +1,4 @@
#include "CtrlField.h" #include "CtrlField.h"
#include <iostream>
#include <ostream>
namespace HWP namespace HWP
{ {
@ -33,37 +31,50 @@ void CCtrlField::UpdateType(const HWP_STRING& sCtrlID)
m_eType = EFieldType::BookmarkClosing; m_eType = EFieldType::BookmarkClosing;
} }
CCtrlField::CCtrlField(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlField::CCtrlField(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID), m_eType(EFieldType::Unknown) : CCtrl(sCtrlID), m_eType(EFieldType::Unknown)
{ {
if (L"hp:fieldBegin" == oNode.GetName()) const std::string sNodeName{oReader.GetNameA()};
HWP_STRING wsName;
if ("hp:fieldBegin" == sNodeName)
{ {
HWP_STRING sType = oNode.GetAttribute(L"type"); START_READ_ATTRIBUTES(oReader)
if (L"HYPERLINK" == sType)
m_eType = EFieldType::Hyperlink;
else if (L"BOOKMARK" == sType)
m_eType = EFieldType::Bookmark;
m_nInstanceID = oNode.GetAttributeInt(L"fieldid");
HWP_STRING sName = oNode.GetAttribute(L"name");
if (!sName.empty() && EFieldType::Bookmark == m_eType)
AddStringParam(L"bookmarkname", sName);
for (CXMLNode& oChild : oNode.GetChild(L"hp:parameters").GetChilds())
{ {
if (L"hp:stringParam" == oChild.GetName()) if ("type" == sAttributeName)
AddStringParam(oChild.GetAttribute(L"name"), oChild.GetText()); {
else if (L"hp:integerParam" == oChild.GetName()) const std::string sType{oReader.GetText2A()};
AddIntegerParam(oChild.GetAttribute(L"name"), std::stoi(oChild.GetText()));
if ("HYPERLINK" == sType)
m_eType = EFieldType::Hyperlink;
else if ("BOOKMARK" == sType)
m_eType = EFieldType::Bookmark;
}
else if ("fieldid" == sAttributeName)
m_nInstanceID = oReader.GetInt();
else if ("name" == sAttributeName)
wsName = oReader.GetText2();
} }
END_READ_ATTRIBUTES(oReader)
if (!wsName.empty() && EFieldType::Bookmark == m_eType)
AddStringParam(L"bookmarkname", wsName);
WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:parameters")
{
WHILE_READ_NEXT_NODE_WITH_DEPTH_AND_NAME(oReader, Child)
{
if ("hp:stringParam" == sNodeChildName)
AddStringParam(oReader.GetAttribute("name"), oReader.GetText2());
else if ("hp:integerParam" == sNodeChildName)
AddIntegerParam(oReader.GetAttribute("name"), oReader.GetInt());
}
END_WHILE
}
END_WHILE
} }
else if (L"hp:fieldEnd" == oNode.GetName()) else if ("hp:fieldEnd" == sNodeName)
{ m_nInstanceID = oReader.GetAttributeInt("fieldid");
m_nInstanceID = oNode.GetAttributeInt(L"fieldid");
}
} }
ECtrlObjectType CCtrlField::GetCtrlType() const ECtrlObjectType CCtrlField::GetCtrlType() const

View File

@ -32,7 +32,7 @@ class CCtrlField : public CCtrl
public: public:
CCtrlField(const HWP_STRING& sCtrlID); CCtrlField(const HWP_STRING& sCtrlID);
CCtrlField(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlField(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlField(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlField(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -62,118 +62,155 @@ CCtrlGeneralShape::CCtrlGeneralShape(const HWP_STRING& sCtrlID, int nSize, CHWPS
InitData(); InitData();
} }
CCtrlGeneralShape::CCtrlGeneralShape(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlGeneralShape::CCtrlGeneralShape(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlObjElement(sCtrlID, oNode, nVersion) : CCtrlObjElement(sCtrlID, oReader, nVersion)
{ {
InitData(); InitData();
for (CXMLNode& oChild : oNode.GetChilds()) std::string sNodeName;
bool bHeadFill = false, bTailFill = false;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:lineShape" == oChild.GetName()) sNodeName = oReader.GetNameA();
if ("hp:lineShape" == sNodeName)
{ {
m_nLineColor = oChild.GetAttributeColor(L"color"); std::string sHeadStyle, sTailStyle;
m_nLineThick = std::abs(oChild.GetAttributeInt(L"width"));
m_eLineStyle = GetLineStyle2(oChild.GetAttribute(L"style"));
HWP_STRING sType = oChild.GetAttribute(L"headStyle"); START_READ_ATTRIBUTES(oReader)
{
if ("color" == sAttributeName)
m_nLineColor = oReader.GetInt();
else if ("width" == sAttributeName)
m_nLineThick = oReader.GetInt();
else if ("style" == sAttributeName)
m_eLineStyle = GetLineStyle2(oReader.GetText2());
else if ("headStyle" == sAttributeName)
sHeadStyle = oReader.GetText2A();
else if ("headfill" == sAttributeName)
bHeadFill = oReader.GetBool();
else if ("headSz" == sAttributeName)
{
const std::string sHeadSz{oReader.GetText2A()};
if (L"ARROW" == sType) if ("SMALL_SMALL" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::SMALL_SMALL;
else if ("SMALL_MEDIUM" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::SMALL_MEDIUM;
else if ("SMALL_LARGE" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::SMALL_LARGE;
else if ("MEDIUM_SMALL" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::MEDIUM_SMALL;
else if ("MEDIUM_MEDIUM" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::MEDIUM_MEDIUM;
else if ("MEDIUM_LARGE" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::MEDIUM_LARGE;
else if ("LARGE_SMALL" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::LARGE_SMALL;
else if ("LARGE_MEDIUM" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::LARGE_MEDIUM;
else if ("LARGE_LARGE" == sHeadSz)
m_eLineHeadSz = ELineArrowSize::LARGE_LARGE;
else
m_eLineHeadSz = ELineArrowSize::MEDIUM_MEDIUM;
}
else if ("tailStyle" == sAttributeName)
sTailStyle = oReader.GetText2A();
else if ("tailfill" == sAttributeName)
bTailFill = oReader.GetBool();
else if ("tailSz" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if ("SMALL_SMALL" == sType)
m_eLineTailSz = ELineArrowSize::SMALL_SMALL;
else if ("SMALL_MEDIUM" == sType)
m_eLineTailSz = ELineArrowSize::SMALL_MEDIUM;
else if ("SMALL_LARGE" == sType)
m_eLineTailSz = ELineArrowSize::SMALL_LARGE;
else if ("MEDIUM_SMALL" == sType)
m_eLineTailSz = ELineArrowSize::MEDIUM_SMALL;
else if ("MEDIUM_MEDIUM" == sType)
m_eLineTailSz = ELineArrowSize::MEDIUM_MEDIUM;
else if ("MEDIUM_LARGE" == sType)
m_eLineTailSz = ELineArrowSize::MEDIUM_LARGE;
else if ("LARGE_SMALL" == sType)
m_eLineTailSz = ELineArrowSize::LARGE_SMALL;
else if ("LARGE_MEDIUM" == sType)
m_eLineTailSz = ELineArrowSize::LARGE_MEDIUM;
else if ("LARGE_LARGE" == sType)
m_eLineTailSz = ELineArrowSize::LARGE_LARGE;
else
m_eLineTailSz = ELineArrowSize::MEDIUM_MEDIUM;
}
}
END_READ_ATTRIBUTES(oReader)
if (sHeadStyle.empty())
m_eLineHead = ELineArrowStyle::NORMAL;
else if ("ARROW" == sHeadStyle)
m_eLineHead = ELineArrowStyle::ARROW; m_eLineHead = ELineArrowStyle::ARROW;
else if (L"SPEAR" == sType) else if ("SPEAR" == sHeadStyle)
m_eLineHead = ELineArrowStyle::SPEAR; m_eLineHead = ELineArrowStyle::SPEAR;
else if (L"CONCAVE_ARROW" == sType) else if ("CONCAVE_ARROW" == sHeadStyle)
m_eLineHead = ELineArrowStyle::CONCAVE_ARROW; m_eLineHead = ELineArrowStyle::CONCAVE_ARROW;
else if (L"EMPTY_DIAMOND" == sType) else if ("EMPTY_DIAMOND" == sHeadStyle)
m_eLineHead = (oChild.GetAttributeBool(L"headfill")) ? ELineArrowStyle::DIAMOND : ELineArrowStyle::EMPTY_DIAMOND; m_eLineHead = bHeadFill ? ELineArrowStyle::DIAMOND : ELineArrowStyle::EMPTY_DIAMOND;
else if (L"EMPTY_CIRCLE" == sType) else if ("EMPTY_CIRCLE" == sHeadStyle)
m_eLineHead = (oChild.GetAttributeBool(L"headfill")) ? ELineArrowStyle::CIRCLE : ELineArrowStyle::EMPTY_CIRCLE; m_eLineHead = bHeadFill ? ELineArrowStyle::CIRCLE : ELineArrowStyle::EMPTY_CIRCLE;
else if (L"EMPTY_BOX" == sType) else if ("EMPTY_BOX" == sHeadStyle)
m_eLineHead = (oChild.GetAttributeBool(L"headfill")) ? ELineArrowStyle::BOX : ELineArrowStyle::EMPTY_BOX; m_eLineHead = bHeadFill ? ELineArrowStyle::BOX : ELineArrowStyle::EMPTY_BOX;
else else
m_eLineHead = ELineArrowStyle::NORMAL; m_eLineHead = ELineArrowStyle::NORMAL;
sType = oChild.GetAttribute(L"headSz"); if (sTailStyle.empty())
m_eLineTail = ELineArrowStyle::NORMAL;
if (L"SMALL_SMALL" == sType) else if ("ARROW" == sTailStyle)
m_eLineHeadSz = ELineArrowSize::SMALL_SMALL;
else if (L"SMALL_MEDIUM" == sType)
m_eLineHeadSz = ELineArrowSize::SMALL_MEDIUM;
else if (L"SMALL_LARGE" == sType)
m_eLineHeadSz = ELineArrowSize::SMALL_LARGE;
else if (L"MEDIUM_SMALL" == sType)
m_eLineHeadSz = ELineArrowSize::MEDIUM_SMALL;
else if (L"MEDIUM_MEDIUM" == sType)
m_eLineHeadSz = ELineArrowSize::MEDIUM_MEDIUM;
else if (L"MEDIUM_LARGE" == sType)
m_eLineHeadSz = ELineArrowSize::MEDIUM_LARGE;
else if (L"LARGE_SMALL" == sType)
m_eLineHeadSz = ELineArrowSize::LARGE_SMALL;
else if (L"LARGE_MEDIUM" == sType)
m_eLineHeadSz = ELineArrowSize::LARGE_MEDIUM;
else if (L"LARGE_LARGE" == sType)
m_eLineHeadSz = ELineArrowSize::LARGE_LARGE;
else
m_eLineHeadSz = ELineArrowSize::MEDIUM_MEDIUM;
sType = oChild.GetAttribute(L"tailStyle");
if (L"ARROW" == sType)
m_eLineTail = ELineArrowStyle::ARROW; m_eLineTail = ELineArrowStyle::ARROW;
else if (L"SPEAR" == sType) else if ("SPEAR" == sTailStyle)
m_eLineTail = ELineArrowStyle::SPEAR; m_eLineTail = ELineArrowStyle::SPEAR;
else if (L"CONCAVE_ARROW" == sType) else if ("CONCAVE_ARROW" == sTailStyle)
m_eLineTail = ELineArrowStyle::CONCAVE_ARROW; m_eLineTail = ELineArrowStyle::CONCAVE_ARROW;
else if (L"EMPTY_DIAMOND" == sType) else if ("EMPTY_DIAMOND" == sTailStyle)
m_eLineTail = (oChild.GetAttributeBool(L"tailfill")) ? ELineArrowStyle::DIAMOND : ELineArrowStyle::EMPTY_DIAMOND; m_eLineTail = bTailFill ? ELineArrowStyle::DIAMOND : ELineArrowStyle::EMPTY_DIAMOND;
else if (L"EMPTY_CIRCLE" == sType) else if ("EMPTY_CIRCLE" == sTailStyle)
m_eLineTail = (oChild.GetAttributeBool(L"tailfill")) ? ELineArrowStyle::CIRCLE : ELineArrowStyle::EMPTY_CIRCLE; m_eLineTail = bTailFill ? ELineArrowStyle::CIRCLE : ELineArrowStyle::EMPTY_CIRCLE;
else if (L"EMPTY_BOX" == sType) else if ("EMPTY_BOX" == sTailStyle)
m_eLineTail = (oChild.GetAttributeBool(L"tailfill")) ? ELineArrowStyle::BOX : ELineArrowStyle::EMPTY_BOX; m_eLineTail = bTailFill ? ELineArrowStyle::BOX : ELineArrowStyle::EMPTY_BOX;
else else
m_eLineTail = ELineArrowStyle::NORMAL; m_eLineTail = ELineArrowStyle::NORMAL;
sType = oChild.GetAttribute(L"tailSz");
if (L"SMALL_SMALL" == sType)
m_eLineTailSz = ELineArrowSize::SMALL_SMALL;
else if (L"SMALL_MEDIUM" == sType)
m_eLineTailSz = ELineArrowSize::SMALL_MEDIUM;
else if (L"SMALL_LARGE" == sType)
m_eLineTailSz = ELineArrowSize::SMALL_LARGE;
else if (L"MEDIUM_SMALL" == sType)
m_eLineTailSz = ELineArrowSize::MEDIUM_SMALL;
else if (L"MEDIUM_MEDIUM" == sType)
m_eLineTailSz = ELineArrowSize::MEDIUM_MEDIUM;
else if (L"MEDIUM_LARGE" == sType)
m_eLineTailSz = ELineArrowSize::MEDIUM_LARGE;
else if (L"LARGE_SMALL" == sType)
m_eLineTailSz = ELineArrowSize::LARGE_SMALL;
else if (L"LARGE_MEDIUM" == sType)
m_eLineTailSz = ELineArrowSize::LARGE_MEDIUM;
else if (L"LARGE_LARGE" == sType)
m_eLineTailSz = ELineArrowSize::LARGE_LARGE;
else
m_eLineTailSz = ELineArrowSize::MEDIUM_MEDIUM;
} }
else if (L"hc:fillBrush" == oChild.GetName()) else if ("hc:fillBrush" == sNodeName)
m_pFill = new CFill(oChild); m_pFill = new CFill(oReader);
else if (L"hp:drawText" == oChild.GetName()) else if ("hp:drawText" == sNodeName)
{ {
m_nMaxTxtWidth = oChild.GetAttributeInt(L"lastWidth"); m_nMaxTxtWidth = oReader.GetAttributeInt("lastWidth");
for (CXMLNode& oGrandChild : oChild.GetChilds()) const int nChildDepth = oReader.GetDepth();
std::string sChildNodeName;
while (oReader.ReadNextSiblingNode2(nChildDepth))
{ {
if (L"hp:textMargin" == oGrandChild.GetName()) sChildNodeName = oReader.GetNameA();
if ("hp:textMargin" == sChildNodeName)
{ {
m_shLeftSpace = oGrandChild.GetAttributeInt(L"left"); START_READ_ATTRIBUTES(oReader)
m_shRightSpace = oGrandChild.GetAttributeInt(L"right"); {
m_shTopSpace = oGrandChild.GetAttributeInt(L"top"); if ("left" == sAttributeName)
m_shBottomSpace = oGrandChild.GetAttributeInt(L"bottom"); m_shLeftSpace = oReader.GetInt();
} else if ("right" == sAttributeName)
else if (L"hp:subList" == oGrandChild.GetName()) m_shRightSpace = oReader.GetInt();
{ else if ("top" == sAttributeName)
ReadSubList(oGrandChild, nVersion); m_shTopSpace = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_shBottomSpace = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if ("hp:subList" == sChildNodeName)
ReadSubList(oReader, nVersion);
} }
} }
} }
@ -201,29 +238,27 @@ void CCtrlGeneralShape::InitData()
m_pFill = nullptr; m_pFill = nullptr;
} }
void CCtrlGeneralShape::ReadSubList(CXMLNode& oNode, int nVersion) void CCtrlGeneralShape::ReadSubList(CXMLReader& oReader, int nVersion)
{ {
m_eTextVerAlign = GetVertAlign(oNode.ReadAttributeInt(L"vertAlign")); m_eTextVerAlign = GetVertAlign(oReader.GetAttributeInt("vertAlign"));
std::vector<CXMLNode> arChilds{oNode.GetChilds()}; // CHWPPargraph* pLatestParagraph = nullptr;
for (unsigned int unIndex = 0; unIndex < arChilds.size(); ++unIndex) WHILE_READ_NEXT_NODE(oReader)
{ {
CHWPPargraph* pLatestParagraph = nullptr; if ("hp:p" != oReader.GetNameA())
continue;
if (L"hp:p" == arChilds[unIndex].GetName()) CHWPPargraph* pParagraph = new CHWPPargraph(oReader, nVersion);
{
CHWPPargraph* pParagraph = new CHWPPargraph(arChilds[unIndex], nVersion);
if (nullptr == pParagraph) if (nullptr == pParagraph)
continue; continue;
m_arParas.push_back(pParagraph); m_arParas.push_back(pParagraph);
pLatestParagraph = pParagraph; // pLatestParagraph = pParagraph;
}
if (nullptr != pLatestParagraph && 0 != pLatestParagraph->GetCountCtrls() && ECtrlObjectType::ParaText == pLatestParagraph->GetCtrls().back()->GetCtrlType() && unIndex < arChilds.size() - 1) // if (nullptr != pLatestParagraph && 0 != pLatestParagraph->GetCountCtrls() && ECtrlObjectType::ParaText == pLatestParagraph->GetCtrls().back()->GetCtrlType())
pLatestParagraph->AddCtrl(new CCtrlCharacter(L" _", ECtrlCharType::PARAGRAPH_BREAK)); // pLatestParagraph->AddCtrl(new CCtrlCharacter(L" _", ECtrlCharType::PARAGRAPH_BREAK));
} }
} }

View File

@ -53,13 +53,13 @@ class CCtrlGeneralShape : public CCtrlObjElement
friend class CCtrlShapePolygon; friend class CCtrlShapePolygon;
friend class CCtrlShapeRect; friend class CCtrlShapeRect;
void ReadSubList(CXMLNode& oNode, int nVersion); void ReadSubList(CXMLReader& oReader, int nVersion);
public: public:
CCtrlGeneralShape(); CCtrlGeneralShape();
CCtrlGeneralShape(const HWP_STRING& sCtrlID); CCtrlGeneralShape(const HWP_STRING& sCtrlID);
CCtrlGeneralShape(const CCtrlGeneralShape& oGeneralShape); CCtrlGeneralShape(const CCtrlGeneralShape& oGeneralShape);
CCtrlGeneralShape(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlGeneralShape(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlGeneralShape(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlGeneralShape(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
virtual ~CCtrlGeneralShape(); virtual ~CCtrlGeneralShape();
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -24,23 +24,33 @@ CCtrlHeadFoot::CCtrlHeadFoot(const HWP_STRING& sCtrlID, int nSize, CHWPStream& o
oBuffer.ReadInt(m_nSerialInSec); oBuffer.ReadInt(m_nSerialInSec);
} }
CCtrlHeadFoot::CCtrlHeadFoot(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlHeadFoot::CCtrlHeadFoot(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID) : CCtrl(sCtrlID)
{ {
m_bIsHeader = L"daeh" == sCtrlID; m_bIsHeader = L"daeh" == sCtrlID;
m_eWhichPage = GetPageRange(oNode.GetAttributeInt(L"applyPageType")); m_eWhichPage = GetPageRange(oReader.GetAttributeInt("applyPageType"));
for (CXMLNode& oChild : oNode.GetChilds(L"hp:subList")) WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:subList")
{ {
m_chRefLevelNum = (HWP_BYTE)oChild.GetAttributeInt(L"hasNumRef"); START_READ_ATTRIBUTES(oReader)
m_chRefLevelText = (HWP_BYTE)oChild.GetAttributeInt(L"hasTextRef"); {
m_nTextHeight = oChild.GetAttributeInt(L"textHeight"); if ("hasNumRef" == sAttributeName)
m_nTextWidth = oChild.GetAttributeInt(L"textWidth"); m_chRefLevelNum = (HWP_BYTE)oReader.GetInt();
else if ("hasTextRef" == sAttributeName)
m_chRefLevelText = (HWP_BYTE)oReader.GetInt();
else if ("textHeight" == sAttributeName)
m_nTextHeight = oReader.GetInt();
else if ("textWidth" == sAttributeName)
m_nTextWidth = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
for (CXMLNode& oGrandChild : oChild.GetChilds(L"hp:p")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Child, "hp:p")
m_arParas.push_back(new CHWPPargraph(oGrandChild, nVersion)); m_arParas.push_back(new CHWPPargraph(oReader, nVersion));
END_WHILE
} }
END_WHILE
m_bFullFilled = true; m_bFullFilled = true;
} }

View File

@ -31,7 +31,7 @@ class CCtrlHeadFoot : public CCtrl
public: public:
CCtrlHeadFoot(const HWP_STRING& sCtrlID); CCtrlHeadFoot(const HWP_STRING& sCtrlID);
CCtrlHeadFoot(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion, bool bIsHeader); CCtrlHeadFoot(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion, bool bIsHeader);
CCtrlHeadFoot(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlHeadFoot(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -20,13 +20,20 @@ CCtrlNewNumber::CCtrlNewNumber(const HWP_STRING& sCtrlID, int nSize, CHWPStream&
m_bFullFilled = true; m_bFullFilled = true;
} }
CCtrlNewNumber::CCtrlNewNumber(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlNewNumber::CCtrlNewNumber(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID) : CCtrl(sCtrlID)
{ {
m_shNum = oNode.GetAttributeInt(L"num"); START_READ_ATTRIBUTES(oReader)
m_eNumType = ::HWP::GetNumType(oNode.GetAttribute(L"numType")); {
//TODO:: проверить данный момент if ("num" == sAttributeName)
m_eNumShape = GetNumberShape2(oNode.GetAttributeInt(L"autoNumFormat")); m_shNum = oReader.GetInt();
else if ("numType" == sAttributeName)
m_eNumType = ::HWP::GetNumType(oReader.GetText2());
//TODO:: проверить данный момент
else if ("autoNumFormat" == sAttributeName)
m_eNumShape = GetNumberShape2(oReader.GetInt());
}
END_READ_ATTRIBUTES(oReader)
m_bFullFilled = true; m_bFullFilled = true;
} }

View File

@ -13,7 +13,7 @@ class CCtrlNewNumber : public CCtrl
public: public:
CCtrlNewNumber(const HWP_STRING& sCtrlID); CCtrlNewNumber(const HWP_STRING& sCtrlID);
CCtrlNewNumber(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlNewNumber(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlNewNumber(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlNewNumber(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -16,14 +16,14 @@ CCtrlNote::CCtrlNote(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer,
m_bFullFilled = true; m_bFullFilled = true;
} }
CCtrlNote::CCtrlNote(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlNote::CCtrlNote(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID) : CCtrl(sCtrlID)
{ {
for (CXMLNode& oChild : oNode.GetChilds(L"hp:subList")) WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:subList")
{ WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Child, "hp:p")
for (CXMLNode& oGrandChild : oChild.GetChilds(L"hp:p")) m_arParas.push_back(new CHWPPargraph(oReader, nVersion));
m_arParas.push_back(new CHWPPargraph(oGrandChild, nVersion)); END_WHILE
} END_WHILE
m_bFullFilled = true; m_bFullFilled = true;
} }

View File

@ -14,7 +14,7 @@ public:
CCtrlNote(); CCtrlNote();
CCtrlNote(const HWP_STRING& sCtrlID); CCtrlNote(const HWP_STRING& sCtrlID);
CCtrlNote(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlNote(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlNote(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlNote(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -47,64 +47,113 @@ CCtrlObjElement::CCtrlObjElement(const HWP_STRING& sCtrlID, int nSize, CHWPStrea
: CCtrlCommon(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlCommon(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
TMatrix ReadMatrix(CXMLNode& oNode) TMatrix ReadMatrix(CXMLReader& oReader)
{ {
return TMatrix TMatrix oMatrix;
START_READ_ATTRIBUTES(oReader)
{ {
oNode.GetAttributeDouble(L"e1", 1.), if ("e1" == sAttributeName)
oNode.GetAttributeDouble(L"e2"), oMatrix.m_dM11 = oReader.GetDouble();
oNode.GetAttributeDouble(L"e4"), else if ("e2" == sAttributeName)
oNode.GetAttributeDouble(L"e5", 1.), oMatrix.m_dM12 = oReader.GetDouble();
oNode.GetAttributeDouble(L"e3"), else if ("e3" == sAttributeName)
oNode.GetAttributeDouble(L"e6"), oMatrix.m_dDX = oReader.GetDouble();
}; else if ("e4" == sAttributeName)
oMatrix.m_dM21 = oReader.GetDouble();
else if ("e5" == sAttributeName)
oMatrix.m_dM22 = oReader.GetDouble();
else if ("e6" == sAttributeName)
oMatrix.m_dDY = oReader.GetDouble();
}
END_READ_ATTRIBUTES(oReader)
return oMatrix;
} }
CCtrlObjElement::CCtrlObjElement(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlObjElement::CCtrlObjElement(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlCommon(sCtrlID, oNode, nVersion) : CCtrlCommon(sCtrlID, oReader, nVersion)
{ {
m_shNGrp = oNode.GetAttributeInt(L"groupLevel"); m_shNGrp = oReader.GetAttributeInt("groupLevel");
for (CXMLNode& oChild : oNode.GetChilds()) std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:offset" == oChild.GetName()) sNodeName = oReader.GetNameA();
if ("hp:offset" == sNodeName)
{ {
m_nXGrpOffset = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nYGrpOffset = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nXGrpOffset = oReader.GetInt();
else if ("y" == sAttributeName)
m_nYGrpOffset = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:orgSz" == oChild.GetName())
else if ("hp:orgSz" == sNodeName)
{ {
m_nOrgWidth = oChild.GetAttributeInt(L"width"); START_READ_ATTRIBUTES(oReader)
m_nOrgHeight = oChild.GetAttributeInt(L"height"); {
if ("width" == sAttributeName)
m_nOrgWidth = oReader.GetInt();
else if ("height" == sAttributeName)
m_nOrgHeight = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:curSz" == oChild.GetName()) else if ("hp:curSz" == sNodeName)
{ {
m_nCurWidth = oChild.GetAttributeInt(L"width"); START_READ_ATTRIBUTES(oReader)
m_nCurHeight = oChild.GetAttributeInt(L"height"); {
if ("width" == sAttributeName)
m_nCurWidth = oReader.GetInt();
else if ("height" == sAttributeName)
m_nCurHeight = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:flip" == oChild.GetName()) else if ("hp:flip" == sNodeName)
{ {
m_bHorzFlip = oChild.GetAttributeBool(L"horizontal"); START_READ_ATTRIBUTES(oReader)
m_bVerFlip = oChild.GetAttributeBool(L"vertical"); {
if ("horizontal" == sAttributeName)
m_bHorzFlip = oReader.GetBool();
else if ("vertical" == sAttributeName)
m_bVerFlip = oReader.GetBool();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:rotationInfo" == oChild.GetName()) else if ("hp:rotationInfo" == sNodeName)
{ {
m_shRotat = oChild.GetAttributeInt(L"angle"); START_READ_ATTRIBUTES(oReader)
m_nXCenter = oChild.GetAttributeInt(L"centerX"); {
m_nYCenter = oChild.GetAttributeInt(L"centerY"); if ("angle" == sAttributeName)
m_shRotat = oReader.GetInt();
else if ("centerX" == sAttributeName)
m_nXCenter = oReader.GetInt();
else if ("centerY" == sAttributeName)
m_nYCenter = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:renderingInfo" == oChild.GetName()) else if ("hp:renderingInfo" == sNodeName)
{ {
for (CXMLNode& oGrandChild : oChild.GetChilds()) WHILE_READ_NEXT_NODE_WITH_DEPTH_AND_NAME(oReader, Child)
{ {
// Сначала идёт 1 hc:transMatrix, а после попарно идут hc:scaMatrix с hc:rotMatrix // Сначала идёт 1 hc:transMatrix, а после попарно идут hc:scaMatrix с hc:rotMatrix
if (L"hc:transMatrix" == oGrandChild.GetName())
m_arMatrixs.push_back(ReadMatrix(oGrandChild)); if ("hc:transMatrix" != sNodeChildName &&
else if (L"hc:scaMatrix" == oGrandChild.GetName()) "hc:scaMatrix" != sNodeChildName &&
m_arMatrixs.push_back(ReadMatrix(oGrandChild)); "hc:rotMatrix" != sNodeChildName)
else if (L"hc:rotMatrix" == oGrandChild.GetName()) continue;
m_arMatrixs.push_back(ReadMatrix(oGrandChild));
m_arMatrixs.push_back(ReadMatrix(oReader));
} }
END_WHILE
} }
} }
} }
@ -145,9 +194,14 @@ int CCtrlObjElement::GetFinalHeight() const
return CCtrlCommon::GetHeight(); return CCtrlCommon::GetHeight();
} }
short CCtrlObjElement::GetGroupLevel() const
{
return m_shNGrp;
}
TMatrix CCtrlObjElement::GetFinalMatrix() const TMatrix CCtrlObjElement::GetFinalMatrix() const
{ {
if (m_arMatrixs.empty() || 0 == m_shNGrp) if (m_arMatrixs.empty())
return TMatrix(); return TMatrix();
TMatrix oMatrix{m_arMatrixs.front()}; TMatrix oMatrix{m_arMatrixs.front()};

View File

@ -44,7 +44,7 @@ public:
CCtrlObjElement(const HWP_STRING& sCtrlID); CCtrlObjElement(const HWP_STRING& sCtrlID);
CCtrlObjElement(const CCtrlObjElement& oObjElement); CCtrlObjElement(const CCtrlObjElement& oObjElement);
CCtrlObjElement(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlObjElement(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlObjElement(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlObjElement(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
int GetCurWidth() const; int GetCurWidth() const;
int GetCurHeight() const; int GetCurHeight() const;
@ -55,6 +55,8 @@ public:
int GetFinalWidth() const; int GetFinalWidth() const;
int GetFinalHeight() const; int GetFinalHeight() const;
short GetGroupLevel() const;
TMatrix GetFinalMatrix() const; TMatrix GetFinalMatrix() const;
bool HorzFlip() const; bool HorzFlip() const;

View File

@ -54,13 +54,20 @@ CCtrlPageNumPos::CCtrlPageNumPos(const HWP_STRING& sCtrlID, int nSize, CHWPStrea
oBuffer.ReadString(m_sConstantDash, 2, EStringCharacter::UTF16); oBuffer.ReadString(m_sConstantDash, 2, EStringCharacter::UTF16);
} }
CCtrlPageNumPos::CCtrlPageNumPos(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlPageNumPos::CCtrlPageNumPos(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID) : CCtrl(sCtrlID)
{ {
m_ePos = GetNumPos(oNode.GetAttribute(L"pos")); START_READ_ATTRIBUTES(oReader)
m_eNumShape = GetNumberShape2(oNode.GetAttributeInt(L"formatType")); {
if ("pos" == sAttributeName)
m_ePos = GetNumPos(oReader.GetText2());
else if ("formatType" == sAttributeName)
m_eNumShape = GetNumberShape2(oReader.GetInt());
else if ("sideChar" == sAttributeName)
m_sPostfix = oReader.GetText2();
}
END_READ_ATTRIBUTES(oReader)
m_sPostfix = oNode.GetAttribute(L"sideChar");
m_sPrefix = m_sPostfix; m_sPrefix = m_sPostfix;
} }

View File

@ -4,7 +4,7 @@
#include "Ctrl.h" #include "Ctrl.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../HWPElements/HwpRecordTypes.h" #include "../HWPElements/HwpRecordTypes.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -34,7 +34,7 @@ class CCtrlPageNumPos : public CCtrl
public: public:
CCtrlPageNumPos(const HWP_STRING& sCtrlID); CCtrlPageNumPos(const HWP_STRING& sCtrlID);
CCtrlPageNumPos(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlPageNumPos(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlPageNumPos(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlPageNumPos(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
ENumPos GetPos() const; ENumPos GetPos() const;

View File

@ -40,96 +40,170 @@ CCtrlSectionDef::CCtrlSectionDef(const HWP_STRING& sCtrlID, int nSize, CHWPStrea
m_bFullFilled = true; m_bFullFilled = true;
} }
CCtrlSectionDef::CCtrlSectionDef(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlSectionDef::CCtrlSectionDef(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrl(sCtrlID), m_pPage(nullptr) : CCtrl(sCtrlID), m_pPage(nullptr)
{ {
HWP_STRING sType = oNode.GetAttribute(L"textDirection"); std::string sType;
if (L"HORIZONTAL" == sType) if (oReader.MoveToFirstAttribute())
m_chTextDirection = 0;
else if (L"VERTICAL" == sType)
m_chTextDirection = 1;
m_shSpaceColumns = oNode.GetAttributeInt(L"spaceColumns");
m_nTabStop = oNode.GetAttributeInt(L"tabStop");
m_nOutlineNumberingID = oNode.GetAttributeInt(L"outlineShapeIDRef");
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hp:startNum" == oChild.GetName()) std::string sAttributeName;
do
{ {
sType = oChild.GetAttribute(L"pageStartsOn"); sAttributeName = oReader.GetNameA();
if (L"BOTH" == sType) if ("textDirection" == sAttributeName)
m_chPageStartOn = 0; {
else if (L"EVEN" == sType) sType = oReader.GetText2A();
m_chPageStartOn = 1;
else if (L"ODD" == sType)
m_chPageStartOn = 2;
m_shPageNum = oChild.GetAttributeInt(L"page"); if ("HORIZONTAL" == sType)
m_shFigure = oChild.GetAttributeInt(L"pic"); m_chTextDirection = 0;
m_shTable = oChild.GetAttributeInt(L"tbl"); else if ("VERTICAL" == sType)
m_shEquation = oChild.GetAttributeInt(L"equation"); m_chTextDirection = 1;
} }
else if (L"hp:grid" == oChild.GetName()) else if ("spaceColumns" == sAttributeName)
m_shSpaceColumns = oReader.GetInt();
else if ("tabStop" == sAttributeName)
m_nTabStop = oReader.GetInt();
else if ("outlineShapeIDRef" == sAttributeName)
m_nOutlineNumberingID = oReader.GetInt();
}while(oReader.MoveToNextAttribute());
oReader.MoveToElement();
}
std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{
sNodeName = oReader.GetNameA();
if ("hp:startNum" == sNodeName)
{ {
m_shLineGrid = oChild.GetAttributeInt(L"lineGrid"); if (!oReader.MoveToFirstAttribute())
m_shCharGrid = oChild.GetAttributeInt(L"charGrid"); continue;
std::string sAttributeName;
do
{
sAttributeName = oReader.GetNameA();
if ("pageStartsOn" == sAttributeName)
{
sType = oReader.GetText2A();
if ("BOTH" == sType)
m_chPageStartOn = 0;
else if ("EVEN" == sType)
m_chPageStartOn = 1;
else if ("ODD" == sType)
m_chPageStartOn = 2;
}
else if ("page" == sAttributeName)
m_shPageNum = oReader.GetInt();
else if ("pic" == sAttributeName)
m_shFigure = oReader.GetInt();
else if ("tbl" == sAttributeName)
m_shTable = oReader.GetInt();
else if ("equation" == sAttributeName)
m_shEquation = oReader.GetInt();
}while(oReader.MoveToNextAttribute());
oReader.MoveToElement();
} }
else if (L"hp:visibility" == oChild.GetName()) else if ("hp:grid" == sNodeName)
{ {
m_bHideHeader = oChild.GetAttributeBool(L"hideFirstHeader"); if (!oReader.MoveToFirstAttribute())
m_bHideFooter = oChild.GetAttributeBool(L"hideFirstFooter"); continue;
m_bHideMasterPage = oChild.GetAttributeBool(L"hideFirstMasterPage");
sType = oChild.GetAttribute(L"border"); std::string sAttributeName;
if (L"HIDE_FIRST" == sType) do
{ {
m_bHideBorder = true; sAttributeName = oReader.GetNameA();
m_bShowFirstBorder = false;
}
else if (L"SHOW_FIRST" == sType)
{
m_bHideBorder = true;
m_bShowFirstBorder = true;
}
else if (L"SHOW_ALL" == sType)
{
m_bHideBorder = false;
m_bShowFirstBorder = false;
}
sType = oChild.GetAttribute(L"fill"); if ("lineGrid" == sAttributeName)
m_shLineGrid = oReader.GetInt();
else if ("charGrid" == sAttributeName)
m_shCharGrid = oReader.GetInt();
}while(oReader.MoveToNextAttribute());
if (L"HIDE_FIRST" == sType) oReader.MoveToElement();
{
m_bHideFill = true;
m_bShowFirstFill = false;
}
else if (L"SHOW_FIRST" == sType)
{
m_bHideFill = true;
m_bShowFirstFill = true;
}
else if (L"SHOW_ALL" == sType)
{
m_bHideFill = false;
m_bShowFirstFill = false;
}
m_bHidePageNumPos = oChild.GetAttributeBool(L"hideFirstPageNum");
m_bHideEmptyLine = oChild.GetAttributeBool(L"hideFirstEmptyLine");
} }
else if (L"hp:pagePr" == oChild.GetName()) else if ("hp:visibility" == sNodeName)
m_pPage = new CPage(oChild); {
else if (L"hp:footNotePr" == oChild.GetName() || if (!oReader.MoveToFirstAttribute())
L"hp:endNotePr" == oChild.GetName()) continue;
m_arNoteShapes.push_back(new CNoteShape(oChild, nVersion));
else if (L"hp:pageBorderFill" == oChild.GetName()) std::string sAttributeName;
m_arBorderFills.push_back(new CPageBorderFill(oChild, nVersion));
else if (L"hp:masterPage" == oChild.GetName()) do
{
sAttributeName = oReader.GetNameA();
if ("hideFirstHeader" == sAttributeName)
m_bHideHeader = oReader.GetBool();
else if ("hideFirstFooter" == sAttributeName)
m_bHideFooter = oReader.GetBool();
else if ("hideFirstMasterPage" == sAttributeName)
m_bHideMasterPage = oReader.GetBool();
else if ("border" == sAttributeName)
{
sType = oReader.GetText2A();
if ("HIDE_FIRST" == sType)
{
m_bHideBorder = true;
m_bShowFirstBorder = false;
}
else if ("SHOW_FIRST" == sType)
{
m_bHideBorder = true;
m_bShowFirstBorder = true;
}
else if ("SHOW_ALL" == sType)
{
m_bHideBorder = false;
m_bShowFirstBorder = false;
}
}
else if ("fill" == sAttributeName)
{
sType = oReader.GetText2A();
if ("HIDE_FIRST" == sType)
{
m_bHideFill = true;
m_bShowFirstFill = false;
}
else if ("SHOW_FIRST" == sType)
{
m_bHideFill = true;
m_bShowFirstFill = true;
}
else if ("SHOW_ALL" == sType)
{
m_bHideFill = false;
m_bShowFirstFill = false;
}
}
else if ("hp:visibility" == sAttributeName)
m_bHidePageNumPos = oReader.GetBool();
else if ("hideFirstEmptyLine" == sAttributeName)
m_bHideEmptyLine = oReader.GetBool();
}while(oReader.MoveToNextAttribute());
oReader.MoveToElement();
}
else if ("hp:pagePr" == sNodeName)
m_pPage = new CPage(oReader);
else if ("hp:footNotePr" == sNodeName ||
"hp:endNotePr" == sNodeName)
m_arNoteShapes.push_back(new CNoteShape(oReader, nVersion));
else if ("hp:pageBorderFill" == sNodeName)
m_arBorderFills.push_back(new CPageBorderFill(oReader, nVersion));
else if ("hp:masterPage" == sNodeName)
{ {
//TODO:: добавить реализацию //TODO:: добавить реализацию
} }

View File

@ -45,7 +45,7 @@ class CCtrlSectionDef : public CCtrl
public: public:
CCtrlSectionDef(const HWP_STRING& sCtrlID); CCtrlSectionDef(const HWP_STRING& sCtrlID);
CCtrlSectionDef(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlSectionDef(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlSectionDef(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlSectionDef(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
~CCtrlSectionDef(); ~CCtrlSectionDef();
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -17,27 +17,49 @@ CCtrlShapeArc::CCtrlShapeArc(const HWP_STRING& sCtrlID, int nSize, CHWPStream& o
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeArc::CCtrlShapeArc(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeArc::CCtrlShapeArc(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_eType = GetArcType(oNode.GetAttributeInt(L"type")); m_eType = GetArcType(oReader.GetAttributeInt("type"));
for (CXMLNode& oChild : oNode.GetChilds()) std::string sNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:center" == oChild.GetName()) sNodeName = oReader.GetNameA();
if ("hp:center" == sNodeName)
{ {
m_nCenterX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nCenterY = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nCenterX = oReader.GetInt();
else if ("y" == sAttributeName)
m_nCenterY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:ax1" == oChild.GetName()) else if ("hp:ax1" == sNodeName)
{ {
m_nAxixX1 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nAxixY1 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nAxixX1 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nAxixY1 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:ax2" == oChild.GetName()) else if ("hp:ax2" == sNodeName)
{ {
m_nAxixX2 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nAxixY2 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nAxixX2 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nAxixY2 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
} }

View File

@ -20,7 +20,7 @@ public:
CCtrlShapeArc(const HWP_STRING& sCtrlID); CCtrlShapeArc(const HWP_STRING& sCtrlID);
CCtrlShapeArc(const CCtrlGeneralShape& oShape); CCtrlShapeArc(const CCtrlGeneralShape& oShape);
CCtrlShapeArc(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeArc(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeArc(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeArc(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -25,28 +25,45 @@ CCtrlShapeConnectLine::CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, int nSiz
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeConnectLine::CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeConnectLine::CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_eType = GetConnectLineType(oNode.GetAttributeInt(L"type")); m_eType = GetConnectLineType(oReader.GetAttributeInt("type"));
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hp:startPt" == oChild.GetName()) if ("hp:startPt" == sNodeName)
{ {
m_oStartPt.m_nX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_oStartPt.m_nY = oChild.GetAttributeInt(L"y"); {
m_oStartPt.m_shSubjectIDRef = oChild.GetAttributeInt(L"subjectIDRef"); if ("x" == sAttributeName)
m_oStartPt.m_shSubjectIdx = oChild.GetAttributeInt(L"subjectIdx"); m_oStartPt.m_nX = oReader.GetInt();
else if ("y" == sAttributeName)
m_oStartPt.m_nY = oReader.GetInt();
else if ("subjectIDRef" == sAttributeName)
m_oStartPt.m_shSubjectIDRef = oReader.GetInt();
else if ("subjectIdx" == sAttributeName)
m_oStartPt.m_shSubjectIdx = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:endPt" == oChild.GetName()) else if ("hp:endPt" == sNodeName)
{ {
m_oEndPt.m_nX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_oEndPt.m_nY = oChild.GetAttributeInt(L"y"); {
m_oEndPt.m_shSubjectIDRef = oChild.GetAttributeInt(L"subjectIDRef"); if ("x" == sAttributeName)
m_oEndPt.m_shSubjectIdx = oChild.GetAttributeInt(L"subjectIdx"); m_oEndPt.m_nX = oReader.GetInt();
else if ("y" == sAttributeName)
m_oEndPt.m_nY = oReader.GetInt();
else if ("subjectIDRef" == sAttributeName)
m_oEndPt.m_shSubjectIDRef = oReader.GetInt();
else if ("subjectIdx" == sAttributeName)
m_oEndPt.m_shSubjectIdx = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
END_WHILE
} }
EShapeType CCtrlShapeConnectLine::GetShapeType() const EShapeType CCtrlShapeConnectLine::GetShapeType() const

View File

@ -33,7 +33,7 @@ class CCtrlShapeConnectLine : public CCtrlGeneralShape
TConnectPoint m_oEndPt; TConnectPoint m_oEndPt;
public: public:
CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeConnectLine(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;
}; };

View File

@ -17,34 +17,47 @@ CCtrlShapeCurve::CCtrlShapeCurve(const HWP_STRING& sCtrlID, int nSize, CHWPStrea
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeCurve::CCtrlShapeCurve(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeCurve::CCtrlShapeCurve(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
std::vector<CXMLNode> arChilds{oNode.GetChilds(L"hp:seg")}; // bool bReadedType
TPoint oPoint1{0, 0}, oPoint2{0, 0};
HWP_BYTE chSegmentType = 0;
m_arPoints.resize(arChilds.size() + 1); WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:seg")
m_arSegmentType.resize(arChilds.size());
HWP_STRING sType;
for (unsigned int unIndex = 0; unIndex < arChilds.size(); ++unIndex)
{ {
sType = arChilds[unIndex].GetAttribute(L"type"); chSegmentType = 0;
oPoint1 = {0, 0};
oPoint2 = {0, 0};
if (L"CURVE" == sType) START_READ_ATTRIBUTES(oReader)
m_arSegmentType[unIndex] = 1;
else if (L"LINE" == sType)
m_arSegmentType[unIndex] = 0;
m_arPoints[unIndex].m_nX = arChilds[unIndex].GetAttributeInt(L"x1");
m_arPoints[unIndex].m_nY = arChilds[unIndex].GetAttributeInt(L"y1");
if (unIndex == arChilds.size() - 1)
{ {
m_arPoints[unIndex + 1].m_nX = arChilds[unIndex].GetAttributeInt(L"x2"); if ("type" == sAttributeName)
m_arPoints[unIndex + 1].m_nY = arChilds[unIndex].GetAttributeInt(L"y2"); {
const std::string sType{oReader.GetText2A()};
if ("CURVE" == sType)
chSegmentType = 1;
else if ("LINE" == sType)
chSegmentType = 0;
}
else if ("x1" == sAttributeName)
oPoint1.m_nX = oReader.GetInt();
else if ("y1" == sAttributeName)
oPoint1.m_nY = oReader.GetInt();
else if ("x2" == sAttributeName)
oPoint2.m_nX = oReader.GetInt();
else if ("y2" == sAttributeName)
oPoint2.m_nY = oReader.GetInt();
} }
END_READ_ATTRIBUTES(oReader)
m_arSegmentType.push_back(chSegmentType);
m_arPoints.push_back(oPoint1);
} }
END_WHILE
m_arPoints.push_back(oPoint2);
} }
EShapeType CCtrlShapeCurve::GetShapeType() const EShapeType CCtrlShapeCurve::GetShapeType() const

View File

@ -16,7 +16,7 @@ public:
CCtrlShapeCurve(const HWP_STRING& sCtrlID); CCtrlShapeCurve(const HWP_STRING& sCtrlID);
CCtrlShapeCurve(const CCtrlGeneralShape& oShape); CCtrlShapeCurve(const CCtrlGeneralShape& oShape);
CCtrlShapeCurve(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeCurve(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeCurve(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeCurve(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -34,51 +34,101 @@ CCtrlShapeEllipse::CCtrlShapeEllipse(const HWP_STRING& sCtrlID, int nSize, CHWPS
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeEllipse::CCtrlShapeEllipse(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeEllipse::CCtrlShapeEllipse(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_bIntervalDirty = oNode.GetAttributeBool(L"intervalDirty"); START_READ_ATTRIBUTES(oReader)
m_bHasArcProperty = oNode.GetAttributeBool(L"hasArcPr");
m_eArcType = GetArcType(oNode.GetAttribute(L"arcType"));
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hc:center" == oChild.GetName()) if ("intervalDirty" == sAttributeName)
m_bIntervalDirty = oReader.GetBool();
else if ("hasArcPr" == sAttributeName)
m_bHasArcProperty = oReader.GetBool();
else if ("arcType" == sAttributeName)
m_eArcType = GetArcType(oReader.GetText2());
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{
if ("hc:center" == sNodeName)
{ {
m_nCenterX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nCenterY = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nCenterX = oReader.GetInt();
else if ("y" == sAttributeName)
m_nCenterY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:ax1" == oChild.GetName()) else if ("hp:ax1" == sNodeName)
{ {
m_nAxixX1 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nAxixY1 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nAxixX1 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nAxixY1 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:ax2" == oChild.GetName()) else if ("hp:ax2" == sNodeName)
{ {
m_nAxixX2 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nAxixY2 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nAxixX2 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nAxixY2 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hc:start1" == oChild.GetName()) else if ("hp:start1" == sNodeName)
{ {
m_nStartX1 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nStartY1 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nStartX1 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nStartY1 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hc:start2" == oChild.GetName()) else if ("hp:start2" == sNodeName)
{ {
m_nStartX2 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nStartY2 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nStartX2 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nStartY2 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hc:end1" == oChild.GetName()) else if ("hp:end1" == sNodeName)
{ {
m_nEndX1 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nEndY1 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nEndX1 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nEndY1 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hc:end2" == oChild.GetName()) else if ("hp:end2" == sNodeName)
{ {
m_nEndX2 = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nEndY2 = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nEndX2 = oReader.GetInt();
else if ("y" == sAttributeName)
m_nEndY2 = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
END_WHILE
} }
EShapeType CCtrlShapeEllipse::GetShapeType() const EShapeType CCtrlShapeEllipse::GetShapeType() const

View File

@ -39,7 +39,7 @@ public:
CCtrlShapeEllipse(const HWP_STRING& sCtrlID); CCtrlShapeEllipse(const HWP_STRING& sCtrlID);
CCtrlShapeEllipse(const CCtrlGeneralShape& oShape); CCtrlShapeEllipse(const CCtrlGeneralShape& oShape);
CCtrlShapeEllipse(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeEllipse(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeEllipse(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeEllipse(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -17,24 +17,37 @@ CCtrlShapeLine::CCtrlShapeLine(const HWP_STRING& sCtrlID, int nSize, CHWPStream&
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeLine::CCtrlShapeLine(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeLine::CCtrlShapeLine(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_shAttr = (short)oNode.GetAttributeBool(L"isReverseHV"); m_shAttr = (short)oReader.GetAttributeBool("isReverseHV");
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hc:startPt" == oChild.GetName()) if ("hc:startPt" == sNodeName)
{ {
m_nStartX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nStartY = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nStartX = oReader.GetInt();
else if ("y" == sAttributeName)
m_nStartY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hc:endPt" == oChild.GetName()) else if ("hc:endPt" == sNodeName)
{ {
m_nEndX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nEndY = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nEndX = oReader.GetInt();
else if ("y" == sAttributeName)
m_nEndY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }
END_WHILE
} }
EShapeType CCtrlShapeLine::GetShapeType() const EShapeType CCtrlShapeLine::GetShapeType() const

View File

@ -17,7 +17,7 @@ public:
CCtrlShapeLine(const HWP_STRING& sCtrlID); CCtrlShapeLine(const HWP_STRING& sCtrlID);
CCtrlShapeLine(const CCtrlGeneralShape& oShape); CCtrlShapeLine(const CCtrlGeneralShape& oShape);
CCtrlShapeLine(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeLine(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeLine(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeLine(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -17,16 +17,23 @@ CCtrlShapeOle::CCtrlShapeOle(const HWP_STRING& sCtrlID, int nSize, CHWPStream& o
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeOle::CCtrlShapeOle(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeOle::CCtrlShapeOle(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_sBinDataID = oNode.GetAttribute(L"binaryItemIDRef"); m_sBinDataID = oReader.GetAttribute("binaryItemIDRef");
for (CXMLNode& oChild : oNode.GetChilds(L"hc:extent")) WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hc:extent")
{ {
m_nExtentX = oChild.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_nExtentY = oChild.GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
m_nExtentX = oReader.GetInt();
else if ("y" == sAttributeName)
m_nExtentY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
END_WHILE
} }
EShapeType CCtrlShapeOle::GetShapeType() const EShapeType CCtrlShapeOle::GetShapeType() const

View File

@ -19,7 +19,7 @@ public:
CCtrlShapeOle(const HWP_STRING& sCtrlID); CCtrlShapeOle(const HWP_STRING& sCtrlID);
CCtrlShapeOle(const CCtrlGeneralShape& oShape); CCtrlShapeOle(const CCtrlGeneralShape& oShape);
CCtrlShapeOle(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeOle(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeOle(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeOle(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -25,7 +25,7 @@ CPicColor::CPicColor(CHWPStream& oBuffer, int nOff, int nSize)
m_nSize = nSize; m_nSize = nSize;
} }
CPicColor::CPicColor(CXMLNode& oNode) CPicColor::CPicColor(CXMLReader& oReader)
{ {
//TODO:: проверить //TODO:: проверить
m_nType = 0; m_nType = 0;
@ -65,33 +65,54 @@ CShadow::CShadow(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize)
m_nSize = oBuffer.GetDistanceToLastPos(true); m_nSize = oBuffer.GetDistanceToLastPos(true);
} }
CShadow::CShadow(CXMLNode& oNode, int nVersion) CShadow::CShadow(CXMLReader& oReader, int nVersion)
: CPicEffect(EPicEffectType::SHADOW), m_pColor(nullptr) : CPicEffect(EPicEffectType::SHADOW), m_pColor(nullptr)
{ {
m_nStyle = oNode.GetAttributeInt(L"style"); START_READ_ATTRIBUTES(oReader)
m_nTransparency = oNode.GetAttributeInt(L"alpha");
m_nBlur = oNode.GetAttributeInt(L"radius");
m_nDirection = oNode.GetAttributeInt(L"direction");
m_nDistance = oNode.GetAttributeInt(L"distance");
m_nRotation = (int)oNode.GetAttributeBool(L"rotationStyle");
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hp:skew" == oChild.GetName()) if ("style" == sAttributeName)
{ m_nStyle = oReader.GetInt();
m_fAngleX = oChild.GetAttributeDouble(L"x"); else if ("alpha" == sAttributeName)
m_fAngleY = oChild.GetAttributeDouble(L"y"); m_nTransparency = oReader.GetInt();
} else if ("radius" == sAttributeName)
else if (L"hp:scale" == oChild.GetName()) m_nBlur = oReader.GetInt();
{ else if ("direction" == sAttributeName)
m_fMagnifyX = oChild.GetAttributeDouble(L"x"); m_nDirection = oReader.GetInt();
m_fMagnifyY = oChild.GetAttributeDouble(L"y"); else if ("distance" == sAttributeName)
} m_nDistance = oReader.GetInt();
else if (L"hp:effectsColor" == oChild.GetName()) else if ("rotationStyle" == sAttributeName)
{ m_nRotation = (int)oReader.GetBool();
m_pColor = new CPicColor(oChild);
}
} }
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{
if ("hp:skew" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("x" == sAttributeName)
m_fAngleX = oReader.GetInt();
else if ("y" == sAttributeName)
m_fAngleY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:scale" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("x" == sAttributeName)
m_fMagnifyX = oReader.GetInt();
else if ("y" == sAttributeName)
m_fMagnifyY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:effectsColor" == sNodeName)
m_pColor = new CPicColor(oReader);
}
END_WHILE
} }
CShadow::~CShadow() CShadow::~CShadow()
@ -112,14 +133,24 @@ CNeon::CNeon(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize)
m_nSize = oBuffer.GetDistanceToLastPos(true); m_nSize = oBuffer.GetDistanceToLastPos(true);
} }
CNeon::CNeon(CXMLNode& oNode, int nVersion) CNeon::CNeon(CXMLReader& oReader, int nVersion)
: CPicEffect(EPicEffectType::GLOW), m_pColor(nullptr) : CPicEffect(EPicEffectType::GLOW), m_pColor(nullptr)
{ {
m_fTransparency = oNode.GetAttributeDouble(L"alpha"); START_READ_ATTRIBUTES(oReader)
m_fRadius = oNode.GetAttributeDouble(L"radius"); {
if ("alpha" == sAttributeName)
m_fTransparency = oReader.GetDouble();
else if ("radius" == sAttributeName)
m_fRadius = oReader.GetDouble();
}
END_READ_ATTRIBUTES(oReader)
CXMLNode oChild{oNode.GetChild(L"hp:effectsColor")}; WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:effectsColor")
m_pColor = new CPicColor(oChild); {
m_pColor = new CPicColor(oReader);
break;
}
END_WHILE
} }
CNeon::~CNeon() CNeon::~CNeon()
@ -136,10 +167,10 @@ CSoftEdge::CSoftEdge(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize)
m_nSize = 4; m_nSize = 4;
} }
CSoftEdge::CSoftEdge(CXMLNode& oNode, int nVersion) CSoftEdge::CSoftEdge(CXMLReader& oReader, int nVersion)
: CPicEffect(EPicEffectType::SOFT_EDGE) : CPicEffect(EPicEffectType::SOFT_EDGE)
{ {
m_fRadius = oNode.GetAttributeDouble(L"radius"); m_fRadius = oReader.GetAttributeDouble("radius");
} }
CReflect::CReflect(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize) CReflect::CReflect(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize)
@ -165,38 +196,48 @@ CReflect::CReflect(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize)
m_nSize = oBuffer.GetDistanceToLastPos(true); m_nSize = oBuffer.GetDistanceToLastPos(true);
} }
CReflect::CReflect(CXMLNode& oNode, int nVersion) CReflect::CReflect(CXMLReader& oReader, int nVersion)
: CPicEffect(EPicEffectType::REFLECT) : CPicEffect(EPicEffectType::REFLECT)
{ {
m_fRadius = oNode.GetAttributeDouble(L"radius"); START_READ_ATTRIBUTES(oReader)
m_fDirection = oNode.GetAttributeInt(L"direction");
m_fDistance = oNode.GetAttributeInt(L"distance");
m_nRotateStyle = (int)oNode.GetAttributeBool(L"rotationStyle");
m_fOffsetDirection = oNode.GetAttributeInt(L"fadeDirection");
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hp:skew" == oChild.GetName()) if ("radius" == sAttributeName)
{ m_fRadius = oReader.GetDouble();
m_fAngleX = oChild.GetAttributeDouble(L"x"); else if ("direction" == sAttributeName)
m_fAngleY = oChild.GetAttributeDouble(L"y"); m_fDirection = oReader.GetDouble();
} else if ("distance" == sAttributeName)
else if (L"hp:scale" == oChild.GetName()) m_fDistance = oReader.GetDouble();
{ else if ("rotationStyle" == sAttributeName)
m_fMagnifyX = oChild.GetAttributeDouble(L"x"); m_nRotateStyle = (int)oReader.GetBool();
m_fMagnifyY = oChild.GetAttributeDouble(L"y"); else if ("fadeDirection" == sAttributeName)
} m_fOffsetDirection = oReader.GetDouble();
else if (L"hp:alpha" == oChild.GetName())
{
m_fStartTrans = oChild.GetAttributeDouble(L"start");
m_fEndTrans = oChild.GetAttributeDouble(L"end");
}
else if (L"hp:pos" == oChild.GetName())
{
m_fStartPos = oChild.GetAttributeDouble(L"start");
m_fEndPos = oChild.GetAttributeDouble(L"end");
}
} }
END_READ_ATTRIBUTES(oReader)
#define READ_VALUES(value_1_name, value_1_variable, value_2_name, value_2_variable)\
{\
START_READ_ATTRIBUTES(oReader)\
{\
if (value_1_name == sAttributeName)\
value_1_variable = oReader.GetDouble();\
else if (value_2_name == sAttributeName)\
value_2_variable = oReader.GetDouble();\
}\
END_READ_ATTRIBUTES(oReader)\
}
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{
if ("hp:skew" == sNodeName)
READ_VALUES("x", m_fAngleX, "y", m_fAngleY)
else if ("hp:scale" == sNodeName)
READ_VALUES("x", m_fMagnifyX, "y", m_fMagnifyY)
else if ("hp:alpha" == sNodeName)
READ_VALUES("start", m_fStartTrans, "end", m_fEndTrans)
else if ("hp:pos" == sNodeName)
READ_VALUES("start", m_fStartPos, "end", m_fEndPos)
}
END_WHILE
} }
CCtrlShapePic::CCtrlShapePic() CCtrlShapePic::CCtrlShapePic()
@ -215,69 +256,105 @@ CCtrlShapePic::CCtrlShapePic(const HWP_STRING& sCtrlID, int nSize, CHWPStream& o
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapePic::CCtrlShapePic(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapePic::CCtrlShapePic(const HWP_STRING& sCtrlID, HWP::CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hp:imgRect" == oChild.GetName()) if ("hp:imgRect" == sNodeName)
{ {
for (CXMLNode& oGrandChild : oChild.GetChilds()) #define READ_POINT(index_point)\
{\
START_READ_ATTRIBUTES(oReader)\
{\
if ("x" == sAttributeName)\
m_arBorderPoints[index_point].m_nX = oReader.GetInt();\
else if ("y" == sAttributeName)\
m_arBorderPoints[index_point].m_nY = oReader.GetInt();\
}\
END_READ_ATTRIBUTES(oReader)\
}
WHILE_READ_NEXT_NODE_WITH_DEPTH_AND_NAME(oReader, Child)
{ {
for (unsigned int unIndex = 0; unIndex < 4; ++unIndex) if ("hc:pt0" == sNodeChildName)
READ_POINT(0)
else if ("hc:pt1" == sNodeChildName)
READ_POINT(1)
else if ("hc:pt2" == sNodeChildName)
READ_POINT(2)
else if ("hc:pt3" == sNodeChildName)
READ_POINT(3)
}
END_WHILE
}
else if ("hp:imgClip" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("left" == sAttributeName)
m_nCropLeft = oReader.GetInt();
else if ("right" == sAttributeName)
m_nCropRight = oReader.GetInt();
else if ("top" == sAttributeName)
m_nCropTop = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_nCropBottom = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:effects" == sNodeName)
{
WHILE_READ_NEXT_NODE_WITH_DEPTH_AND_NAME(oReader, Child)
{
if ("hp:shadow" == sNodeChildName)
m_arPicEffect.push_back(new CShadow(oReader, nVersion));
else if ("hp:glow" == sNodeChildName)
m_arPicEffect.push_back(new CNeon(oReader, nVersion));
else if ("hp:softEdge" == sNodeChildName)
m_arPicEffect.push_back(new CSoftEdge(oReader, nVersion));
else if ("hp:reflection" == sNodeChildName)
m_arPicEffect.push_back(new CReflect(oReader, nVersion));
}
END_WHILE
}
else if ("hc:img" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("bright" == sAttributeName)
m_chBright = (HWP_BYTE)oReader.GetInt();
else if ("contrast" == sAttributeName)
m_chContrast = (HWP_BYTE)oReader.GetInt();
else if ("effect" == sAttributeName)
{ {
if ((L"hc:pt" + std::to_wstring(unIndex)) == oGrandChild.GetName()) const std::string sType{oReader.GetText2A()};
{
m_arBorderPoints[unIndex].m_nX = oGrandChild.GetAttributeInt(L"x"); if ("REAL_PIC" == sType)
m_arBorderPoints[unIndex].m_nY = oGrandChild.GetAttributeInt(L"y"); m_chEffect = 0;
break; else if ("GRAY_SCALE" == sType)
} m_chEffect = 1;
else if ("BLACK_WHITE" == sType)
m_chEffect = 2;
} }
else if ("binaryItemIDRef" == sAttributeName)
m_sBinDataID = oReader.GetText2();
} }
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:imgClip" == oChild.GetName()) else if ("hp:imgDim" == sNodeName)
{ {
m_nCropLeft = oChild.GetAttributeInt(L"left"); START_READ_ATTRIBUTES(oReader)
m_nCropRight = oChild.GetAttributeInt(L"right");
m_nCropTop = oChild.GetAttributeInt(L"top");
m_nCropBottom = oChild.GetAttributeInt(L"bottom");
}
else if (L"hp:effects" == oChild.GetName())
{
for (CXMLNode& oGrandChild : oChild.GetChilds())
{ {
if (L"hp:shadow" == oGrandChild.GetName()) if ("dimwidth" == sAttributeName)
m_arPicEffect.push_back(new CShadow(oGrandChild, nVersion)); m_nIniPicWidth = oReader.GetInt();
else if (L"hp:glow" == oGrandChild.GetName()) else if ("dimheight" == sAttributeName)
m_arPicEffect.push_back(new CNeon(oGrandChild, nVersion)); m_nIniPicHeight = oReader.GetInt();
else if (L"hp:softEdge" == oGrandChild.GetName())
m_arPicEffect.push_back(new CSoftEdge(oGrandChild, nVersion));
else if (L"hp:reflection" == oGrandChild.GetName())
m_arPicEffect.push_back(new CReflect(oGrandChild, nVersion));
} }
} END_READ_ATTRIBUTES(oReader)
else if (L"hc:img" == oChild.GetName())
{
m_chBright = (HWP_BYTE)oChild.GetAttributeInt(L"bright");
m_chContrast = (HWP_BYTE)oChild.GetAttributeInt(L"contrast");
HWP_STRING sType = oChild.GetAttribute(L"effect");
if (L"REAL_PIC" == sType)
m_chEffect = 0;
else if (L"GRAY_SCALE" == sType)
m_chEffect = 1;
else if (L"BLACK_WHITE" == sType)
m_chEffect = 2;
m_sBinDataID = oChild.GetAttribute(L"binaryItemIDRef");
}
else if (L"hp:imgDim" == oChild.GetName())
{
m_nIniPicWidth = oChild.GetAttributeInt(L"dimwidth");
m_nIniPicHeight = oChild.GetAttributeInt(L"dimheight");
} }
} }
END_WHILE
} }
CCtrlShapePic::~CCtrlShapePic() CCtrlShapePic::~CCtrlShapePic()

View File

@ -31,7 +31,7 @@ class CPicColor
int m_nRGB; int m_nRGB;
public: public:
CPicColor(CHWPStream& oBuffer, int nOff, int nSize); CPicColor(CHWPStream& oBuffer, int nOff, int nSize);
CPicColor(CXMLNode& oNode); CPicColor(CXMLReader& oReader);
}; };
class CPicEffect class CPicEffect
@ -61,7 +61,7 @@ class CShadow : public CPicEffect
CPicColor *m_pColor; CPicColor *m_pColor;
public: public:
CShadow(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize); CShadow(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize);
CShadow(CXMLNode& oNode, int nVersion); CShadow(CXMLReader& oReader, int nVersion);
~CShadow(); ~CShadow();
}; };
@ -72,7 +72,7 @@ class CNeon : public CPicEffect
CPicColor *m_pColor; CPicColor *m_pColor;
public: public:
CNeon(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize); CNeon(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize);
CNeon(CXMLNode& oNode, int nVersion); CNeon(CXMLReader& oReader, int nVersion);
~CNeon(); ~CNeon();
}; };
@ -81,7 +81,7 @@ class CSoftEdge : public CPicEffect
float m_fRadius; float m_fRadius;
public: public:
CSoftEdge(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize); CSoftEdge(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize);
CSoftEdge(CXMLNode& oNode, int nVersion); CSoftEdge(CXMLReader& oReader, int nVersion);
}; };
class CReflect : public CPicEffect class CReflect : public CPicEffect
@ -102,7 +102,7 @@ class CReflect : public CPicEffect
float m_fOffsetDirection; float m_fOffsetDirection;
public: public:
CReflect(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize); CReflect(int nTypeNum, CHWPStream& oBuffer, int nOff, int nSize);
CReflect(CXMLNode& oNode, int nVersion); CReflect(CXMLReader& oReader, int nVersion);
}; };
class CCtrlShapePic : public CCtrlGeneralShape class CCtrlShapePic : public CCtrlGeneralShape
@ -134,7 +134,7 @@ public:
CCtrlShapePic(const HWP_STRING& sCtrlID); CCtrlShapePic(const HWP_STRING& sCtrlID);
CCtrlShapePic(const CCtrlGeneralShape& oShape); CCtrlShapePic(const CCtrlGeneralShape& oShape);
CCtrlShapePic(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapePic(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapePic(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapePic(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
~CCtrlShapePic(); ~CCtrlShapePic();
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -17,18 +17,27 @@ CCtrlShapePolygon::CCtrlShapePolygon(const HWP_STRING& sCtrlID, int nSize, CHWPS
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapePolygon::CCtrlShapePolygon(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapePolygon::CCtrlShapePolygon(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
std::vector<CXMLNode> arChilds{oNode.GetChilds(L"hc:pt")}; TPoint oPoint{0, 0};
m_arPoints.resize(arChilds.size()); WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hc:pt")
for (unsigned int unIndex = 0; unIndex < arChilds.size(); ++unIndex)
{ {
m_arPoints[unIndex].m_nX = arChilds[unIndex].GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_arPoints[unIndex].m_nY = arChilds[unIndex].GetAttributeInt(L"y"); {
if ("x" == sAttributeName)
oPoint.m_nX = oReader.GetInt();
else if ("y" == sAttributeName)
oPoint.m_nY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
m_arPoints.push_back(oPoint);
oPoint = {0, 0};
} }
END_WHILE
m_nPoints = m_arPoints.size(); m_nPoints = m_arPoints.size();
} }

View File

@ -15,7 +15,7 @@ public:
CCtrlShapePolygon(const HWP_STRING& sCtrlID); CCtrlShapePolygon(const HWP_STRING& sCtrlID);
CCtrlShapePolygon(const CCtrlGeneralShape& oShape); CCtrlShapePolygon(const CCtrlGeneralShape& oShape);
CCtrlShapePolygon(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapePolygon(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapePolygon(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapePolygon(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -17,20 +17,35 @@ CCtrlShapeRect::CCtrlShapeRect(const HWP_STRING& sCtrlID, int nSize, CHWPStream&
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeRect::CCtrlShapeRect(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeRect::CCtrlShapeRect(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_chCurv = (HWP_BYTE)oNode.GetAttributeInt(L"ratio"); m_chCurv = (HWP_BYTE)oReader.GetAttributeInt("ratio");
for (unsigned int unIndex = 0; unIndex < 4; ++unIndex) #define READ_POINT(point_index)\
{ {\
if ((L"hc:pt" + std::to_wstring(unIndex)) == oNode.GetName()) START_READ_ATTRIBUTES(oReader)\
{ {\
m_arPoints[unIndex].m_nX = oNode.GetAttributeInt(L"x"); if ("x" == sAttributeName)\
m_arPoints[unIndex].m_nY = oNode.GetAttributeInt(L"y"); m_arPoints[point_index].m_nX = oReader.GetInt();\
break; else if ("y" == sAttributeName)\
} m_arPoints[point_index].m_nY = oReader.GetInt();\
}\
END_READ_ATTRIBUTES(oReader)\
} }
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{
if ("hc:pt0" == sNodeName)
READ_POINT(0)
else if ("hc:pt1" == sNodeName)
READ_POINT(1)
else if ("hc:pt2" == sNodeName)
READ_POINT(2)
else if ("hc:pt3" == sNodeName)
READ_POINT(3)
}
END_WHILE
} }
EShapeType CCtrlShapeRect::GetShapeType() const EShapeType CCtrlShapeRect::GetShapeType() const

View File

@ -15,7 +15,7 @@ public:
CCtrlShapeRect(const HWP_STRING& sCtrlID); CCtrlShapeRect(const HWP_STRING& sCtrlID);
CCtrlShapeRect(const CCtrlGeneralShape& oShape); CCtrlShapeRect(const CCtrlGeneralShape& oShape);
CCtrlShapeRect(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeRect(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeRect(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeRect(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -17,58 +17,79 @@ CCtrlShapeTextArt::CCtrlShapeTextArt(const HWP_STRING& sCtrlID, int nSize, CHWPS
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeTextArt::CCtrlShapeTextArt(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeTextArt::CCtrlShapeTextArt(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
m_sText = oNode.GetAttribute(L"text"); m_sText = oReader.GetAttribute("text");
for (CXMLNode& oChild : oNode.GetChilds()) #define READ_POINT(variable_point)\
{\
START_READ_ATTRIBUTES(oReader)\
{\
if ("x" == sAttributeName)\
variable_point.m_nX = oReader.GetInt();\
else if ("y" == sAttributeName)\
variable_point.m_nY = oReader.GetInt();\
}\
END_READ_ATTRIBUTES(oReader)\
}
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hp:pt0" == oChild.GetName()) if ("hp:pt0" == sNodeName)
READ_POINT(m_oPt0)
else if ("hp:pt1" == sNodeName)
READ_POINT(m_oPt1)
else if ("hp:pt2" == sNodeName)
READ_POINT(m_oPt2)
else if ("hp:pt3" == sNodeName)
READ_POINT(m_oPt3)
else if ("hp:textartPr" == sNodeName)
{ {
m_oPt0.m_nX = oNode.GetAttributeInt(L"x"); START_READ_ATTRIBUTES(oReader)
m_oPt0.m_nY = oNode.GetAttributeInt(L"y");
}
else if (L"hp:pt1" == oChild.GetName())
{
m_oPt1.m_nX = oNode.GetAttributeInt(L"x");
m_oPt1.m_nY = oNode.GetAttributeInt(L"y");
}
else if (L"hp:pt2" == oChild.GetName())
{
m_oPt2.m_nX = oNode.GetAttributeInt(L"x");
m_oPt2.m_nY = oNode.GetAttributeInt(L"y");
}
else if (L"hp:pt3" == oChild.GetName())
{
m_oPt3.m_nX = oNode.GetAttributeInt(L"x");
m_oPt3.m_nY = oNode.GetAttributeInt(L"y");
}
else if (L"hp:textartPr" == oChild.GetName())
{
m_sFontName = oChild.GetAttribute(L"fontName");
m_sFontStyle = oChild.GetAttribute(L"fontStyle");
m_sFontType = oChild.GetAttribute(L"fontType");
m_sTextShape = oChild.GetAttribute(L"textShape");
m_sFontStyle = oChild.GetAttribute(L"fontStyle");
m_shLineSpacing = oChild.GetAttributeInt(L"lineSpacing");
m_shSpacing = oChild.GetAttributeInt(L"spacing");
m_sAlign = oChild.GetAttribute(L"align");
//TODO:: реализовать shadows
}
else if (L"hp:outline" == oChild.GetName())
{
std::vector<CXMLNode> arGrandChilds{oChild.GetChilds(L"hp:pt")};
m_arOutline.resize(arGrandChilds.size());
for (unsigned int unIndex = 0; unIndex < arGrandChilds.size(); ++unIndex)
{ {
m_arOutline[unIndex].m_nX = arGrandChilds[unIndex].GetAttributeInt(L"x"); if ("fontName" == sAttributeName)
m_arOutline[unIndex].m_nY = arGrandChilds[unIndex].GetAttributeInt(L"y"); m_sFontName = oReader.GetText2();
else if ("fontStyle" == sAttributeName)
m_sFontStyle = oReader.GetText2();
else if ("fontType" == sAttributeName)
m_sFontType = oReader.GetText2();
else if ("textShape" == sAttributeName)
m_sTextShape = oReader.GetText2();
else if ("align" == sAttributeName)
m_sAlign = oReader.GetText2();
else if ("lineSpacing" == sAttributeName)
m_shLineSpacing = oReader.GetInt();
else if ("spacing" == sAttributeName)
m_shSpacing = oReader.GetInt();
//TODO:: реализовать shadows
} }
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:outline" == sNodeName)
{
TPoint oPoint{0, 0};
WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:pt")
{
START_READ_ATTRIBUTES(oReader)
{
if ("x" == sAttributeName)
oPoint.m_nX = oReader.GetInt();
else if ("y" == sAttributeName)
oPoint.m_nY = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
m_arOutline.push_back(oPoint);
oPoint = {0, 0};
}
END_WHILE
} }
} }
END_WHILE
} }
EShapeType CCtrlShapeTextArt::GetShapeType() const EShapeType CCtrlShapeTextArt::GetShapeType() const

View File

@ -28,7 +28,7 @@ public:
CCtrlShapeTextArt(const HWP_STRING& sCtrlID); CCtrlShapeTextArt(const HWP_STRING& sCtrlID);
CCtrlShapeTextArt(const CCtrlGeneralShape& oShape); CCtrlShapeTextArt(const CCtrlGeneralShape& oShape);
CCtrlShapeTextArt(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeTextArt(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeTextArt(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeTextArt(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -14,21 +14,28 @@ CCtrlShapeVideo::CCtrlShapeVideo(const HWP_STRING& sCtrlID, int nSize, CHWPStrea
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlShapeVideo::CCtrlShapeVideo(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlShapeVideo::CCtrlShapeVideo(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlGeneralShape(sCtrlID, oNode, nVersion) : CCtrlGeneralShape(sCtrlID, oReader, nVersion)
{ {
HWP_STRING sType = oNode.GetAttribute(L"videotype"); START_READ_ATTRIBUTES(oReader)
{
if ("type" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if (L"Local" == sType) if ("Local" == sType)
m_nVideoType = 0; m_nVideoType = 0;
else if (L"Web" == sType) else if ("Web" == sType)
m_nVideoType = 1; m_nVideoType = 1;
}
m_shVideoBinID = oNode.GetAttributeInt(L"fileIDRef"); else if ("fileIDRef" == sAttributeName)
m_sThumnailBinID = oNode.GetAttribute(L"imageIDRef"); m_shVideoBinID = oReader.GetInt();
else if ("imageIDRef" == sAttributeName)
if (1 == m_nVideoType) m_sThumnailBinID = oReader.GetInt();
m_sWebURL = oNode.GetAttribute(L"tag"); else if ("tag" == sAttributeName)
m_sWebURL = oReader.GetText2();
}
END_READ_ATTRIBUTES(oReader)
} }
EShapeType CCtrlShapeVideo::GetShapeType() const EShapeType CCtrlShapeVideo::GetShapeType() const

View File

@ -15,7 +15,7 @@ public:
CCtrlShapeVideo(const HWP_STRING& sCtrlID); CCtrlShapeVideo(const HWP_STRING& sCtrlID);
CCtrlShapeVideo(const CCtrlGeneralShape& oShape); CCtrlShapeVideo(const CCtrlGeneralShape& oShape);
CCtrlShapeVideo(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlShapeVideo(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlShapeVideo(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlShapeVideo(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
EShapeType GetShapeType() const override; EShapeType GetShapeType() const override;

View File

@ -10,44 +10,72 @@ CCtrlTable::CCtrlTable(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer
: CCtrlCommon(sCtrlID, nSize, oBuffer, nOff, nVersion) : CCtrlCommon(sCtrlID, nSize, oBuffer, nOff, nVersion)
{} {}
CCtrlTable::CCtrlTable(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion) CCtrlTable::CCtrlTable(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion)
: CCtrlCommon(sCtrlID, oNode, nVersion) : CCtrlCommon(sCtrlID, oReader, nVersion)
{ {
m_shNRows = oNode.GetAttributeInt(L"rowCnt"); START_READ_ATTRIBUTES(oReader)
m_shNCols = oNode.GetAttributeInt(L"colCnt");
m_shCellSpacing = oNode.GetAttributeInt(L"cellSpacing");
m_shBorderFillID = oNode.GetAttributeInt(L"borderFillIDRef");
for (CXMLNode& oChild : oNode.GetChilds())
{ {
if (L"hp:inMargin" == oChild.GetName()) if ("rowCnt" == sAttributeName)
m_shNRows = oReader.GetInt();
else if ("colCnt" == sAttributeName)
m_shNCols = oReader.GetInt();
else if ("cellSpacing" == sAttributeName)
m_shCellSpacing = oReader.GetInt();
else if ("borderFillIDRef" == sAttributeName)
m_shBorderFillID = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{
if ("hp:inMargin" == sNodeName)
{ {
m_shInLSpace = oChild.GetAttributeInt(L"left"); START_READ_ATTRIBUTES(oReader)
m_shInRSpace = oChild.GetAttributeInt(L"right"); {
m_shInTSpace = oChild.GetAttributeInt(L"top"); if ("left" == sAttributeName)
m_shInBSpace = oChild.GetAttributeInt(L"bottom"); m_shInLSpace = oReader.GetInt();
else if ("right" == sAttributeName)
m_shInRSpace = oReader.GetInt();
else if ("top" == sAttributeName)
m_shInTSpace = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_shInBSpace = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
else if (L"hp:cellzoneList" == oChild.GetName()) else if ("hp:cellzoneList" == sNodeName)
{ {
for (CXMLNode& oGrandChild : oChild.GetChilds(L"hp:cellzone")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Child, "hp:cellzone")
{ {
TCellZone* pCellZone = new TCellZone(); TCellZone* pCellZone = new TCellZone();
pCellZone->m_shStartRowAddr = oGrandChild.GetAttributeInt(L"startRowAddr"); START_READ_ATTRIBUTES(oReader)
pCellZone->m_shStartColAddr = oGrandChild.GetAttributeInt(L"startColAddr"); {
pCellZone->m_shEndRowAddr = oGrandChild.GetAttributeInt(L"endRowAddr"); if ("startRowAddr" == sAttributeName)
pCellZone->m_shEndColAddr = oGrandChild.GetAttributeInt(L"endColAddr"); pCellZone->m_shStartRowAddr = oReader.GetInt();
pCellZone->m_shBorderFillIDRef = oGrandChild.GetAttributeInt(L"borderFillIDRef"); else if ("startColAddr" == sAttributeName)
pCellZone->m_shStartColAddr = oReader.GetInt();
else if ("endRowAddr" == sAttributeName)
pCellZone->m_shEndRowAddr = oReader.GetInt();
else if ("endColAddr" == sAttributeName)
pCellZone->m_shEndColAddr = oReader.GetInt();
else if ("borderFillIDRef" == sAttributeName)
pCellZone->m_shBorderFillIDRef = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
m_arCellzoneList.push_back(pCellZone); m_arCellzoneList.push_back(pCellZone);
} }
END_WHILE
} }
else if(L"hp:tr" == oChild.GetName()) else if ("hp:tr" == sNodeName)
{ {
for (CXMLNode& oGrandChild : oChild.GetChilds(L"hp:tc")) WHILE_READ_NEXT_NODE_WITH_DEPTH_ONE_NAME(oReader, Child, "hp:tc")
m_arCells.push_back(new CTblCell(oGrandChild, nVersion)); m_arCells.push_back(new CTblCell(oReader, nVersion));
END_WHILE
} }
} }
END_WHILE
} }
CCtrlTable::~CCtrlTable() CCtrlTable::~CCtrlTable()

View File

@ -32,7 +32,7 @@ class CCtrlTable : public CCtrlCommon
public: public:
CCtrlTable(const HWP_STRING& sCtrlID); CCtrlTable(const HWP_STRING& sCtrlID);
CCtrlTable(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CCtrlTable(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlTable(const HWP_STRING& sCtrlID, CXMLNode& oNode, int nVersion); CCtrlTable(const HWP_STRING& sCtrlID, CXMLReader& oReader, int nVersion);
~CCtrlTable(); ~CCtrlTable();
ECtrlObjectType GetCtrlType() const override; ECtrlObjectType GetCtrlType() const override;

View File

@ -25,37 +25,56 @@ CHWPPargraph::CHWPPargraph()
: m_pLineSegs(nullptr) : m_pLineSegs(nullptr)
{} {}
CHWPPargraph::CHWPPargraph(CXMLNode& oNode, int nVersion) CHWPPargraph::CHWPPargraph(CXMLReader& oReader, int nVersion)
: m_chBreakType(0), m_pLineSegs(nullptr) : m_chBreakType(0), m_pLineSegs(nullptr)
{ {
m_shParaShapeID = oNode.GetAttributeInt(L"paraPrIDRef"); START_READ_ATTRIBUTES(oReader)
m_shParaStyleID = oNode.GetAttributeInt(L"styleIDRef"); {
if ("paraPrIDRef" == sAttributeName)
if (oNode.GetAttributeBool(L"pageBreak")) m_shParaShapeID = oReader.GetInt();
m_chBreakType |= 0b00000100; else if ("styleIDRef" == sAttributeName)
else m_shParaStyleID = oReader.GetInt();
m_chBreakType &= 0b11111011; else if ("pageBreak" == sAttributeName)
{
if (oNode.GetAttributeBool(L"columnBreak")) if (oReader.GetBool())
m_chBreakType |= 0b00001000; m_chBreakType |= 0b00000100;
else else
m_chBreakType &= 0b11110111; m_chBreakType &= 0b11111011;
}
else if ("columnBreak" == sAttributeName)
{
if (oReader.GetBool())
m_chBreakType |= 0b00001000;
else
m_chBreakType &= 0b11110111;
}
}
END_READ_ATTRIBUTES(oReader)
int nCharShapeID = 0; int nCharShapeID = 0;
std::string sNodeName;
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:run" == oChild.GetName()) sNodeName = oReader.GetNameA();
{
nCharShapeID = oChild.GetAttributeInt(L"charPrIDRef");
for (CXMLNode& oGrandChild : oChild.GetChilds()) if ("hp:run" == sNodeName)
ParseHWPParagraph(oGrandChild, nCharShapeID, nVersion);
}
else if (L"hp:linesegarray" == oChild.GetName())
{ {
CXMLNode oGrandChild{oChild.GetChild(L"hp:lineseg")}; nCharShapeID = oReader.GetAttributeInt("charPrIDRef");
m_pLineSegs = new CLineSeg(oGrandChild, nVersion);
WHILE_READ_NEXT_NODE(oReader)
ParseHWPParagraph(oReader, nCharShapeID, nVersion);
}
else if ("hp:linesegarray" == sNodeName)
{
WHILE_READ_NEXT_NODE(oReader)
{
if ("hp:lineseg" != oReader.GetNameA())
continue;
m_pLineSegs = new CLineSeg(oReader, nVersion);
break;
}
} }
} }
@ -69,79 +88,84 @@ CHWPPargraph::~CHWPPargraph()
delete m_pLineSegs; delete m_pLineSegs;
} }
bool CHWPPargraph::ParseHWPParagraph(CXMLNode& oNode, int nCharShapeID, int nVersion) bool CHWPPargraph::ParseHWPParagraph(CXMLReader& oReader, int nCharShapeID, int nVersion)
{ {
const size_t unCurrentParaCount = m_arP.size(); const size_t unCurrentParaCount = m_arP.size();
if (L"hp:secPr" == oNode.GetName()) const std::string sNodeName{oReader.GetNameA()};
m_arP.push_back(new CCtrlSectionDef(L"dces", oNode, nVersion));
else if (L"hp:ctrl" == oNode.GetName())
{
for(CXMLNode& oChild : oNode.GetChilds())
AddCtrl(CCtrl::GetCtrl(oChild, nVersion));
}
else if (L"hp:t" == oNode.GetName())
{
m_arP.push_back(new CParaText(L"____", oNode.GetText(), 0, nCharShapeID));
for(CXMLNode& oChild : oNode.GetChilds()) if ("hp:secPr" == sNodeName)
m_arP.push_back(new CCtrlSectionDef(L"dces", oReader, nVersion));
else if ("hp:ctrl" == sNodeName)
{
WHILE_READ_NEXT_NODE(oReader)
AddCtrl(CCtrl::GetCtrl(oReader, nVersion));
}
else if ("hp:t" == sNodeName)
{
m_arP.push_back(new CParaText(L"____", oReader.GetText(), 0, nCharShapeID));
std::string sChildNodeName;
WHILE_READ_NEXT_NODE(oReader)
{ {
if (L"hp:lineBreak" == oChild.GetName()) sChildNodeName = oReader.GetNameA();
if ("hp:lineBreak" == sChildNodeName)
m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::LINE_BREAK)); m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::LINE_BREAK));
else if (L"hp:hyphen" == oChild.GetName()) else if ("hp:hyphen" == sChildNodeName)
m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::HARD_HYPHEN)); m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::HARD_HYPHEN));
else if (L"hp:nbSpace" == oChild.GetName()|| else if ("hp:nbSpace" == sChildNodeName ||
L"hp:fwSpace" == oChild.GetName()) "hp:fwSpace" == sChildNodeName)
m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::HARD_SPACE)); m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::HARD_SPACE));
else if (L"hp:tab" == oChild.GetName()) else if ("hp:tab" == sChildNodeName)
m_arP.push_back(new CParaText(L"____", L"\t", 0)); m_arP.push_back(new CCtrlCharacter(L" _", ECtrlCharType::TABULATION));
} }
} }
else if (L"hp:tbl" == oNode.GetName()) else if ("hp:tbl" == sNodeName)
m_arP.push_back(new CCtrlTable(L" lbt", oNode, nVersion)); m_arP.push_back(new CCtrlTable(L" lbt", oReader, nVersion));
else if (L"hp:pic" == oNode.GetName()) else if ("hp:pic" == sNodeName)
m_arP.push_back(new CCtrlShapePic(L"cip$", oNode, nVersion)); m_arP.push_back(new CCtrlShapePic(L"cip$", oReader, nVersion));
else if (L"hp:container" == oNode.GetName()) else if ("hp:container" == sNodeName)
m_arP.push_back(new CCtrlContainer(L"noc$", oNode, nVersion)); m_arP.push_back(new CCtrlContainer(L"noc$", oReader, nVersion));
else if (L"hp:ole" == oNode.GetName()) else if ("hp:ole" == sNodeName)
m_arP.push_back(new CCtrlShapeOle(L"elo$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeOle(L"elo$", oReader, nVersion));
else if (L"hp:equation" == oNode.GetName()) else if ("hp:equation" == sNodeName)
m_arP.push_back(new CCtrlEqEdit(L"deqe", oNode, nVersion)); m_arP.push_back(new CCtrlEqEdit(L"deqe", oReader, nVersion));
else if (L"hp:line" == oNode.GetName()) else if ("hp:line" == sNodeName)
m_arP.push_back(new CCtrlShapeLine(L"nil$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeLine(L"nil$", oReader, nVersion));
else if (L"hp:rect" == oNode.GetName()) else if ("hp:rect" == sNodeName)
m_arP.push_back(new CCtrlShapeRect(L"cer$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeRect(L"cer$", oReader, nVersion));
else if (L"hp:ellipse" == oNode.GetName()) else if ("hp:ellipse" == sNodeName)
m_arP.push_back(new CCtrlShapeEllipse(L"lle$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeEllipse(L"lle$", oReader, nVersion));
else if (L"hp:arc" == oNode.GetName()) else if ("hp:arc" == sNodeName)
m_arP.push_back(new CCtrlShapeArc(L"cra$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeArc(L"cra$", oReader, nVersion));
else if (L"hp:polygon" == oNode.GetName()) else if ("hp:polygon" == sNodeName)
m_arP.push_back(new CCtrlShapePolygon(L"lop$", oNode, nVersion)); m_arP.push_back(new CCtrlShapePolygon(L"lop$", oReader, nVersion));
else if (L"hp:curve" == oNode.GetName()) else if ("hp:curve" == sNodeName)
m_arP.push_back(new CCtrlShapeCurve(L"ruc$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeCurve(L"ruc$", oReader, nVersion));
else if (L"hp:connectLine" == oNode.GetName()) else if ("hp:connectLine" == sNodeName)
m_arP.push_back(new CCtrlShapeConnectLine(L"loc$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeConnectLine(L"loc$", oReader, nVersion));
else if (L"hp:textart" == oNode.GetName()) else if ("hp:textart" == sNodeName)
m_arP.push_back(new CCtrlShapeTextArt(L"tat$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeTextArt(L"tat$", oReader, nVersion));
else if (L"hp:video" == oNode.GetName()) else if ("hp:video" == sNodeName)
m_arP.push_back(new CCtrlShapeVideo(L"div$", oNode, nVersion)); m_arP.push_back(new CCtrlShapeVideo(L"div$", oReader, nVersion));
if (unCurrentParaCount != m_arP.size()) if (unCurrentParaCount != m_arP.size())
return true; return true;
if (L"hp:switch" == oNode.GetName()) if ("hp:switch" == sNodeName)
{ {
for (CXMLNode& oCaseChild : oNode.GetChilds(L"hp:case")) WHILE_READ_NEXT_NODE(oReader)
{ {
for (CXMLNode& oChild : oCaseChild.GetChilds()) if ("hp:case" != oReader.GetNameA() &&
if (ParseHWPParagraph(oChild, nCharShapeID, nVersion)) "hp:default" != oReader.GetNameA())
continue;
WHILE_READ_NEXT_NODE(oReader)
if (ParseHWPParagraph(oReader, nCharShapeID, nVersion))
return true; return true;
} }
CXMLNode oDefaultChild{oNode.GetChild(L"hp:default")};
for (CXMLNode& oChild : oDefaultChild.GetChilds())
if (ParseHWPParagraph(oChild, nCharShapeID, nVersion))
return true;
} }
return false; return false;

View File

@ -4,7 +4,7 @@
#include "LineSeg.h" #include "LineSeg.h"
#include "RangeTag.h" #include "RangeTag.h"
#include "Ctrl.h" #include "Ctrl.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -26,10 +26,10 @@ class CHWPPargraph : public IRef
VECTOR<CCtrl*> m_arP; //HWPTAG_PARA_TEXT VECTOR<CCtrl*> m_arP; //HWPTAG_PARA_TEXT
bool ParseHWPParagraph(CXMLNode& oNode, int nCharShapeID, int nVersion); bool ParseHWPParagraph(CXMLReader& oReader, int nCharShapeID, int nVersion);
public: public:
CHWPPargraph(); CHWPPargraph();
CHWPPargraph(CXMLNode& oNode, int nVersion); CHWPPargraph(CXMLReader& oReader, int nVersion);
virtual ~CHWPPargraph(); virtual ~CHWPPargraph();
virtual EParagraphType GetType() const; virtual EParagraphType GetType() const;

View File

@ -20,11 +20,18 @@ CLineSeg::CLineSeg(int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int
oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true)); oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true));
} }
CLineSeg::CLineSeg(CXMLNode& oNode, int nVersion) CLineSeg::CLineSeg(CXMLReader& oReader, int nVersion)
{ {
//TODO:: реализовать //TODO:: реализовать
m_nLineSpacing = oNode.GetAttributeInt(L"spacing");
m_nTextHeight = oNode.GetAttributeInt(L"textheight"); START_READ_ATTRIBUTES(oReader)
{
if ("spacing" == sAttributeName)
m_nLineSpacing = oReader.GetInt();
else if ("textheight" == sAttributeName)
m_nTextHeight = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
int CLineSeg::GetLineSpacing() const int CLineSeg::GetLineSpacing() const

View File

@ -2,7 +2,7 @@
#define LINESEG_H #define LINESEG_H
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -20,7 +20,7 @@ class CLineSeg
bool m_bIsHeadingApplied; bool m_bIsHeadingApplied;
public: public:
CLineSeg(int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CLineSeg(int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CLineSeg(CXMLNode& oNode, int nVersion); CLineSeg(CXMLReader& oReader, int nVersion);
int GetLineSpacing() const; int GetLineSpacing() const;
}; };

View File

@ -25,41 +25,67 @@ CTblCell::CTblCell(int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true)); oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true));
} }
CTblCell::CTblCell(CXMLNode& oNode, int nVersion) CTblCell::CTblCell(CXMLReader& oReader, int nVersion)
{ {
m_shBorderFill = oNode.GetAttributeInt(L"borderFillIDRef"); m_shBorderFill = oReader.GetAttributeInt("borderFillIDRef");
for (CXMLNode& oChild : oNode.GetChilds()) WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
{ {
if (L"hp:cellAddr" == oChild.GetName()) if ("hp:cellAddr" == sNodeName)
{ {
m_shColAddr = oChild.GetAttributeInt(L"colAddr"); START_READ_ATTRIBUTES(oReader)
m_shRowAddr = oChild.GetAttributeInt(L"rowAddr");
}
else if (L"hp:cellSpan" == oChild.GetName())
{
m_shColSpan = oChild.GetAttributeInt(L"colSpan");
m_shRowSpan = oChild.GetAttributeInt(L"rowSpan");
}
else if (L"hp:cellSz" == oChild.GetName())
{
m_nWidth = oChild.GetAttributeInt(L"width");
m_nHeight = oChild.GetAttributeInt(L"height");
}
else if (L"hp:cellMargin" == oChild.GetName())
{
m_arMargin[0] = oChild.GetAttributeInt(L"left");
m_arMargin[1] = oChild.GetAttributeInt(L"rifht");
m_arMargin[2] = oChild.GetAttributeInt(L"top");
m_arMargin[3] = oChild.GetAttributeInt(L"bottom");
}
else if (L"hp:subList" == oChild.GetName())
{
m_eVertAlign = ::HWP::GetVertAlign(oChild.GetAttribute(L"vertAlign"));
for (CXMLNode& oGrandChild : oChild.GetChilds(L"hp:p"))
{ {
CCellParagraph *pCellParagraphs = new CCellParagraph(oGrandChild, nVersion); if ("colAddr" == sAttributeName)
m_shColAddr = oReader.GetInt();
else if ("rowAddr" == sAttributeName)
m_shRowAddr = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:cellSpan" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("colSpan" == sAttributeName)
m_shColSpan = oReader.GetInt();
else if ("rowSpan" == sAttributeName)
m_shRowSpan = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:cellSz" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("width" == sAttributeName)
m_nWidth = oReader.GetInt();
else if ("height" == sAttributeName)
m_nHeight = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:cellSz" == sNodeName)
{
START_READ_ATTRIBUTES(oReader)
{
if ("left" == sAttributeName)
m_arMargin[0] = oReader.GetInt();
else if ("right" == sAttributeName)
m_arMargin[1] = oReader.GetInt();
else if ("top" == sAttributeName)
m_arMargin[2] = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_arMargin[3] = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
}
else if ("hp:subList" == sNodeName)
{
m_eVertAlign = ::HWP::GetVertAlign(oReader.GetAttribute("vertAlign"));
WHILE_READ_NEXT_NODE_WITH_ONE_NAME(oReader, "hp:p")
{
CCellParagraph *pCellParagraphs = new CCellParagraph(oReader, nVersion);
if (nullptr == pCellParagraphs) if (nullptr == pCellParagraphs)
continue; continue;
@ -69,8 +95,10 @@ CTblCell::CTblCell(CXMLNode& oNode, int nVersion)
m_arParas.push_back(pCellParagraphs); m_arParas.push_back(pCellParagraphs);
} }
END_WHILE
} }
} }
END_WHILE
} }
void CTblCell::SetVertAlign(EVertAlign eVertAlign) void CTblCell::SetVertAlign(EVertAlign eVertAlign)

View File

@ -24,7 +24,7 @@ class CTblCell
HWP_STRING m_sMergedColName; HWP_STRING m_sMergedColName;
public: public:
CTblCell(int nSize, CHWPStream& oBuffer, int nOff, int nVersion); CTblCell(int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CTblCell(CXMLNode& oNode, int nVersion); CTblCell(CXMLReader& oReader, int nVersion);
void SetVertAlign(EVertAlign eVertAlign); void SetVertAlign(EVertAlign eVertAlign);

View File

@ -17,7 +17,7 @@ ENoteNumbering GetNoteNumbering(int nValue)
CNoteShape::CNoteShape() CNoteShape::CNoteShape()
{} {}
CNoteShape::CNoteShape(CXMLNode& oNode, int nVersion) CNoteShape::CNoteShape(CXMLReader& oReader, int nVersion)
{} {}
CNoteShape* CNoteShape::Parse(int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion) CNoteShape* CNoteShape::Parse(int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)

View File

@ -3,7 +3,7 @@
#include "../HWPElements/HwpRecordTypes.h" #include "../HWPElements/HwpRecordTypes.h"
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -47,7 +47,7 @@ class CNoteShape
int m_nNoteLineColor; int m_nNoteLineColor;
public: public:
CNoteShape(); CNoteShape();
CNoteShape(CXMLNode& oNode, int nVersion); CNoteShape(CXMLReader& oReader, int nVersion);
static CNoteShape* Parse(int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion); static CNoteShape* Parse(int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
}; };

View File

@ -5,31 +5,54 @@ namespace HWP
HWP::CPage::CPage() HWP::CPage::CPage()
{} {}
CPage::CPage(CXMLNode& oNode) CPage::CPage(CXMLReader& oReader)
{ {
m_bLandscape = L"NARROWLY" == oNode.GetAttribute(L"landscape"); START_READ_ATTRIBUTES(oReader)
m_nWidth = oNode.GetAttributeInt(L"width");
m_nHeight = oNode.GetAttributeInt(L"height");
std::wstring wsType = oNode.GetAttribute(L"gutterType");
if (L"LEFT_ONELY" == wsType)
m_chGutterType = 0;
else if (L"LEFT_RIGHT" == wsType)
m_chGutterType = 1;
else if (L"TOP_BOTTOM" == wsType)
m_chGutterType = 2;
for (CXMLNode& oChild : oNode.GetChilds(L"hp:margin"))
{ {
m_nMarginLeft = oChild.GetAttributeInt(L"left"); if ("landscape" == sAttributeName)
m_nMarginRight = oChild.GetAttributeInt(L"right"); m_bLandscape = "NARROWLY" == oReader.GetText2A();
m_nMarginTop = oChild.GetAttributeInt(L"top"); else if ("width" == sAttributeName)
m_nMarginBottom = oChild.GetAttributeInt(L"bottom"); m_nWidth = oReader.GetInt();
m_nMarginHeader = oChild.GetAttributeInt(L"header"); else if ("height" == sAttributeName)
m_nMarginFooter = oChild.GetAttributeInt(L"footer"); m_nHeight = oReader.GetInt();
m_nMarginGutter = oChild.GetAttributeInt(L"gutter"); else if ("gutterType" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if ("LEFT_ONELY" == sType)
m_chGutterType = 0;
else if ("LEFT_RIGHT" == sType)
m_chGutterType = 1;
else if ("TOP_BOTTOM" == sType)
m_chGutterType = 2;
}
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE(oReader)
{
if ("hp:margin" != oReader.GetNameA())
continue;
START_READ_ATTRIBUTES(oReader)
{
if ("left" == sAttributeName)
m_nMarginLeft = oReader.GetInt();
else if ("right" == sAttributeName)
m_nMarginRight = oReader.GetInt();
else if ("top" == sAttributeName)
m_nMarginTop = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_nMarginBottom = oReader.GetInt();
else if ("header" == sAttributeName)
m_nMarginHeader = oReader.GetInt();
else if ("footer" == sAttributeName)
m_nMarginFooter = oReader.GetInt();
else if ("gutter" == sAttributeName)
m_nMarginGutter = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }

View File

@ -2,7 +2,7 @@
#define PAGE_H #define PAGE_H
#include "../HWPStream.h" #include "../HWPStream.h"
#include "../Common/XMLNode.h" #include "../Common/XMLReader.h"
namespace HWP namespace HWP
{ {
@ -21,7 +21,7 @@ class CPage
int m_nMarginGutter; int m_nMarginGutter;
public: public:
CPage(); CPage();
CPage(CXMLNode& oNode); CPage(CXMLReader& oReader);
int GetWidth() const; int GetWidth() const;
int GetHeight() const; int GetHeight() const;

View File

@ -5,28 +5,49 @@ namespace HWP
CPageBorderFill::CPageBorderFill() CPageBorderFill::CPageBorderFill()
{} {}
CPageBorderFill::CPageBorderFill(CXMLNode& oNode, int nVersion) CPageBorderFill::CPageBorderFill(CXMLReader& oReader, int nVersion)
{ {
m_shBorderFill = oNode.GetAttributeInt(L"borderFillIDRef"); START_READ_ATTRIBUTES(oReader)
m_bTextBorder = L"PAPER" == oNode.GetAttribute(L"textBorder");
m_bHeaderInside = oNode.GetAttributeBool(L"headerInside");
m_bFooterInside = oNode.GetAttributeBool(L"footerInside");
HWP_STRING sType = oNode.GetAttribute(L"fillArea");
if (L"PAPER" == sType)
m_chFillArea = 0;
else if (L"PAGE" == sType)
m_chFillArea = 1;
else if (L"BORDER" == sType)
m_chFillArea = 2;
for (CXMLNode& oChild : oNode.GetChilds(L"offset"))
{ {
m_shOffsetLeft = oChild.GetAttributeInt(L"left"); if ("borderFillIDRef" == sAttributeName)
m_shOffsetRight = oChild.GetAttributeInt(L"right"); m_shBorderFill = oReader.GetInt();
m_shOffsetTop = oChild.GetAttributeInt(L"top"); else if ("textBorder" == sAttributeName)
m_shOffsetBottom = oChild.GetAttributeInt(L"bottom"); m_bTextBorder = "PAPER" == oReader.GetText2A();
else if ("headerInside" == sAttributeName)
m_bHeaderInside = oReader.GetBool();
else if ("footerInside" == sAttributeName)
m_bFooterInside = oReader.GetBool();
else if ("fillArea" == sAttributeName)
{
const std::string sType{oReader.GetText2A()};
if ("PAPER" == sType)
m_chFillArea = 0;
else if ("PAGE" == sType)
m_chFillArea = 1;
else if ("BORDER" == sType)
m_chFillArea = 2;
}
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE(oReader)
{
if ("offset" != oReader.GetNameA())
continue;
START_READ_ATTRIBUTES(oReader)
{
if ("left" == sAttributeName)
m_shOffsetLeft = oReader.GetInt();
else if ("right" == sAttributeName)
m_shOffsetRight = oReader.GetInt();
else if ("top" == sAttributeName)
m_shOffsetTop = oReader.GetInt();
else if ("bottom" == sAttributeName)
m_shOffsetBottom = oReader.GetInt();
}
END_READ_ATTRIBUTES(oReader)
} }
} }

Some files were not shown because too many files have changed in this diff Show More