blob: 0da1da2199b5e8a8a24662a955cfaf7b5544226a [file] [log] [blame]
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "xfa/fxfa/parser/cxfa_pageset.h"
#include "fxjs/xfa/cjx_container.h"
#include "xfa/fxfa/parser/cxfa_document.h"
namespace {
const CXFA_Node::PropertyData kPageSetPropertyData[] = {
{XFA_Element::Extras, 1, 0},
{XFA_Element::Occur, 1, 0},
};
const CXFA_Node::AttributeData kPageSetAttributeData[] = {
{XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Relation, XFA_AttributeType::Enum,
(void*)XFA_AttributeValue::OrderedOccurrence},
{XFA_Attribute::Relevant, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::DuplexImposition, XFA_AttributeType::Enum,
(void*)XFA_AttributeValue::LongEdge},
{XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
};
} // namespace
CXFA_PageSet::CXFA_PageSet(CXFA_Document* doc, XFA_PacketType packet)
: CXFA_Node(doc,
packet,
(XFA_XDPPACKET_Template | XFA_XDPPACKET_Form),
XFA_ObjectType::ContainerNode,
XFA_Element::PageSet,
kPageSetPropertyData,
kPageSetAttributeData,
cppgc::MakeGarbageCollected<CJX_Container>(
doc->GetHeap()->GetAllocationHandle(),
this)) {}
CXFA_PageSet::~CXFA_PageSet() = default;