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_pattern.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_pattern.h"
8
9#include "fxjs/xfa/cjx_node.h"
10#include "xfa/fgas/graphics/cfgas_gegraphics.h"
11#include "xfa/fgas/graphics/cfgas_gepattern.h"
12#include "xfa/fxfa/parser/cxfa_color.h"
13#include "xfa/fxfa/parser/cxfa_document.h"
14
15namespace {
16
17const CXFA_Node::PropertyData kPatternPropertyData[] = {
18 {XFA_Element::Color, 1, {}},
19 {XFA_Element::Extras, 1, {}},
20};
21
22const CXFA_Node::AttributeData kPatternAttributeData[] = {
26 (void*)XFA_AttributeValue::CrossHatch},
27 {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
28};
29
30} // namespace
31
32CXFA_Pattern::CXFA_Pattern(CXFA_Document* doc, XFA_PacketType packet)
33 : CXFA_Node(doc,
34 packet,
35 {XFA_XDPPACKET::kTemplate, XFA_XDPPACKET::kForm},
36 XFA_ObjectType::Node,
37 XFA_Element::Pattern,
38 kPatternPropertyData,
39 kPatternAttributeData,
40 cppgc::MakeGarbageCollected<CJX_Node>(
41 doc->GetHeap()->GetAllocationHandle(),
42 this)) {}
43
44CXFA_Pattern::~CXFA_Pattern() = default;
45
46CXFA_Color* CXFA_Pattern::GetColorIfExists() {
47 return GetChild<CXFA_Color>(0, XFA_Element::Color, false);
48}
49
50XFA_AttributeValue CXFA_Pattern::GetType() {
51 return JSObject()->GetEnum(XFA_Attribute::Type);
52}
53
54void CXFA_Pattern::Draw(CFGAS_GEGraphics* pGS,
55 const CFGAS_GEPath& fillPath,
56 FX_ARGB crStart,
57 const CFX_RectF& rtFill,
58 const CFX_Matrix& matrix) {
59 CXFA_Color* pColor = GetColorIfExists();
60 FX_ARGB crEnd = pColor ? pColor->GetValue() : CXFA_Color::kBlackColor;
61 CFGAS_GEPattern::HatchStyle iHatch = CFGAS_GEPattern::HatchStyle::Cross;
62 switch (GetType()) {
63 case XFA_AttributeValue::CrossDiagonal:
64 iHatch = CFGAS_GEPattern::HatchStyle::DiagonalCross;
65 break;
66 case XFA_AttributeValue::DiagonalLeft:
67 iHatch = CFGAS_GEPattern::HatchStyle::ForwardDiagonal;
68 break;
69 case XFA_AttributeValue::DiagonalRight:
70 iHatch = CFGAS_GEPattern::HatchStyle::BackwardDiagonal;
71 break;
72 case XFA_AttributeValue::Horizontal:
73 iHatch = CFGAS_GEPattern::HatchStyle::Horizontal;
74 break;
75 case XFA_AttributeValue::Vertical:
76 iHatch = CFGAS_GEPattern::HatchStyle::Vertical;
77 break;
78 default:
79 break;
80 }
81
82 CFGAS_GEPattern pattern(iHatch, crEnd, crStart);
86}
CFGAS_GEColor(CFGAS_GEPattern *pattern, const FX_ARGB argb)
StateRestorer(CFGAS_GEGraphics *graphics)
void FillPath(const CFGAS_GEPath &path, CFX_FillRenderOptions::FillType fill_type, const CFX_Matrix &matrix)
void SetFillColor(const CFGAS_GEColor &color)
CFGAS_GEPattern(HatchStyle hatchStyle, FX_ARGB foreArgb, FX_ARGB backArgb)
FX_ARGB GetValue() const
static constexpr FX_ARGB kBlackColor
Definition cxfa_color.h:15
~CXFA_Pattern() override
void Draw(CFGAS_GEGraphics *pGS, const CFGAS_GEPath &fillPath, FX_ARGB crStart, const CFX_RectF &rtFill, const CFX_Matrix &matrix)
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