1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// 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 XFA_FXFA_PARSER_CXFA_OBJECT_H_
#define XFA_FXFA_PARSER_CXFA_OBJECT_H_
#include <memory>
#include "core/fxcrt/fx_string.h"
#include "fxjs/fxjse.h"
#include "xfa/fxfa/fxfa_basic.h"
enum class XFA_ObjectType {
Object,
List,
Node,
NodeC,
NodeV,
ModelNode,
TextNode,
TreeList,
ContainerNode,
ContentNode,
VariablesThis
};
class CJX_Object;
class CXFA_Document;
class CXFA_Node;
class CXFA_TreeList;
class CXFA_WidgetAcc;
class CXFA_Object : public CFXJSE_HostObject {
public:
~CXFA_Object() override;
CXFA_Document* GetDocument() const { return m_pDocument.Get(); }
XFA_ObjectType GetObjectType() const { return m_objectType; }
bool IsNode() const {
return m_objectType == XFA_ObjectType::Node ||
m_objectType == XFA_ObjectType::NodeC ||
m_objectType == XFA_ObjectType::NodeV ||
m_objectType == XFA_ObjectType::ModelNode ||
m_objectType == XFA_ObjectType::TextNode ||
m_objectType == XFA_ObjectType::ContainerNode ||
m_objectType == XFA_ObjectType::ContentNode ||
m_objectType == XFA_ObjectType::VariablesThis;
}
bool IsTreeList() const { return m_objectType == XFA_ObjectType::TreeList; }
bool IsContentNode() const {
return m_objectType == XFA_ObjectType::ContentNode;
}
bool IsContainerNode() const {
return m_objectType == XFA_ObjectType::ContainerNode;
}
bool IsModelNode() const { return m_objectType == XFA_ObjectType::ModelNode; }
bool IsNodeV() const { return m_objectType == XFA_ObjectType::NodeV; }
bool IsVariablesThis() const {
return m_objectType == XFA_ObjectType::VariablesThis;
}
CXFA_Node* AsNode();
CXFA_TreeList* AsTreeList();
const CXFA_Node* AsNode() const;
const CXFA_TreeList* AsTreeList() const;
CJX_Object* JSObject() { return m_pJSObject.get(); }
const CJX_Object* JSObject() const { return m_pJSObject.get(); }
bool HasCreatedUIWidget() const {
return m_elementType == XFA_Element::Field ||
m_elementType == XFA_Element::Draw ||
m_elementType == XFA_Element::Subform ||
m_elementType == XFA_Element::ExclGroup;
}
void CreateWidgetAcc();
CXFA_WidgetAcc* GetWidgetAcc() { return acc_.get(); }
XFA_Element GetElementType() const { return m_elementType; }
WideStringView GetClassName() const { return m_elementName; }
uint32_t GetClassHashCode() const { return m_elementNameHash; }
WideString GetSOMExpression();
protected:
CXFA_Object(CXFA_Document* pDocument,
XFA_ObjectType objectType,
XFA_Element eType,
const WideStringView& elementName,
std::unique_ptr<CJX_Object> jsObject);
UnownedPtr<CXFA_Document> const m_pDocument;
const XFA_ObjectType m_objectType;
const XFA_Element m_elementType;
const uint32_t m_elementNameHash;
const WideStringView m_elementName;
std::unique_ptr<CJX_Object> m_pJSObject;
std::unique_ptr<CXFA_WidgetAcc> acc_;
};
CXFA_Node* ToNode(CXFA_Object* pObj);
const CXFA_Node* ToNode(const CXFA_Object* pObj);
#endif // XFA_FXFA_PARSER_CXFA_OBJECT_H_
|