mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
245 lines
8.4 KiB
C++
245 lines
8.4 KiB
C++
#include "HWPRecordNumbering.h"
|
|
|
|
namespace HWP
|
|
{
|
|
CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
|
|
: CHWPRecord(nTagNum, nLevel, nSize), m_pParent(&oDocInfo)
|
|
{
|
|
oBuffer.SavePosition();
|
|
|
|
for (int nIndex = 0; nIndex < 7; ++nIndex)
|
|
{
|
|
int nTypeBits;
|
|
oBuffer.ReadInt(nTypeBits);
|
|
|
|
m_arNumbering[nIndex].m_chAlign = (HWP_BYTE)(nTypeBits & 0x03);
|
|
m_arNumbering[nIndex].m_bUseInstWidth = CHECK_FLAG(nTypeBits, 0x40);
|
|
m_arNumbering[nIndex].m_bAutoIndent = CHECK_FLAG(nTypeBits, 0x80);
|
|
m_arNumbering[nIndex].m_chTextOffsetType = (HWP_BYTE)((nTypeBits >> 4) & 0x01);
|
|
|
|
oBuffer.ReadShort(m_arNumbering[nIndex].m_shWidthAdjust);
|
|
oBuffer.ReadShort(m_arNumbering[nIndex].m_shTextOffset);
|
|
oBuffer.ReadInt(m_arNumbering[nIndex].m_nCharShape);
|
|
oBuffer.ReadString(m_arNumbering[nIndex].m_sNumFormat, EStringCharacter::UTF16);
|
|
}
|
|
|
|
oBuffer.ReadShort(m_shStart);
|
|
|
|
if (nVersion > 5025 && (nSize > oBuffer.GetDistanceToLastPos())) //TODO:: добавить проверку offset-off < size
|
|
{
|
|
for (int nIndex = 0; nIndex < 7; ++nIndex)
|
|
oBuffer.ReadInt(m_arNumbering[nIndex].m_nStartNumber);
|
|
}
|
|
|
|
if (nVersion > 5100 && (nSize > oBuffer.GetDistanceToLastPos())) //TODO:: добавить проверку offset-off < size
|
|
{
|
|
for (int nIndex = 0; nIndex < 3; ++nIndex)
|
|
{
|
|
//Содержимое неизвестно, но оно содержит 8 байт.
|
|
oBuffer.Skip(8);
|
|
|
|
//Содержимое неизвестно, но оно содержит 4 байт.
|
|
oBuffer.Skip(4);
|
|
|
|
short shLen;
|
|
oBuffer.ReadShort(shLen);
|
|
|
|
oBuffer.Skip(shLen);
|
|
}
|
|
|
|
for (int nIndex = 0; nIndex < 3; ++nIndex)
|
|
oBuffer.ReadInt(m_arExtLevelStart[nIndex]);
|
|
}
|
|
|
|
oBuffer.RemoveLastSavedPos();
|
|
}
|
|
|
|
CHWPRecordNumbering::CHWPRecordNumbering(CHWPDocInfo& oDocInfo, CXMLReader& oReader, int nVersion)
|
|
: CHWPRecord(EHWPTag::HWPTAG_NUMBERING, 0, 0), m_pParent(&oDocInfo)
|
|
{
|
|
m_shStart = oReader.GetAttributeInt("start", 1);
|
|
|
|
unsigned int unIndex = 0;
|
|
short shLevel = 0;
|
|
std::string sNumFormat;
|
|
|
|
WHILE_READ_NEXT_NODE_WITH_NAME(oReader)
|
|
{
|
|
if ("hh:paraHead" == sNodeName ||
|
|
"paraHead" == sNodeName)
|
|
{
|
|
START_READ_ATTRIBUTES(oReader)
|
|
{
|
|
if ("align" == sAttributeName)
|
|
{
|
|
const std::string sType{oReader.GetTextA()};
|
|
|
|
if ("LEFT" == sType)
|
|
m_arNumbering[unIndex].m_chAlign = 0;
|
|
else if ("CENTER" == sType)
|
|
m_arNumbering[unIndex].m_chAlign = 1;
|
|
else if ("RIGHT" == sType)
|
|
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.GetTextA()};
|
|
|
|
if ("PERCENT" == sType)
|
|
m_arNumbering[unIndex].m_chTextOffsetType = 0;
|
|
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.GetTextA();
|
|
else if ("level" == sAttributeName)
|
|
shLevel = oReader.GetInt();
|
|
}
|
|
END_READ_ATTRIBUTES(oReader)
|
|
|
|
if ("DIGIT" == sNumFormat)
|
|
{
|
|
if (shLevel > 0 && shLevel < 11)
|
|
m_arNumbering[unIndex].m_sNumFormat = L'^' + std::to_wstring(shLevel) + L'.';
|
|
}
|
|
else if ("HANGUL_SYLLABLE" == sNumFormat ||
|
|
"HANGUL_JAMO" == sNumFormat)
|
|
{
|
|
switch (shLevel)
|
|
{
|
|
case 1: m_arNumbering[unIndex].m_sNumFormat = L"^가."; break;
|
|
case 2: m_arNumbering[unIndex].m_sNumFormat = L"^나."; break;
|
|
case 3: m_arNumbering[unIndex].m_sNumFormat = L"^다."; break;
|
|
case 4: m_arNumbering[unIndex].m_sNumFormat = L"^라."; break;
|
|
case 5: m_arNumbering[unIndex].m_sNumFormat = L"^마."; break;
|
|
case 6: m_arNumbering[unIndex].m_sNumFormat = L"^바."; break;
|
|
case 7: m_arNumbering[unIndex].m_sNumFormat = L"^사."; break;
|
|
case 8: m_arNumbering[unIndex].m_sNumFormat = L"^아."; break;
|
|
case 9: m_arNumbering[unIndex].m_sNumFormat = L"^자."; break;
|
|
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^차."; break;
|
|
}
|
|
}
|
|
else if ("CIRCLED_DIGIT" == sNumFormat)
|
|
{
|
|
switch (shLevel)
|
|
{
|
|
case 1: m_arNumbering[unIndex].m_sNumFormat = L"^\u2460."; break;
|
|
case 2: m_arNumbering[unIndex].m_sNumFormat = L"^\u2461."; break;
|
|
case 3: m_arNumbering[unIndex].m_sNumFormat = L"^\u2462."; break;
|
|
case 4: m_arNumbering[unIndex].m_sNumFormat = L"^\u2463."; break;
|
|
case 5: m_arNumbering[unIndex].m_sNumFormat = L"^\u2464."; break;
|
|
case 6: m_arNumbering[unIndex].m_sNumFormat = L"^\u2465."; break;
|
|
case 7: m_arNumbering[unIndex].m_sNumFormat = L"^\u2466."; break;
|
|
case 8: m_arNumbering[unIndex].m_sNumFormat = L"^\u2467."; break;
|
|
case 9: m_arNumbering[unIndex].m_sNumFormat = L"^\u2468."; break;
|
|
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u2469."; break;
|
|
}
|
|
}
|
|
else if ("LATIN_SMALL" == sNumFormat)
|
|
{
|
|
switch (shLevel)
|
|
{
|
|
case 1: m_arNumbering[unIndex].m_sNumFormat = L"^a."; break;
|
|
case 2: m_arNumbering[unIndex].m_sNumFormat = L"^b."; break;
|
|
case 3: m_arNumbering[unIndex].m_sNumFormat = L"^c."; break;
|
|
case 4: m_arNumbering[unIndex].m_sNumFormat = L"^d."; break;
|
|
case 5: m_arNumbering[unIndex].m_sNumFormat = L"^e."; break;
|
|
case 6: m_arNumbering[unIndex].m_sNumFormat = L"^f."; break;
|
|
case 7: m_arNumbering[unIndex].m_sNumFormat = L"^g."; break;
|
|
case 8: m_arNumbering[unIndex].m_sNumFormat = L"^h."; break;
|
|
case 9: m_arNumbering[unIndex].m_sNumFormat = L"^i."; break;
|
|
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^j."; break;
|
|
}
|
|
}
|
|
else if ("CIRCLED_HANGUL_SYLLABLE" == sNumFormat)
|
|
{
|
|
switch (shLevel)
|
|
{
|
|
case 1: m_arNumbering[unIndex].m_sNumFormat = L"^\u326E."; break;
|
|
case 2: m_arNumbering[unIndex].m_sNumFormat = L"^\u326F."; break;
|
|
case 3: m_arNumbering[unIndex].m_sNumFormat = L"^\u3270."; break;
|
|
case 4: m_arNumbering[unIndex].m_sNumFormat = L"^\u3271."; break;
|
|
case 5: m_arNumbering[unIndex].m_sNumFormat = L"^\u3272."; break;
|
|
case 6: m_arNumbering[unIndex].m_sNumFormat = L"^\u3273."; break;
|
|
case 7: m_arNumbering[unIndex].m_sNumFormat = L"^\u3274."; break;
|
|
case 8: m_arNumbering[unIndex].m_sNumFormat = L"^\u3275."; break;
|
|
case 9: m_arNumbering[unIndex].m_sNumFormat = L"^\u3276."; break;
|
|
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u3277."; break;
|
|
}
|
|
}
|
|
else if ("ROMAN_SMALL" == sNumFormat)
|
|
{
|
|
switch (shLevel)
|
|
{
|
|
case 1: m_arNumbering[unIndex].m_sNumFormat = L"^\u2170."; break;
|
|
case 2: m_arNumbering[unIndex].m_sNumFormat = L"^\u2171."; break;
|
|
case 3: m_arNumbering[unIndex].m_sNumFormat = L"^\u2172."; break;
|
|
case 4: m_arNumbering[unIndex].m_sNumFormat = L"^\u2173."; break;
|
|
case 5: m_arNumbering[unIndex].m_sNumFormat = L"^\u2174."; break;
|
|
case 6: m_arNumbering[unIndex].m_sNumFormat = L"^\u2175."; break;
|
|
case 7: m_arNumbering[unIndex].m_sNumFormat = L"^\u2176."; break;
|
|
case 8: m_arNumbering[unIndex].m_sNumFormat = L"^\u2177."; break;
|
|
case 9: m_arNumbering[unIndex].m_sNumFormat = L"^\u2178."; break;
|
|
case 10: m_arNumbering[unIndex].m_sNumFormat = L"^\u2179."; break;
|
|
}
|
|
}
|
|
|
|
++unIndex;
|
|
}
|
|
|
|
if (7 == unIndex)
|
|
return;
|
|
}
|
|
END_WHILE
|
|
}
|
|
|
|
short CHWPRecordNumbering::GetStart() const
|
|
{
|
|
return m_shStart;
|
|
}
|
|
|
|
HWP_STRING CHWPRecordNumbering::GetNumFormat(unsigned short ushIndex) const
|
|
{
|
|
if (ushIndex >= 7)
|
|
return HWP_STRING();
|
|
|
|
return m_arNumbering[ushIndex].m_sNumFormat;
|
|
}
|
|
|
|
HWP_BYTE CHWPRecordNumbering::GetAlign(unsigned short ushIndex) const
|
|
{
|
|
if (ushIndex >= 7)
|
|
return 0;
|
|
|
|
return m_arNumbering[ushIndex].m_chAlign;
|
|
}
|
|
|
|
int CHWPRecordNumbering::GetStartNumber(unsigned short ushIndex) const
|
|
{
|
|
if (ushIndex >= 7)
|
|
return 0;
|
|
|
|
return m_arNumbering[ushIndex].m_nStartNumber;
|
|
}
|
|
|
|
int CHWPRecordNumbering::GetCharShape(unsigned short ushIndex) const
|
|
{
|
|
if (ushIndex >= 7)
|
|
return 0;
|
|
|
|
return m_arNumbering[ushIndex].m_nCharShape;
|
|
}
|
|
}
|