diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-07 20:08:31 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 20:08:31 +0000 |
commit | c8be4ce787252eaf3b03270bc99fe1e9e9044543 (patch) | |
tree | 83bc4eed903e5e1af2107a0238554d6e5195fc2a /xfa/fxfa/parser/cxfa_event.cpp | |
parent | b415ffb47de6e58603db2a01027aa879c0126b24 (diff) | |
download | pdfium-c8be4ce787252eaf3b03270bc99fe1e9e9044543.tar.xz |
Rename CXFA_Event to CXFA_EventData
This CL renames CXFA_Event to CXFA_EventData to make it clear it's part
of the Data hierarchy.
Change-Id: I3659dfba66498d07ce75fd5e8322732f9898e688
Reviewed-on: https://pdfium-review.googlesource.com/17980
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_event.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_event.cpp | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/xfa/fxfa/parser/cxfa_event.cpp b/xfa/fxfa/parser/cxfa_event.cpp deleted file mode 100644 index 8ba68fb294..0000000000 --- a/xfa/fxfa/parser/cxfa_event.cpp +++ /dev/null @@ -1,50 +0,0 @@ -// 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_event.h" - -#include "xfa/fxfa/parser/cxfa_node.h" - -CXFA_Event::CXFA_Event(CXFA_Node* pNode) : CXFA_Data(pNode) {} - -int32_t CXFA_Event::GetActivity() { - return m_pNode->JSNode()->GetEnum(XFA_ATTRIBUTE_Activity); -} - -XFA_Element CXFA_Event::GetEventType() const { - CXFA_Node* pChild = m_pNode->GetNodeItem(XFA_NODEITEM_FirstChild); - while (pChild) { - XFA_Element eType = pChild->GetElementType(); - if (eType != XFA_Element::Extras) - return eType; - - pChild = pChild->GetNodeItem(XFA_NODEITEM_NextSibling); - } - return XFA_Element::Unknown; -} - -void CXFA_Event::GetRef(WideStringView& wsRef) { - m_pNode->JSNode()->TryCData(XFA_ATTRIBUTE_Ref, wsRef, true); -} - -CXFA_Script CXFA_Event::GetScript() const { - return CXFA_Script(m_pNode->GetChild(0, XFA_Element::Script, false)); -} - -CXFA_Submit CXFA_Event::GetSubmit() const { - return CXFA_Submit(m_pNode->GetChild(0, XFA_Element::Submit, false)); -} - -void CXFA_Event::GetSignDataTarget(WideString& wsTarget) { - CXFA_Node* pNode = - m_pNode->JSNode()->GetProperty(0, XFA_Element::SignData, true); - if (!pNode) - return; - - WideStringView wsCData; - pNode->JSNode()->TryCData(XFA_ATTRIBUTE_Target, wsCData, true); - wsTarget = wsCData; -} |