blob: 5b24f82258bd69a5af33b849e48987f47fb60dda [file] [log] [blame]
// Copyright 2014 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 XFA_FXFA_PARSER_XFA_RESOLVENODE_RS_H_
#define XFA_FXFA_PARSER_XFA_RESOLVENODE_RS_H_
#include <vector>
#include "core/fxcrt/unowned_ptr.h"
class CXFA_Object;
struct XFA_SCRIPTATTRIBUTEINFO;
#define XFA_RESOLVENODE_Children 0x0001
#define XFA_RESOLVENODE_TagName 0x0002
#define XFA_RESOLVENODE_Attributes 0x0004
#define XFA_RESOLVENODE_Properties 0x0008
#define XFA_RESOLVENODE_Siblings 0x0020
#define XFA_RESOLVENODE_Parent 0x0040
#define XFA_RESOLVENODE_AnyChild 0x0080
#define XFA_RESOLVENODE_ALL 0x0100
#define XFA_RESOLVENODE_CreateNode 0x0400
#define XFA_RESOLVENODE_Bind 0x0800
#define XFA_RESOLVENODE_BindNew 0x1000
enum XFA_ResolveNode_RSType {
XFA_ResolveNode_RSType_Nodes,
XFA_ResolveNode_RSType_Attribute,
XFA_ResolveNode_RSType_CreateNodeOne,
XFA_ResolveNode_RSType_CreateNodeAll,
XFA_ResolveNode_RSType_CreateNodeMidAll,
XFA_ResolveNode_RSType_ExistNodes,
};
struct XFA_RESOLVENODE_RS {
XFA_RESOLVENODE_RS();
~XFA_RESOLVENODE_RS();
XFA_ResolveNode_RSType dwFlags = XFA_ResolveNode_RSType_Nodes;
std::vector<UnownedPtr<CXFA_Object>> objects;
UnownedPtr<const XFA_SCRIPTATTRIBUTEINFO> pScriptAttribute;
};
inline XFA_RESOLVENODE_RS::XFA_RESOLVENODE_RS() = default;
inline XFA_RESOLVENODE_RS::~XFA_RESOLVENODE_RS() = default;
#endif // XFA_FXFA_PARSER_XFA_RESOLVENODE_RS_H_