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_image.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_image.h"
8
9#include "fxjs/xfa/cjx_node.h"
10#include "xfa/fxfa/parser/cxfa_document.h"
11
12namespace {
13
14const CXFA_Node::AttributeData kImageAttributeData[] = {
18 {XFA_Attribute::ContentType, XFA_AttributeType::CData, nullptr},
19 {XFA_Attribute::TransferEncoding, XFA_AttributeType::Enum,
20 (void*)XFA_AttributeValue::Base64},
21 {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
23 (void*)XFA_AttributeValue::Fit},
25};
26
27} // namespace
28
29// static
30CXFA_Image* CXFA_Image::FromNode(CXFA_Node* pNode) {
31 return pNode && pNode->GetElementType() == XFA_Element::Image
32 ? static_cast<CXFA_Image*>(pNode)
33 : nullptr;
34}
35
36CXFA_Image::CXFA_Image(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::Image,
42 {},
43 kImageAttributeData,
44 cppgc::MakeGarbageCollected<CJX_Node>(
45 doc->GetHeap()->GetAllocationHandle(),
46 this)) {}
47
48CXFA_Image::~CXFA_Image() = default;
49
51 return JSObject()->GetEnum(XFA_Attribute::Aspect);
52}
53
54WideString CXFA_Image::GetContentType() {
55 return JSObject()->TryCData(XFA_Attribute::ContentType, true).value_or(L"");
56}
57
58WideString CXFA_Image::GetHref() {
59 return JSObject()->TryCData(XFA_Attribute::Href, true).value_or(L"");
60}
61
63 return static_cast<XFA_AttributeValue>(
64 JSObject()->GetEnum(XFA_Attribute::TransferEncoding));
65}
66
67WideString CXFA_Image::GetContent() {
68 return JSObject()->TryContent(false, true).value_or(L"");
69}
70
71void CXFA_Image::SetContentType(const WideString& wsContentType) {
72 JSObject()->SetCData(XFA_Attribute::ContentType, wsContentType);
73}
74
75void CXFA_Image::SetHref(const WideString& wsHref) {
76 JSObject()->SetCData(XFA_Attribute::Href, wsHref);
77}
78
79void CXFA_Image::SetTransferEncoding(XFA_AttributeValue iTransferEncoding) {
80 JSObject()->SetEnum(XFA_Attribute::TransferEncoding, iTransferEncoding,
81 false);
82}
WideString GetContent()
void SetTransferEncoding(XFA_AttributeValue iTransferEncoding)
static CXFA_Image * FromNode(CXFA_Node *pNode)
void SetContentType(const WideString &wsContentType)
void SetHref(const WideString &wsHref)
WideString GetContentType()
XFA_AttributeValue GetTransferEncoding()
WideString GetHref()
XFA_AttributeValue GetAspect()
~CXFA_Image() override
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