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_hyphenation.h"
8
9 namespace {
10
11 const CXFA_Node::AttributeData kAttributeData[] = {
12 {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
13 {XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
14 {XFA_Attribute::WordCharacterCount, XFA_AttributeType::Integer, (void*)7},
15 {XFA_Attribute::Hyphenate, XFA_AttributeType::Boolean, (void*)0},
16 {XFA_Attribute::ExcludeInitialCap, XFA_AttributeType::Boolean, (void*)0},
17 {XFA_Attribute::PushCharacterCount, XFA_AttributeType::Integer, (void*)3},
18 {XFA_Attribute::RemainCharacterCount, XFA_AttributeType::Integer, (void*)3},
19 {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
20 {XFA_Attribute::ExcludeAllCaps, XFA_AttributeType::Boolean, (void*)0},
21 {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
22
23 constexpr wchar_t kName[] = L"hyphenation";
24
25 } // namespace
26
CXFA_Hyphenation(CXFA_Document * doc,XFA_PacketType packet)27 CXFA_Hyphenation::CXFA_Hyphenation(CXFA_Document* doc, XFA_PacketType packet)
28 : CXFA_Node(doc,
29 packet,
30 (XFA_XDPPACKET_Template | XFA_XDPPACKET_Form),
31 XFA_ObjectType::Node,
32 XFA_Element::Hyphenation,
33 nullptr,
34 kAttributeData,
35 kName) {}
36
~CXFA_Hyphenation()37 CXFA_Hyphenation::~CXFA_Hyphenation() {}
38