• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_present.h"
8 
9 namespace {
10 
11 const CXFA_Node::PropertyData kPropertyData[] = {
12     {XFA_Element::Xdp, 1, 0},
13     {XFA_Element::Cache, 1, 0},
14     {XFA_Element::Pagination, 1, 0},
15     {XFA_Element::Overprint, 1, 0},
16     {XFA_Element::BehaviorOverride, 1, 0},
17     {XFA_Element::Copies, 1, 0},
18     {XFA_Element::Output, 1, 0},
19     {XFA_Element::Validate, 1, 0},
20     {XFA_Element::Layout, 1, 0},
21     {XFA_Element::Script, 1, 0},
22     {XFA_Element::Common, 1, 0},
23     {XFA_Element::PaginationOverride, 1, 0},
24     {XFA_Element::Destination, 1, 0},
25     {XFA_Element::IncrementalMerge, 1, 0},
26     {XFA_Element::Unknown, 0, 0}};
27 const CXFA_Node::AttributeData kAttributeData[] = {
28     {XFA_Attribute::Desc, XFA_AttributeType::CData, nullptr},
29     {XFA_Attribute::Lock, XFA_AttributeType::Integer, (void*)0},
30     {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
31 
32 constexpr wchar_t kName[] = L"present";
33 
34 }  // namespace
35 
CXFA_Present(CXFA_Document * doc,XFA_PacketType packet)36 CXFA_Present::CXFA_Present(CXFA_Document* doc, XFA_PacketType packet)
37     : CXFA_Node(doc,
38                 packet,
39                 XFA_XDPPACKET_Config,
40                 XFA_ObjectType::Node,
41                 XFA_Element::Present,
42                 kPropertyData,
43                 kAttributeData,
44                 kName) {}
45 
~CXFA_Present()46 CXFA_Present::~CXFA_Present() {}
47