blob: 20dce386523904e8845ab8b66bcbc0a3e99e1b6f [file] [log] [blame]
// Copyright 2016 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_submitdata.h"
#include "xfa/fxfa/parser/cxfa_node.h"
CXFA_SubmitData::CXFA_SubmitData(CXFA_Node* pNode) : CXFA_DataData(pNode) {}
bool CXFA_SubmitData::IsSubmitEmbedPDF() const {
return m_pNode->JSObject()->GetBoolean(XFA_Attribute::EmbedPDF);
}
XFA_AttributeEnum CXFA_SubmitData::GetSubmitFormat() const {
return m_pNode->JSObject()->GetEnum(XFA_Attribute::Format);
}
WideString CXFA_SubmitData::GetSubmitTarget() const {
return m_pNode->JSObject()->GetCData(XFA_Attribute::Target);
}
WideString CXFA_SubmitData::GetSubmitXDPContent() const {
return m_pNode->JSObject()->GetCData(XFA_Attribute::XdpContent);
}