/* * (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_LOGIC_CTN_INCLUDE_H_ #define PPTX_LOGIC_CTN_INCLUDE_H_ #include "./../../WrapperWritingElement.h" #include "CondLst.h" #include "Cond.h" #include "TnLst.h" #include "Iterate.h" #include "./../../Limit/TLRestart.h" #include "./../../Limit/TLNodeType.h" #include "./../../Limit/TLNodeFillType.h" #include "./../../Limit/TLPresetClass.h" #include "./../../Limit/TLMasterRelation.h" #include "./../../Limit/TLSyncBehavior.h" namespace PPTX { namespace Logic { class CTn : public WrapperWritingElement { public: PPTX_LOGIC_BASE(CTn) public: virtual void fromXML(XmlUtils::CXmlNode& node) { node.ReadAttributeBase(L"accel", accel); node.ReadAttributeBase(L"afterEffect", afterEffect); node.ReadAttributeBase(L"autoRev", autoRev); node.ReadAttributeBase(L"bldLvl", bldLvl); node.ReadAttributeBase(L"decel", decel); node.ReadAttributeBase(L"display", display); node.ReadAttributeBase(L"dur", dur); node.ReadAttributeBase(L"evtFilter", evtFilter); node.ReadAttributeBase(L"fill", fill); node.ReadAttributeBase(L"grpId", grpId); node.ReadAttributeBase(L"id", id); node.ReadAttributeBase(L"masterRel", masterRel); node.ReadAttributeBase(L"nodePh", nodePh); node.ReadAttributeBase(L"nodeType", nodeType); node.ReadAttributeBase(L"presetClass", presetClass); node.ReadAttributeBase(L"presetID", presetID); node.ReadAttributeBase(L"presetSubtype", presetSubtype); node.ReadAttributeBase(L"repeatCount", repeatCount); node.ReadAttributeBase(L"repeatDur", repeatDur); node.ReadAttributeBase(L"restart", restart); node.ReadAttributeBase(L"spd", spd); node.ReadAttributeBase(L"syncBehavior", syncBehavior); node.ReadAttributeBase(L"tmFilter", tmFilter); stCondLst = node.ReadNode(_T("p:stCondLst")); endCondLst = node.ReadNode(_T("p:endCondLst")); endSync = node.ReadNode(_T("p:endSync")); iterate = node.ReadNode(_T("p:iterate")); childTnLst = node.ReadNode(_T("p:childTnLst")); subTnLst = node.ReadNode(_T("p:subTnLst")); Normalize(); FillParentPointersForChilds(); } virtual CString toXML() const { XmlUtils::CAttribute oAttr; oAttr.Write(_T("id"), id); oAttr.Write(_T("presetID"), presetID); oAttr.WriteLimitNullable(_T("presetClass"), presetClass); oAttr.Write(_T("presetSubtype"), presetSubtype); oAttr.Write(_T("dur"), dur); oAttr.Write(_T("repeatCount"), repeatCount); oAttr.Write(_T("repeatDur"), repeatDur); oAttr.Write(_T("spd"), spd); oAttr.Write(_T("accel"), accel); oAttr.Write(_T("decel"), decel); oAttr.Write(_T("autoRev"), autoRev); oAttr.WriteLimitNullable(_T("restart"), restart); oAttr.WriteLimitNullable(_T("fill"), fill); oAttr.WriteLimitNullable(_T("syncBehavior"), syncBehavior); oAttr.Write(_T("tmFilter"), tmFilter); oAttr.Write(_T("evtFilter"), evtFilter); oAttr.Write(_T("display"), display); oAttr.WriteLimitNullable(_T("masterRel"), masterRel); oAttr.Write(_T("bldLvl"), bldLvl); oAttr.Write(_T("grpId"), grpId); oAttr.Write(_T("afterEffect"), afterEffect); oAttr.WriteLimitNullable(_T("nodeType"), nodeType); oAttr.Write(_T("nodePh"), nodePh); XmlUtils::CNodeValue oValue; oValue.WriteNullable(stCondLst); oValue.WriteNullable(endCondLst); oValue.WriteNullable(endSync); oValue.WriteNullable(iterate); oValue.WriteNullable(childTnLst); oValue.WriteNullable(subTnLst); return XmlUtils::CreateNode(_T("p:cTn"), oAttr, oValue); } public: nullable stCondLst; nullable endCondLst; nullable endSync; nullable iterate; nullable childTnLst; nullable subTnLst; nullable_int accel; nullable_bool afterEffect; nullable_bool autoRev; nullable_int bldLvl; nullable_int decel; nullable_bool display; nullable_string dur; nullable_string evtFilter; nullable_limit fill; nullable_int grpId; nullable_int id; nullable_limit masterRel; nullable_bool nodePh; nullable_limit nodeType; nullable_limit presetClass; nullable_int presetID; nullable_int presetSubtype; nullable_string repeatCount; nullable_string repeatDur; nullable_limit restart; nullable_int spd; nullable_limit syncBehavior; nullable_string tmFilter; protected: virtual void FillParentPointersForChilds() { if(stCondLst.IsInit()) stCondLst->SetParentPointer(this); if(endCondLst.IsInit()) endCondLst->SetParentPointer(this); if(endSync.IsInit()) endSync->SetParentPointer(this); if(iterate.IsInit()) iterate->SetParentPointer(this); if(childTnLst.IsInit()) childTnLst->SetParentPointer(this); if(subTnLst.IsInit()) subTnLst->SetParentPointer(this); } AVSINLINE void Normalize() { grpId.normalize_positive(); id.normalize_positive(); } }; } } #endif // PPTX_LOGIC_CTN_INCLUDE_H