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_exdata.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_exdata.h"
8
9#include "fxjs/xfa/cjx_object.h"
10#include "xfa/fxfa/parser/cxfa_document.h"
11
12namespace {
13
14const CXFA_Node::AttributeData kExDataAttributeData[] = {
19 {XFA_Attribute::ContentType, XFA_AttributeType::CData, nullptr},
20 {XFA_Attribute::TransferEncoding, XFA_AttributeType::Enum,
21 (void*)XFA_AttributeValue::None},
22 {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
23 {XFA_Attribute::MaxLength, XFA_AttributeType::Integer, (void*)-1},
25};
26
27} // namespace
28
29// static
30CXFA_ExData* CXFA_ExData::FromNode(CXFA_Node* pNode) {
31 return pNode && pNode->GetElementType() == XFA_Element::ExData
32 ? static_cast<CXFA_ExData*>(pNode)
33 : nullptr;
34}
35
36CXFA_ExData::CXFA_ExData(CXFA_Document* doc, XFA_PacketType packet)
37 : CXFA_Node(doc,
38 packet,
39 {XFA_XDPPACKET::kTemplate, XFA_XDPPACKET::kForm},
40 XFA_ObjectType::ContentNode,
41 XFA_Element::ExData,
42 {},
43 kExDataAttributeData,
44 cppgc::MakeGarbageCollected<CJX_Object>(
45 doc->GetHeap()->GetAllocationHandle(),
46 this)) {}
47
48CXFA_ExData::~CXFA_ExData() = default;
49
50void CXFA_ExData::SetContentType(const WideString& wsContentType) {
51 JSObject()->SetCData(XFA_Attribute::ContentType, wsContentType);
52}
static CXFA_ExData * FromNode(CXFA_Node *pNode)
~CXFA_ExData() override
void SetContentType(const WideString &wsContentType)
XFA_Element GetElementType() const
Definition cxfa_object.h:91
XFA_AttributeType
Definition fxfa_basic.h:83
XFA_Attribute
Definition fxfa_basic.h:67
XFA_Element
Definition fxfa_basic.h:75
XFA_AttributeValue
Definition fxfa_basic.h:60
XFA_PacketType
Definition fxfa_basic.h:44