1 // Copyright 2017 PDFium Authors. All rights reserved.
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_edge.h"
8 
9 #include "fxjs/xfa/cjx_edge.h"
10 #include "third_party/base/ptr_util.h"
11 
12 namespace {
13 
14 const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Color, 1, 0},
15                                                  {XFA_Element::Extras, 1, 0},
16                                                  {XFA_Element::Unknown, 0, 0}};
17 const CXFA_Node::AttributeData kAttributeData[] = {
18     {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
19     {XFA_Attribute::Cap, XFA_AttributeType::Enum,
20      (void*)XFA_AttributeEnum::Square},
21     {XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
22     {XFA_Attribute::Stroke, XFA_AttributeType::Enum,
23      (void*)XFA_AttributeEnum::Solid},
24     {XFA_Attribute::Presence, XFA_AttributeType::Enum,
25      (void*)XFA_AttributeEnum::Visible},
26     {XFA_Attribute::Thickness, XFA_AttributeType::Measure, (void*)L"0.5pt"},
27     {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
28     {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
29 
30 constexpr wchar_t kName[] = L"edge";
31 
32 }  // namespace
33 
CXFA_Edge(CXFA_Document * doc,XFA_PacketType packet)34 CXFA_Edge::CXFA_Edge(CXFA_Document* doc, XFA_PacketType packet)
35     : CXFA_Stroke(doc,
36                   packet,
37                   (XFA_XDPPACKET_Template | XFA_XDPPACKET_Form),
38                   XFA_ObjectType::Node,
39                   XFA_Element::Edge,
40                   kPropertyData,
41                   kAttributeData,
42                   kName,
43                   pdfium::MakeUnique<CJX_Edge>(this)) {}
44 
~CXFA_Edge()45 CXFA_Edge::~CXFA_Edge() {}
46