Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

951 lines
27 KiB
C++

/*
* (c) Copyright Ascensio System SIA 2010-2023
*
* 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. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* 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: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-6 Ernesta Birznieka-Upish
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
#include "Shape.h"
#include "../SlideLayout.h"
#include "../SlideMaster.h"
#include "../Slide.h"
#include "SpTree.h"
#include "Pic.h"
#include "../NotesSlide.h"
#include "../NotesMaster.h"
namespace PPTX
{
namespace Logic
{
Shape::Shape(std::wstring name_)
{
m_name = name_;
m_pLevelUp = NULL;
}
Shape::~Shape()
{
}
Shape::Shape(XmlUtils::CXmlNode& node)
{
m_pLevelUp = NULL;
fromXML(node);
}
Shape::Shape(XmlUtils::CXmlLiteReader& oReader)
{
m_pLevelUp = NULL;
fromXML(oReader);
}
const Shape& Shape::operator =(XmlUtils::CXmlNode& node)
{
m_pLevelUp = NULL;
fromXML(node);
return *this;
}
const Shape& Shape::operator =(XmlUtils::CXmlLiteReader& oReader)
{
m_pLevelUp = NULL;
fromXML(oReader);
return *this;
}
void Shape::fromXML(XmlUtils::CXmlLiteReader& oReader)
{
m_name = oReader.GetName();
ReadAttributes(oReader);
if (oReader.IsEmptyNode())
return;
int nParentDepth = oReader.GetDepth();
while (oReader.ReadNextSiblingNode(nParentDepth))
{
std::wstring strName = XmlUtils::GetNameNoNS(oReader.GetName());
if (L"nvSpPr" == strName)
nvSpPr = oReader;
else if (L"spPr" == strName)
spPr = oReader;
else if (L"style" == strName)
style = oReader;
else if (L"txBody" == strName)
txBody = oReader;
else if (L"txXfrm" == strName)
txXfrm = oReader;
else if (L"txbx" == strName || L"textbox" == strName)
{
if (oReader.GetAttributesCount() > 0)
{
if (oReader.MoveToFirstAttribute())
{
std::string sNameA = XmlUtils::GetNameNoNS(oReader.GetNameChar());
while (false == sNameA.empty())
{
if ("id" == sNameA) oTextBoxId = oReader.GetText();
if (!oReader.MoveToNextAttribute())
break;
sNameA = XmlUtils::GetNameNoNS(oReader.GetNameChar());
}
oReader.MoveToElement();
}
}
if (oReader.IsEmptyNode())
continue;
int nParentDepth1 = oReader.GetDepth();
while (oReader.ReadNextSiblingNode(nParentDepth1))
{
std::wstring strName1 = XmlUtils::GetNameNoNS(oReader.GetName());
if (strName1 == L"txbxContent")
{
oTextBoxShape = oReader;
break;
}
}
}
else if (L"linkedTxbx" == strName)
oTextBoxLinkedTxbx = oReader;
else if (L"cNvPr" == strName)
nvSpPr.cNvPr = oReader;
else if (L"cNvSpPr" == strName)
nvSpPr.cNvSpPr = oReader;
else if (L"txSp" == strName)
{
if (oReader.IsEmptyNode())
continue;
int nParentDepth1 = oReader.GetDepth();
while (oReader.ReadNextSiblingNode(nParentDepth1))
{
std::wstring strName1 = XmlUtils::GetNameNoNS(oReader.GetName());
if (strName1 == L"txBody")
{
txBody = oReader;
break;
}
}
}
else if (L"bodyPr" == strName)
oTextBoxBodyPr = oReader;
}
FillParentPointersForChilds();
}
void Shape::fromXML(XmlUtils::CXmlNode& node)
{
m_name = node.GetName();
XmlMacroReadAttributeBase(node, L"useBgFill", useBgFill);
XmlMacroReadAttributeBase(node, L"modelId", modelId);
XmlMacroReadAttributeBase(node, L"macro", macro);
XmlMacroReadAttributeBase(node, L"fLocksText", fLocksText);
std::vector<XmlUtils::CXmlNode> oNodes;
if (node.GetNodes(L"*", oNodes))
{
size_t nCount = oNodes.size();
for (size_t i = 0; i < nCount; ++i)
{
XmlUtils::CXmlNode& oNode = oNodes[i];
std::wstring strName = XmlUtils::GetNameNoNS(oNode.GetName());
if (L"nvSpPr" == strName)
nvSpPr = oNode;
else if (L"spPr" == strName)
spPr = oNode;
else if (L"style" == strName)
style = oNode;
else if (L"txBody" == strName)
txBody = oNode;
else if (L"txXfrm" == strName)
txXfrm = oNode;
else if (L"txbx" == strName || L"textbox" == strName)
oTextBoxShape = oNode.ReadNode(L"w:txbxContent");
else if (L"cNvPr" == strName)
nvSpPr.cNvPr = oNode;
else if (L"cNvSpPr" == strName)
nvSpPr.cNvSpPr = oNode;
else if (L"txSp" == strName)
txBody = oNode.ReadNodeNoNS(L"txBody");
else if (L"bodyPr" == strName)
oTextBoxBodyPr = oNode;
else if (L"linkedTxbx" == strName)
oTextBoxLinkedTxbx = oNode;
}
}
FillParentPointersForChilds();
}
std::wstring Shape::toXML() const
{
XmlUtils::CAttribute oAttr;
oAttr.Write(L"useBgFill", useBgFill);
oAttr.Write(L"modelId", modelId);
oAttr.Write2(L"macro", macro);
oAttr.Write(L"fLocksText", fLocksText);
XmlUtils::CNodeValue oValue;
oValue.Write(nvSpPr);
oValue.Write(spPr);
oValue.WriteNullable(style);
oValue.WriteNullable(txBody);
oValue.WriteNullable(txXfrm);
return XmlUtils::CreateNode(m_name, oAttr, oValue);
}
void Shape::toXmlWriter(NSBinPptxRW::CXmlWriter* pWriter) const
{
std::wstring name_ = m_name;
if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX ||
pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX_GLOSSARY) name_ = L"wps:wsp";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_XLSX) name_ = L"xdr:sp";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_GRAPHICS) name_ = L"a:sp";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_CHART_DRAWING) name_ = L"cdr:sp";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DIAGRAM) name_ = L"dgm:sp";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DSP_DRAWING) name_ = L"dsp:sp";
pWriter->StartNode(name_);
pWriter->StartAttributes();
pWriter->WriteAttribute(L"useBgFill", useBgFill);
pWriter->WriteAttribute2(L"macro", macro);
pWriter->WriteAttribute(L"modelId", modelId);
pWriter->WriteAttribute(L"fLocksText", fLocksText);
pWriter->EndAttributes();
if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX ||
pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX_GLOSSARY)
{
nvSpPr.cNvPr.toXmlWriter2(L"wps", pWriter);
nvSpPr.cNvSpPr.toXmlWriter2(L"wps", pWriter);
}
else
nvSpPr.toXmlWriter(pWriter);
bool bIsPresentStyle = false;
if (style.is_init() && (style->fillRef.idx.is_init() || style->fillRef.Color.Color.is_init()))
{
bIsPresentStyle = true;
}
if (pWriter->m_lGroupIndex > 1 && !bIsPresentStyle)
{
pWriter->m_lFlag += 0x02;
}
spPr.toXmlWriter(pWriter);
if (pWriter->m_lGroupIndex > 1 && !bIsPresentStyle)
{
pWriter->m_lFlag -= 0x02;
}
if (style.is_init())
{
if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX ||
pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX_GLOSSARY) style->m_namespace = L"wps";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_XLSX) style->m_namespace = L"xdr";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_GRAPHICS) style->m_namespace = L"a";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_CHART_DRAWING) style->m_namespace = L"cdr";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DIAGRAM) style->m_namespace = L"dgm";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DSP_DRAWING) style->m_namespace = L"dsp";
pWriter->Write(style);
}
if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX ||
pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DOCX_GLOSSARY)
{
if (oTextBoxLinkedTxbx.is_init())
{
oTextBoxLinkedTxbx->m_namespace = L"wps";
oTextBoxLinkedTxbx->toXmlWriter(pWriter);
}
bool bIsWritedBodyPr = false;
if (strTextBoxShape.is_init())
{
if (oTextBoxId.IsInit())
pWriter->WriteString(L"<wps:txbx id=\"" + std::to_wstring(*oTextBoxId) + L"\">");
else
pWriter->WriteString(L"<wps:txbx>");
//pWriter->WriteString(oTextBoxShape->toXML());
pWriter->WriteString(*strTextBoxShape);
pWriter->WriteString(L"</wps:txbx>");
if (oTextBoxBodyPr.is_init())
{
oTextBoxBodyPr->m_namespace = L"wps";
oTextBoxBodyPr->toXmlWriter(pWriter);
bIsWritedBodyPr = true;
}
}
else if (txBody.is_init())
{
txBody->m_name = L"wps:txBody";
pWriter->Write(txBody);
}
if (!bIsWritedBodyPr)
{
pWriter->WriteString(L"<wps:bodyPr rot=\"0\"><a:prstTxWarp prst=\"textNoShape\"><a:avLst/></a:prstTxWarp><a:noAutofit/></wps:bodyPr>");
}
}
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_GRAPHICS)
{
txBody->m_name = L"a:txBody";
pWriter->StartNode(L"a:txSp");
pWriter->EndAttributes();
pWriter->Write(txBody);
pWriter->WriteString(L"<a:useSpRect/>");
pWriter->EndNode(L"a:txSp");
}
else
{
if (txBody.is_init())
{
if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_XLSX)
txBody->m_name = L"xdr:txBody";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_CHART_DRAWING)
txBody->m_name = L"cdr:txBody";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DIAGRAM)
txBody->m_name = L"dgm:txBody";
else if (pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DSP_DRAWING)
txBody->m_name = L"dsp:txBody";
}
pWriter->Write(txBody);
}
if (txXfrm.IsInit() && pWriter->m_lDocType == XMLWRITER_DOC_TYPE_DSP_DRAWING)
{
txXfrm->toXmlWriter(pWriter);
}
pWriter->EndNode(name_);
}
void Shape::fromPPTY(NSBinPptxRW::CBinaryFileReader* pReader)
{
LONG _end_rec = pReader->GetPos() + pReader->GetRecordSize() + 4;
pReader->Skip(1); // start attributes
while (true)
{
BYTE _at = pReader->GetUChar_TypeNode();
if (_at == NSBinPptxRW::g_nodeAttributeEnd)
break;
switch (_at)
{
case 0:
{
useBgFill = pReader->GetBool();
}break;
default:
break;
}
}
while (pReader->GetPos() < _end_rec)
{
BYTE _at = pReader->GetUChar();
switch (_at)
{
case 0:
{
nvSpPr.fromPPTY(pReader);
}break;
case 1:
{
spPr.fromPPTY(pReader);
}break;
case 2:
{
style = new ShapeStyle(L"p");
style->fromPPTY(pReader);
}break;
case 3:
{
txBody = new TxBody();
txBody->fromPPTY(pReader);
}break;
case 4:
{
if (NULL != pReader->m_pMainDocument)
{
LONG lLenRec = pReader->GetLong();
LONG lPosition = pReader->GetPos();
LONG lSize_Reader = pReader->GetSize();
BYTE* pData_Reader = pReader->GetData();
std::wstring sXmlContent;
pReader->m_pMainDocument->getXmlContent(*pReader, lLenRec, sXmlContent);
std::wstring strC = L"<w:txbxContent>";
strC += sXmlContent;
strC += L"</w:txbxContent>";
strTextBoxShape = strC;
//pReader->Seek(lPosition + lLenRec);
pReader->Init(pData_Reader, lPosition + lLenRec, lSize_Reader - (lPosition + lLenRec));
}
else
{
pReader->SkipRecord();
}
}break;
case 5:
{
oTextBoxBodyPr = new PPTX::Logic::BodyPr();
oTextBoxBodyPr->fromPPTY(pReader);
}break;
case 6:
{
txXfrm = new PPTX::Logic::Xfrm(); txXfrm->node_name = L"dsp:txXfrm";
txXfrm->fromPPTY(pReader);
}break;
case 7:
{
signatureLine = new OOX::VmlOffice::CSignatureLine();
signatureLine->fromPPTY(pReader);
}break;
case 8:
{
pReader->Skip(5); // type + size
modelId = pReader->GetString2();
}break;
case 9:
{
pReader->Skip(5); // type + size
fLocksText = pReader->GetBool();
}break;
case SPTREE_TYPE_MACRO:
{
pReader->Skip(5); // type + size
macro = pReader->GetString2();
}break;
case 10:
{
pReader->Skip(5); // type + size
oTextBoxId = pReader->GetULong();
}break;
case 11:
{
oTextBoxLinkedTxbx = new LinkedTxbx();
oTextBoxLinkedTxbx->fromPPTY(pReader);
}break;
default:
{
pReader->SkipRecord();
}break;
}
}
pReader->Seek(_end_rec);
}
void Shape::FillParentPointersForChilds()
{
nvSpPr.SetParentPointer(this);
spPr.SetParentPointer(this);
if (style.IsInit())
style->SetParentPointer(this);
if (txBody.IsInit())
txBody->SetParentPointer(this);
}
void Shape::toPPTY(NSBinPptxRW::CBinaryFileWriter* pWriter)const
{
pWriter->StartRecord(SPTREE_TYPE_SHAPE);
pWriter->WriteBYTE(NSBinPptxRW::g_nodeAttributeStart);
pWriter->WriteBool2(0, useBgFill);
pWriter->WriteBYTE(NSBinPptxRW::g_nodeAttributeEnd);
pWriter->WriteRecord1(0, nvSpPr);
pWriter->WriteRecord1(1, spPr);
pWriter->WriteRecord2(2, style);
if (pWriter->m_pMainDocument != NULL)
{
if (oTextBoxShape.is_init())
{
long lDataSize = 0;
ULONG lPos = pWriter->GetPosition();
pWriter->SetPosition(lPos);
pWriter->StartRecord(4);
pWriter->m_pMainDocument->getBinaryContentElem(OOX::et_w_sdtContent, oTextBoxShape.GetPointer(), *pWriter, lDataSize);
pWriter->EndRecord();
if (oTextBoxBodyPr.is_init())
{
pWriter->StartRecord(5);
oTextBoxBodyPr->toPPTY(pWriter);
pWriter->EndRecord();
}
}
else if (strTextBoxShape.is_init())//после конвертации старого шейпа (vml)
{
long lDataSize = 0;
ULONG lPos = pWriter->GetPosition();
pWriter->SetPosition(lPos);
pWriter->StartRecord(4);
pWriter->m_pMainDocument->getBinaryContent(strTextBoxShape.get(), *pWriter, lDataSize);
pWriter->EndRecord();
if (oTextBoxBodyPr.is_init())
{
pWriter->StartRecord(5);
oTextBoxBodyPr->toPPTY(pWriter);
pWriter->EndRecord();
}
}
else if (txBody.is_init())
{
std::wstring strContent = txBody->GetDocxTxBoxContent(pWriter, style);
//tooooo convert a:p -> w:p
long lDataSize = 0;
ULONG lPos = pWriter->GetPosition();
pWriter->SetPosition(lPos);
pWriter->StartRecord(4);
pWriter->m_pMainDocument->getBinaryContent(strContent, *pWriter, lDataSize);
pWriter->EndRecord();
pWriter->WriteRecord2(5, txBody->bodyPr);
}
}
else
{
pWriter->WriteRecord2(3, txBody);
}
if (oTextBoxId.is_init())
{
pWriter->StartRecord(10);
pWriter->WriteUInt1(0, *oTextBoxId);
pWriter->EndRecord();
}
pWriter->WriteRecord2(11, oTextBoxLinkedTxbx);
pWriter->WriteRecord2(6, txXfrm);
pWriter->WriteRecord2(7, signatureLine);
if (modelId.IsInit())
{
pWriter->StartRecord(8);
pWriter->WriteString1(0, *modelId);
pWriter->EndRecord();
}
if (fLocksText.IsInit())
{
pWriter->StartRecord(9);
pWriter->WriteBool1(0, *fLocksText);
pWriter->EndRecord();
}
if (macro.IsInit())
{
pWriter->StartRecord(SPTREE_TYPE_MACRO);
pWriter->WriteString1(0, *macro);
pWriter->EndRecord();
}
pWriter->EndRecord();
}
void Shape::FillLevelUp()
{
if ((m_pLevelUp == NULL) && (nvSpPr.nvPr.ph.IsInit()))
{
if ((nvSpPr.nvPr.ph->type.IsInit()) || (nvSpPr.nvPr.ph->idx.IsInit()))
{
if (parentFileIs<Slide>())
{
if (parentFileAs<Slide>().Layout.IsInit())
parentFileAs<Slide>().Layout->GetLevelUp(this);
}
else if (parentFileIs<SlideLayout>())
{
if (parentFileAs<SlideLayout>().Master.IsInit())
parentFileAs<SlideLayout>().Master->GetLevelUp(this);
}
else if (parentFileIs<NotesSlide>())
{
if (parentFileAs<NotesSlide>().master_.IsInit())
parentFileAs<NotesSlide>().master_->GetLevelUp(this);
}
}
}
}
bool Shape::IsListStyleEmpty()
{
if ((m_pLevelUp) && (m_pLevelUp->IsListStyleEmpty() == false)) return false;
if (txBody.IsInit() == false) return true;
if (txBody->lstStyle.IsInit() == false) return true;
return txBody->lstStyle->IsListStyleEmpty();
}
void Shape::Merge(Pic& pic, bool bIsSlidePlaceholder)
{
if (m_pLevelUp)
m_pLevelUp->Merge(pic, true);
pic.nvPicPr.cNvPr = nvSpPr.cNvPr;
pic.nvPicPr.nvPr = nvSpPr.nvPr;
spPr.Merge(pic.spPr);
if (style.is_init())
{
pic.style = style;
pic.style->SetParentFilePointer(parentFile);
}
}
void Shape::Merge(Shape& shape, bool bIsSlidePlaceholder)
{
if (m_pLevelUp)
m_pLevelUp->Merge(shape, true);
shape.m_name = m_name;
shape.nvSpPr = nvSpPr;
spPr.Merge(shape.spPr);
if (style.is_init())
{
shape.m_bIsFontRefInSlide = bIsSlidePlaceholder;
shape.style = style;
shape.style->SetParentFilePointer(parentFile);
}
if (txBody.IsInit())
{
if (!shape.txBody.is_init())
shape.txBody = new TxBody();
if (!bIsSlidePlaceholder)
{
txBody->Merge(shape.txBody);
shape.txBody->Paragrs = txBody->Paragrs;
}
else
{
if (txBody->bodyPr.IsInit())
txBody->bodyPr->Merge(shape.txBody->bodyPr);
}
if (txBody->lstStyle.is_init())
{
if (!shape.txBody->lstStyle.is_init())
shape.txBody->lstStyle = new TextListStyle();
for (int i = 0; i < 10; i++)
{
if (txBody->lstStyle->levels[i].is_init())
txBody->lstStyle->levels[i]->Merge(shape.txBody->lstStyle->levels[i]);
}
}
}
}
void Shape::toXmlWriterVML(NSBinPptxRW::CXmlWriter *pWriter, NSCommon::smart_ptr<PPTX::Theme>& oTheme, NSCommon::smart_ptr<PPTX::Logic::ClrMap>& oClrMap
, NSCommon::smart_ptr<OOX::IFileContainer>& pContainer, bool in_group, bool bSignature)
{
std::wstring strPath, strTextRect;
SimpleTypes::Vml::SptType vmlPrst = SimpleTypes::Vml::sptNotPrimitive;
LONG lW = 43200, lH = 43200;
double dL = 0, dT = 0, dW = 0, dH = 0;
if (bSignature)
{
vmlPrst = SimpleTypes::Vml::sptPictureFrame;
}
else if (spPr.Geometry.is<PrstGeom>())
{
const PPTX::Logic::PrstGeom & lpGeom = spPr.Geometry.as<PPTX::Logic::PrstGeom>();
SimpleTypes::CShapeType ooxPrst = SimpleTypes::CShapeType(lpGeom.prst.get());
vmlPrst = OOX::PrstGeom2VmlShapeType(ooxPrst.GetValue());
if (nvSpPr.cNvSpPr.txBox.IsInit() && (*nvSpPr.cNvSpPr.txBox))
{
vmlPrst = SimpleTypes::Vml::sptTextBox;
}
}
else
{
spPr.Geometry.ConvertToCustomVML(pWriter->m_pOOXToVMLRenderer, strPath, strTextRect, lW, lH);
}
if (spPr.xfrm.is_init())
{
if (spPr.xfrm->offX.is_init()) dL = *spPr.xfrm->offX;
if (spPr.xfrm->offY.is_init()) dT = *spPr.xfrm->offY;
if (spPr.xfrm->extX.is_init()) dW = *spPr.xfrm->extX;
if (spPr.xfrm->extY.is_init()) dH = *spPr.xfrm->extY;
lW = spPr.xfrm->extX.get_value_or(43200);
lH = spPr.xfrm->extY.get_value_or(43200);
}
std::wstring strId = L"shape " + std::to_wstring(pWriter->m_lObjectIdVML);
std::wstring strSpid = L"_x0000_s" + std::to_wstring(pWriter->m_lObjectIdVML);
pWriter->m_lObjectIdVML++;
std::wstring strFillAttr;
std::wstring strStrokeAttr;
std::wstring strFillNode;
std::wstring strStrokeNode;;
CalculateFill(pWriter->m_lDocType, spPr, style, oTheme, oClrMap, pContainer, strFillAttr, strFillNode, false, bSignature);
CalculateLine(pWriter->m_lDocType, spPr, style, oTheme, oClrMap, strStrokeAttr, strStrokeNode, false);
//-------------------------------------------------------------
std::wstring node_name = L"v:shape";
if (vmlPrst == SimpleTypes::Vml::sptLine)
{
node_name = L"v:line";
pWriter->m_strStyleMain = L"position:absolute;left:0;text-align:left;";
if (pWriter->m_zIndex.IsInit())
pWriter->m_strStyleMain += L"z-index:" + std::to_wstring(*pWriter->m_zIndex) + L";";
}
//-------------------------------------------------------------
pWriter->StartNode(node_name);
pWriter->StartAttributes();
if (pWriter->m_strId.empty())
{
if (XMLWRITER_DOC_TYPE_XLSX == pWriter->m_lDocType)
{
pWriter->WriteAttribute(L"id", strSpid); //??
}
else
{
pWriter->WriteAttribute(L"id", strId);
pWriter->WriteAttribute(L"o:spid", strSpid);
}
}
else
{
pWriter->WriteAttribute(L"id", pWriter->m_strId);
pWriter->WriteAttribute(L"o:spid", strSpid);
pWriter->m_strId.clear();
}
if (vmlPrst != SimpleTypes::Vml::sptNotPrimitive &&
vmlPrst != SimpleTypes::Vml::sptLine)
{
pWriter->WriteAttribute(L"o:spt", (int)vmlPrst);
pWriter->WriteAttribute(L"type", L"#_x0000_t" + std::to_wstring(vmlPrst));
}
NSBinPptxRW::CXmlWriter oStylesWriter;
if (pWriter->m_strStyleMain.empty())
{
pWriter->m_dX = dL / (in_group ? 100. : 12700.);
pWriter->m_dY = dT / (in_group ? 100. : 12700.);
pWriter->m_dWidth = dW / (in_group ? 100. : 12700.);
pWriter->m_dHeight = dH / (in_group ? 100. : 12700.);
oStylesWriter.WriteAttributeCSS(L"position", L"absolute");
oStylesWriter.WriteAttributeCSS_int(L"left", pWriter->m_dX);
oStylesWriter.WriteAttributeCSS_int(L"top", pWriter->m_dY);
oStylesWriter.WriteAttributeCSS_int(L"width", pWriter->m_dWidth);
oStylesWriter.WriteAttributeCSS_int(L"height", pWriter->m_dHeight);
}
if (spPr.xfrm.is_init())
{
if (spPr.xfrm->rot.is_init())
{
int nRot = (int)((double)(*(spPr.xfrm->rot)) / 60000.0);
oStylesWriter.WriteAttributeCSS_int(L"rotation", nRot);
}
bool bIsFH = spPr.xfrm->flipH.get_value_or(false);
bool bIsFV = spPr.xfrm->flipV.get_value_or(false);
if (bIsFH && bIsFV)
{
oStylesWriter.WriteAttributeCSS(L"flip", L"xy");
}
else if (bIsFH)
{
oStylesWriter.WriteAttributeCSS(L"flip", L"x");
}
else if (bIsFV)
{
oStylesWriter.WriteAttributeCSS(L"flip", L"y");
}
}
if (txBody.is_init())
{
if (txBody->bodyPr.IsInit() && txBody->bodyPr->anchor.is_init())
{
std::wstring _strAnchor = txBody->bodyPr->anchor->get();
if (_strAnchor == L"t")
oStylesWriter.WriteAttributeCSS(L"v-text-anchor", L"top");
else if (_strAnchor == L"b")
oStylesWriter.WriteAttributeCSS(L"v-text-anchor", L"bottom");
else if (_strAnchor == L"ctr")
oStylesWriter.WriteAttributeCSS(L"v-text-anchor", L"middle");
}
}
else if (oTextBoxBodyPr.is_init())
{
if (oTextBoxBodyPr->anchor.is_init())
{
std::wstring _strAnchor = oTextBoxBodyPr->anchor->get();
if (_strAnchor == L"t")
oStylesWriter.WriteAttributeCSS(L"v-text-anchor", L"top");
else if (_strAnchor == L"b")
oStylesWriter.WriteAttributeCSS(L"v-text-anchor", L"bottom");
else if (_strAnchor == L"ctr")
oStylesWriter.WriteAttributeCSS(L"v-text-anchor", L"middle");
}
}
oStylesWriter.WriteAttributeCSS(L"visibility", L"visible");
pWriter->WriteAttribute(L"style", pWriter->m_strStyleMain + pWriter->m_strStyleWrap + oStylesWriter.GetXmlString() );
if (false == strPath.empty())
{
pWriter->WriteAttribute(L"path", strPath);
pWriter->WriteAttribute(L"coordsize", (std::wstring)L"100000,100000");
}
if (vmlPrst == SimpleTypes::Vml::sptLine)
{
pWriter->WriteAttribute(L"from", XmlUtils::ToString(pWriter->m_dX, L"%.1lf") + L"pt," + XmlUtils::ToString(pWriter->m_dY, L"%.1lf") + L"pt");
pWriter->WriteAttribute(L"to", XmlUtils::ToString(pWriter->m_dX + pWriter->m_dWidth, L"%.1lf") + L"pt," + XmlUtils::ToString(pWriter->m_dY + pWriter->m_dHeight, L"%.1lf") + L"pt");
}
if (false == pWriter->m_strAttributesMain.empty())
{
pWriter->WriteString(pWriter->m_strAttributesMain);
pWriter->m_strAttributesMain.clear();
}
pWriter->WriteString(strFillAttr);
pWriter->WriteString(strStrokeAttr);
pWriter->EndAttributes();
if (false == strTextRect.empty())
{
pWriter->StartNode(L"v:path");
pWriter->StartAttributes();
pWriter->WriteAttribute(L"textboxrect", strTextRect);
pWriter->EndAttributes();
pWriter->EndNode(L"v:path");
}
pWriter->WriteString(strFillNode);
pWriter->WriteString(strStrokeNode);
pWriter->WriteString(pWriter->m_strNodes);
pWriter->m_strNodes.clear();
if (strTextBoxShape.is_init())
{
pWriter->StartNode(L"v:textbox");
pWriter->StartAttributes();
pWriter->WriteAttribute(L"inset", L"0,0,0,0");
pWriter->EndAttributes();
pWriter->WriteString(*strTextBoxShape); //??? todooo -> oTextBoxShape
pWriter->EndNode(L"v:textbox");
}
if (strFillNode.empty() && spPr.Fill.m_type == UniFill::blipFill)
{
BlipFill& blipFill = spPr.Fill.as<BlipFill>();
pWriter->StartNode(L"v:imagedata");
pWriter->StartAttributes();
if (XMLWRITER_DOC_TYPE_XLSX == pWriter->m_lDocType)
{
pWriter->WriteAttribute(L"o:relid", blipFill.blip->embed->ToString());
}
else
{
pWriter->WriteAttribute(L"r:id", blipFill.blip->embed->ToString());
}
pWriter->WriteAttribute(L"o:title", L"");
pWriter->EndAttributes();
pWriter->EndNode(L"v:imagedata");
}
if (signatureLine.is_init())
{
signatureLine->toXmlWriter(pWriter);
}
pWriter->WriteString(m_sClientDataXml);
pWriter->EndNode(node_name);
pWriter->m_strStyleMain.clear();
pWriter->m_strStyleWrap.clear();
}
void Shape::toXmlWriterVMLBackground(NSBinPptxRW::CXmlWriter *pWriter, NSCommon::smart_ptr<PPTX::Theme>& oTheme, NSCommon::smart_ptr<PPTX::Logic::ClrMap>& oClrMap, NSCommon::smart_ptr<OOX::IFileContainer>& pContainer)
{
std::wstring strFillAttr, strFillNode;
CalculateFill(pWriter->m_lDocType, spPr, style, oTheme, oClrMap, pContainer, strFillAttr, strFillNode, false);
pWriter->StartNode(L"v:background");
pWriter->StartAttributes();
pWriter->WriteString(L" id=\"_x0000_s1025\"");
if (!pWriter->m_strAttributesMain.empty())
{
pWriter->WriteString(pWriter->m_strAttributesMain);
pWriter->m_strAttributesMain.clear();
}
pWriter->WriteString(strFillAttr);
pWriter->EndAttributes();
pWriter->WriteString(strFillNode);
pWriter->EndNode(L"v:background");
}
} // namespace Logic
} // namespace PPTX