Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cxfa_text.cpp
Go to the documentation of this file.
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
12namespace {
13
14const CXFA_Node::AttributeData kTextAttributeData[] = {
19 {XFA_Attribute::MaxChars, XFA_AttributeType::Integer, (void*)0},
20 {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
21};
22
23} // namespace
24
25// static
26CXFA_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
32CXFA_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
45CXFA_Text::~CXFA_Text() = default;
46
47WideString CXFA_Text::GetContent() const {
48 return JSObject()->GetContent(false);
49}
XFA_Element GetElementType() const
Definition cxfa_object.h:91
static CXFA_Text * FromNode(CXFA_Node *pNode)
Definition cxfa_text.cpp:26
WideString GetContent() const
Definition cxfa_text.cpp:47
~CXFA_Text() override
XFA_AttributeType
Definition fxfa_basic.h:83
XFA_Attribute
Definition fxfa_basic.h:67
XFA_Element
Definition fxfa_basic.h:75
XFA_PacketType
Definition fxfa_basic.h:44