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_bind.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_bind.h"
8
9#include "fxjs/xfa/cjx_node.h"
10#include "fxjs/xfa/cjx_object.h"
11#include "xfa/fxfa/parser/cxfa_document.h"
12#include "xfa/fxfa/parser/cxfa_picture.h"
13
14namespace {
15
16const CXFA_Node::PropertyData kBindPropertyData[] = {
17 {XFA_Element::Picture, 1, {}},
18};
19
20const CXFA_Node::AttributeData kBindAttributeData[] = {
25 {XFA_Attribute::ContentType, XFA_AttributeType::CData, nullptr},
26 {XFA_Attribute::TransferEncoding, XFA_AttributeType::Enum,
27 (void*)XFA_AttributeValue::None},
28 {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
30 (void*)XFA_AttributeValue::Once},
31};
32
33} // namespace
34
35CXFA_Bind::CXFA_Bind(CXFA_Document* doc, XFA_PacketType packet)
36 : CXFA_Node(doc,
37 packet,
38 {XFA_XDPPACKET::kSourceSet, XFA_XDPPACKET::kTemplate,
39 XFA_XDPPACKET::kForm},
40 XFA_ObjectType::Node,
41 XFA_Element::Bind,
42 kBindPropertyData,
43 kBindAttributeData,
44 cppgc::MakeGarbageCollected<CJX_Node>(
45 doc->GetHeap()->GetAllocationHandle(),
46 this)) {}
47
48CXFA_Bind::~CXFA_Bind() = default;
49
50WideString CXFA_Bind::GetPicture() const {
51 const auto* pPicture = GetChild<CXFA_Picture>(0, XFA_Element::Picture, false);
52 return pPicture ? pPicture->JSObject()->GetContent(false) : WideString();
53}
~CXFA_Bind() override
WideString GetPicture() const
Definition cxfa_bind.cpp:50
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