xref: /aosp_15_r20/external/pdfium/xfa/fxfa/parser/cxfa_text.cpp (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1 // Copyright 2017 The PDFium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #include "xfa/fxfa/parser/cxfa_text.h"
8 
9 #include "fxjs/xfa/cjx_object.h"
10 #include "xfa/fxfa/parser/cxfa_document.h"
11 
12 namespace {
13 
14 const CXFA_Node::AttributeData kTextAttributeData[] = {
15     {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
16     {XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
17     {XFA_Attribute::Rid, XFA_AttributeType::CData, nullptr},
18     {XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
19     {XFA_Attribute::MaxChars, XFA_AttributeType::Integer, (void*)0},
20     {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
21 };
22 
23 }  // namespace
24 
25 // static
FromNode(CXFA_Node * pNode)26 CXFA_Text* CXFA_Text::FromNode(CXFA_Node* pNode) {
27   return pNode && pNode->GetElementType() == XFA_Element::Text
28              ? static_cast<CXFA_Text*>(pNode)
29              : nullptr;
30 }
31 
CXFA_Text(CXFA_Document * doc,XFA_PacketType packet)32 CXFA_Text::CXFA_Text(CXFA_Document* doc, XFA_PacketType packet)
33     : CXFA_Node(doc,
34                 packet,
35                 {XFA_XDPPACKET::kSourceSet, XFA_XDPPACKET::kTemplate,
36                  XFA_XDPPACKET::kForm},
37                 XFA_ObjectType::ContentNode,
38                 XFA_Element::Text,
39                 {},
40                 kTextAttributeData,
41                 cppgc::MakeGarbageCollected<CJX_Object>(
42                     doc->GetHeap()->GetAllocationHandle(),
43                     this)) {}
44 
45 CXFA_Text::~CXFA_Text() = default;
46 
GetContent() const47 WideString CXFA_Text::GetContent() const {
48   return JSObject()->GetContent(false);
49 }
50