DocumentServer/ActiveX/ASCOfficePPTXFile/PPTXFormat/Theme/FmtScheme.h
nikolay ivanov a8be6b9e72 init repo
2014-07-05 18:22:49 +00:00

284 lines
8 KiB
C++

/*
* (c) Copyright Ascensio System SIA 2010-2014
*
* 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 Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* 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
*
*/
#pragma once
#ifndef PPTX_THEME_FMTSCHEME_INCLUDE_H_
#define PPTX_THEME_FMTSCHEME_INCLUDE_H_
#include "./../WrapperWritingElement.h"
#include "./../Logic/UniFill.h"
#include "./../Logic/Ln.h"
#include "./../Logic/EffectStyle.h"
namespace PPTX
{
namespace nsTheme
{
class FmtScheme : public WrapperWritingElement
{
public:
PPTX_LOGIC_BASE(FmtScheme)
FmtScheme& operator=(const FmtScheme& oSrc)
{
parentFile = oSrc.parentFile;
parentElement = oSrc.parentElement;
name = oSrc.name;
fillStyleLst.Copy(oSrc.fillStyleLst);
lnStyleLst.Copy(oSrc.lnStyleLst);
effectStyleLst.Copy(oSrc.effectStyleLst);
bgFillStyleLst.Copy(oSrc.bgFillStyleLst);
return *this;
}
public:
virtual void fromXML(XmlUtils::CXmlNode& node)
{
fillStyleLst.RemoveAll();
lnStyleLst.RemoveAll();
effectStyleLst.RemoveAll();
bgFillStyleLst.RemoveAll();
name = node.GetAttribute(_T("name"));
XmlUtils::CXmlNode oNode1 = node.ReadNode(_T("a:fillStyleLst"));
oNode1.LoadArray(_T("*"), fillStyleLst);
XmlUtils::CXmlNode oNode2 = node.ReadNode(_T("a:lnStyleLst"));
oNode2.LoadArray(_T("a:ln"), lnStyleLst);
XmlUtils::CXmlNode oNode3 = node.ReadNode(_T("a:effectStyleLst"));
oNode3.LoadArray(_T("a:effectStyle"), effectStyleLst);
XmlUtils::CXmlNode oNode4 = node.ReadNode(_T("a:bgFillStyleLst"));
oNode4.LoadArray(_T("*"), bgFillStyleLst);
FillParentPointersForChilds();
}
virtual CString toXML() const
{
XmlUtils::CAttribute oAttr;
oAttr.Write(_T("name"), name);
XmlUtils::CNodeValue oValue;
oValue.WriteArray(_T("a:fillStyleLst"), fillStyleLst);
oValue.WriteArray(_T("a:lnStyleLst"), lnStyleLst);
oValue.WriteArray(_T("a:effectStyleLst"), effectStyleLst);
oValue.WriteArray(_T("a:bgFillStyleLst"), bgFillStyleLst);
return XmlUtils::CreateNode(_T("a:fmtScheme"), oAttr, oValue);
}
virtual void toXmlWriter(NSBinPptxRW::CXmlWriter* pWriter) const
{
pWriter->StartNode(_T("a:fmtScheme"));
pWriter->StartAttributes();
pWriter->WriteAttribute(_T("name"), name);
pWriter->EndAttributes();
pWriter->WriteArray(_T("a:fillStyleLst"), fillStyleLst);
pWriter->WriteArray(_T("a:lnStyleLst"), lnStyleLst);
pWriter->WriteString(_T("<a:effectStyleLst><a:effectStyle><a:effectLst>\
<a:outerShdw blurRad=\"40000\" dist=\"20000\" dir=\"5400000\" rotWithShape=\"0\"><a:srgbClr val=\"000000\"><a:alpha val=\"38000\"/></a:srgbClr></a:outerShdw>\
</a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\
<a:srgbClr val=\"000000\"><a:alpha val=\"35000\"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst>\
<a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\"><a:srgbClr val=\"000000\"><a:alpha val=\"35000\"/></a:srgbClr>\
</a:outerShdw></a:effectLst></a:effectStyle></a:effectStyleLst>"));
pWriter->WriteArray(_T("a:bgFillStyleLst"), bgFillStyleLst);
pWriter->EndNode(_T("a:fmtScheme"));
}
void GetLineStyle(int number, Logic::Ln& lnStyle) const
{
int index = number - 1;
if ((index < 0) || (index >= (int)lnStyleLst.GetCount()))
return;
lnStyle = lnStyleLst[index];
lnStyle.SetParentFilePointer(parentFile);
}
void GetFillStyle(int number, Logic::UniFill& fillStyle) const
{
if( (number >= 1) && (number <= 999) )
{
int index = number - 1;
if ((index < 0) || (index >= (int)fillStyleLst.GetCount()))
return;
fillStyle = fillStyleLst[index];
fillStyle.SetParentFilePointer(parentFile);
}
else if(number >= 1001)
{
int index = number - 1001;
if ((index < 0) || (index >= (int)bgFillStyleLst.GetCount()))
return;
fillStyle = bgFillStyleLst[index];
fillStyle.SetParentFilePointer(parentFile);
}
}
virtual void toPPTY(NSBinPptxRW::CBinaryFileWriter* pWriter) const
{
pWriter->WriteBYTE(NSBinPptxRW::g_nodeAttributeStart);
pWriter->WriteString1(0, name);
pWriter->WriteBYTE(NSBinPptxRW::g_nodeAttributeEnd);
pWriter->WriteRecordArray(0, 0, fillStyleLst);
pWriter->WriteRecordArray(1, 0, lnStyleLst);
pWriter->WriteRecordArray(2, 0, effectStyleLst);
pWriter->WriteRecordArray(3, 0, bgFillStyleLst);
}
virtual void fromPPTY(NSBinPptxRW::CBinaryFileReader* pReader)
{
LONG _end_rec = pReader->GetPos() + pReader->GetLong() + 4;
pReader->Skip(1);
while (true)
{
BYTE _at = pReader->GetUChar();
if (_at == NSBinPptxRW::g_nodeAttributeEnd)
break;
if (0 == _at)
name = pReader->GetString2();
else
break;
}
while (pReader->GetPos() < _end_rec)
{
BYTE _at = pReader->GetUChar();
switch (_at)
{
case 0:
{
pReader->Skip(4);
ULONG _c = pReader->GetULong();
for (ULONG i = 0; i < _c; ++i)
{
pReader->Skip(1);
fillStyleLst.Add();
fillStyleLst[i].fromPPTY(pReader);
}
break;
}
case 1:
{
pReader->Skip(4);
ULONG _c = pReader->GetULong();
for (ULONG i = 0; i < _c; ++i)
{
pReader->Skip(1);
lnStyleLst.Add();
lnStyleLst[i].fromPPTY(pReader);
}
break;
}
case 2:
{
pReader->SkipRecord();
break;
}
case 3:
{
pReader->Skip(4);
ULONG _c = pReader->GetULong();
for (ULONG i = 0; i < _c; ++i)
{
pReader->Skip(1);
bgFillStyleLst.Add();
bgFillStyleLst[i].fromPPTY(pReader);
}
break;
}
default:
break;
}
}
pReader->Seek(_end_rec);
}
public:
CString name;
CAtlArray<Logic::UniFill> fillStyleLst;
CAtlArray<Logic::Ln> lnStyleLst;
CAtlArray<Logic::EffectStyle> effectStyleLst;
CAtlArray<Logic::UniFill> bgFillStyleLst;
protected:
virtual void FillParentPointersForChilds()
{
size_t count = 0;
count = fillStyleLst.GetCount();
for (size_t i = 0; i < count; ++i)
fillStyleLst[i].SetParentPointer(this);
count = lnStyleLst.GetCount();
for (size_t i = 0; i < count; ++i)
lnStyleLst[i].SetParentPointer(this);
count = effectStyleLst.GetCount();
for (size_t i = 0; i < count; ++i)
effectStyleLst[i].SetParentPointer(this);
count = bgFillStyleLst.GetCount();
for (size_t i = 0; i < count; ++i)
bgFillStyleLst[i].SetParentPointer(this);
}
};
}
}
#endif // PPTX_THEME_FMTSCHEME_INCLUDE_H