blob: dc3152f19a43cc58c1aecd138f272c65a30b5240 [file] [log] [blame]
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef CORE_FXCRT_XML_CFX_XMLNODE_H_
#define CORE_FXCRT_XML_CFX_XMLNODE_H_
#include <memory>
#include "core/fxcrt/cfx_seekablestreamproxy.h"
#include "core/fxcrt/retain_ptr.h"
enum FX_XMLNODETYPE {
FX_XMLNODE_Unknown = 0,
FX_XMLNODE_Instruction,
FX_XMLNODE_Element,
FX_XMLNODE_Text,
FX_XMLNODE_CharData,
};
struct FX_XMLNODE {
int32_t iNodeNum;
FX_XMLNODETYPE eNodeType;
};
class CFX_XMLNode {
public:
enum NodeItem {
Root = 0,
Parent,
NextSibling,
FirstChild,
};
CFX_XMLNode();
virtual ~CFX_XMLNode();
virtual FX_XMLNODETYPE GetType() const;
virtual std::unique_ptr<CFX_XMLNode> Clone();
void AppendChild(CFX_XMLNode* pNode);
void InsertChildNode(CFX_XMLNode* pNode, int32_t index);
void RemoveChildNode(CFX_XMLNode* pNode);
void DeleteChildren();
CFX_XMLNode* GetNodeItem(CFX_XMLNode::NodeItem eItem) const;
void SaveXMLNode(const RetainPtr<CFX_SeekableStreamProxy>& pXMLStream);
CFX_XMLNode* m_pParent;
CFX_XMLNode* m_pChild;
CFX_XMLNode* m_pPrior;
CFX_XMLNode* m_pNext;
};
#endif // CORE_FXCRT_XML_CFX_XMLNODE_H_