Files
core/HwpFile/HwpDoc/Paragraph/CtrlEqEdit.cpp
Alexander Trofimov 76ee07f61c [copyright] Update copyright header
Co-authored-by: Alexander Trofimov <alexander.trofimov@onlyoffice.com>
Co-committed-by: Alexander Trofimov <alexander.trofimov@onlyoffice.com>
2026-05-14 08:23:56 +00:00

168 lines
4.7 KiB
C++

/*
* Copyright (C) Ascensio System SIA, 2009-2026
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation, together with the
* additional terms provided in the LICENSE file.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: https://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA by email at info@onlyoffice.com
* or by postal mail at 20A-6 Ernesta Birznieka-Upisha Street, Riga,
* LV-1050, Latvia, European Union.
*
* The interactive user interfaces in modified versions of the Program
* are required to display Appropriate Legal Notices in accordance with
* Section 5 of the GNU AGPL version 3.
*
* No trademark rights are granted under this License.
*
* All non-code elements of the Product, including illustrations,
* icon sets, and technical writing content, are licensed under the
* Creative Commons Attribution-ShareAlike 4.0 International License:
* https://creativecommons.org/licenses/by-sa/4.0/legalcode
*
* This license applies only to such non-code elements and does not
* modify or replace the licensing terms applicable to the Program's
* source code, which remains licensed under the GNU Affero General
* Public License v3.
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
#include "CtrlEqEdit.h"
#include "../Common/NodeNames.h"
namespace HWP
{
CCtrlEqEdit::CCtrlEqEdit()
{}
CCtrlEqEdit::CCtrlEqEdit(const HWP_STRING& sCtrlID)
: CCtrlGeneralShape(sCtrlID)
{}
CCtrlEqEdit::CCtrlEqEdit(const CCtrlGeneralShape& oShape)
: CCtrlGeneralShape(oShape)
{}
CCtrlEqEdit::CCtrlEqEdit(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{}
CCtrlEqEdit::CCtrlEqEdit(const HWP_STRING& sCtrlID, CXMLReader& oReader, EHanType eType)
: CCtrlGeneralShape(sCtrlID, oReader, eType)
{
START_READ_ATTRIBUTES(oReader)
{
if (GetAttributeName(EAttribute::Version, eType) == sAttributeName)
m_sVersion = oReader.GetText();
else if (GetAttributeName(EAttribute::BaseLine, eType) == sAttributeName)
m_nBaseline = oReader.GetInt();
else if (GetAttributeName(EAttribute::TextColor, eType) == sAttributeName)
m_nColor = oReader.GetColor();
else if (GetAttributeName(EAttribute::BaseUnit, eType) == sAttributeName)
m_nCharSize = oReader.GetInt();
else if (GetAttributeName(EAttribute::LineMode, eType) == sAttributeName)
{
switch(eType)
{
case EHanType::HWPX:
{
const std::string sType{oReader.GetTextA()};
if ("LINE" == sType)
m_nAttr = 1;
else if ("CHAR" == sType)
m_nAttr = 0;
break;
}
case EHanType::HWPML:
m_nAttr = oReader.GetBool();
default:
break;
}
}
else if (EHanType::HWPX == eType && "font" == sAttributeName)
m_sFont = oReader.GetText();
}
END_READ_ATTRIBUTES(oReader)
WHILE_READ_NEXT_NODE(oReader)
{
if (GetNodeName(ENode::Script, eType) == oReader.GetName())
m_sEqn = oReader.GetText();
else
CCtrlGeneralShape::ParseChildren(oReader, eType);
}
END_WHILE
m_bFullFilled = true;
}
EShapeType CCtrlEqEdit::GetShapeType() const
{
return EShapeType::EqEdit;
}
HWP_STRING CCtrlEqEdit::GetEqn() const
{
return m_sEqn;
}
int CCtrlEqEdit::ParseElement(CCtrlEqEdit& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
oBuffer.SavePosition();
oObj.m_bFullFilled = true;
oBuffer.ReadInt(oObj.m_nAttr);
oBuffer.ReadString(oObj.m_sEqn, EStringCharacter::UTF16);
oBuffer.ReadInt(oObj.m_nCharSize);
oBuffer.ReadColor(oObj.m_nColor);
oBuffer.ReadInt(oObj.m_nBaseline);
oBuffer.ReadString(oObj.m_sVersion, EStringCharacter::UTF16);
if (oBuffer.GetDistanceToLastPos() + 2 <= nSize)
{
short shLen = oBuffer.ReadShort();
if (oBuffer.GetDistanceToLastPos() + shLen <= nSize)
oBuffer.ReadString(oObj.m_sFont, shLen, EStringCharacter::UTF16);
}
oBuffer.Skip(nSize - oBuffer.GetDistanceToLastPos(true));
return nSize;
}
int CCtrlEqEdit::ParseCtrl(CCtrlEqEdit& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
return CCtrlCommon::ParseCtrl(oObj, nSize, oBuffer, nOff, nVersion);
}
int CCtrlEqEdit::ParseListHeaderAppend(CCtrlEqEdit& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
if (24 != nSize)
{
oBuffer.Skip(nSize);
return nSize;
}
oBuffer.Skip(2);
oBuffer.ReadInt(oObj.m_nCaptionAttr);
oBuffer.ReadInt(oObj.m_nCaptionWidth);
oObj.m_nCaptionSpacing = oBuffer.ReadShort();
oBuffer.ReadInt(oObj.m_nCaptionMaxW);
oBuffer.Skip(8);
return nSize;
}
}