summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_hyphenation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_hyphenation.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_hyphenation.cpp36
1 files changed, 26 insertions, 10 deletions
diff --git a/xfa/fxfa/parser/cxfa_hyphenation.cpp b/xfa/fxfa/parser/cxfa_hyphenation.cpp
index 0a3300c456..543a6c91f2 100644
--- a/xfa/fxfa/parser/cxfa_hyphenation.cpp
+++ b/xfa/fxfa/parser/cxfa_hyphenation.cpp
@@ -8,16 +8,32 @@
namespace {
-const XFA_Attribute kAttributeData[] = {XFA_Attribute::Id,
- XFA_Attribute::Use,
- XFA_Attribute::WordCharacterCount,
- XFA_Attribute::Hyphenate,
- XFA_Attribute::ExcludeInitialCap,
- XFA_Attribute::PushCharacterCount,
- XFA_Attribute::RemainCharacterCount,
- XFA_Attribute::Usehref,
- XFA_Attribute::ExcludeAllCaps,
- XFA_Attribute::Unknown};
+const CXFA_Node::AttributeData kAttributeData[] = {
+ {XFA_Attribute::Id, XFA_AttributeType::CData,
+ XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Template |
+ XFA_XDPPACKET_ConnectionSet | XFA_XDPPACKET_Form,
+ nullptr},
+ {XFA_Attribute::Use, XFA_AttributeType::CData,
+ XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Template |
+ XFA_XDPPACKET_ConnectionSet | XFA_XDPPACKET_Form,
+ nullptr},
+ {XFA_Attribute::WordCharacterCount, XFA_AttributeType::Integer,
+ XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)7},
+ {XFA_Attribute::Hyphenate, XFA_AttributeType::Boolean,
+ XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)0},
+ {XFA_Attribute::ExcludeInitialCap, XFA_AttributeType::Boolean,
+ XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)0},
+ {XFA_Attribute::PushCharacterCount, XFA_AttributeType::Integer,
+ XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)3},
+ {XFA_Attribute::RemainCharacterCount, XFA_AttributeType::Integer,
+ XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)3},
+ {XFA_Attribute::Usehref, XFA_AttributeType::CData,
+ XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Template |
+ XFA_XDPPACKET_ConnectionSet | XFA_XDPPACKET_Form,
+ nullptr},
+ {XFA_Attribute::ExcludeAllCaps, XFA_AttributeType::Boolean,
+ XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, (void*)0},
+ {XFA_Attribute::Unknown, XFA_AttributeType::Integer, 0, nullptr}};
constexpr wchar_t kName[] = L"hyphenation";