OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "xfa/src/fxfa/parser/xfa_object.h" | 7 #include "xfa/fxfa/parser/xfa_object.h" |
8 | 8 |
9 #include "core/include/fxcrt/fx_ext.h" | 9 #include "core/include/fxcrt/fx_ext.h" |
10 #include "xfa/src/fgas/crt/fgas_codepage.h" | 10 #include "xfa/fgas/crt/fgas_codepage.h" |
11 #include "xfa/src/fgas/crt/fgas_system.h" | 11 #include "xfa/fgas/crt/fgas_system.h" |
12 #include "xfa/src/fxfa/fm2js/xfa_fm2jsapi.h" | 12 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" |
13 #include "xfa/src/fxfa/parser/xfa_basic_imp.h" | 13 #include "xfa/fxfa/parser/xfa_basic_imp.h" |
14 #include "xfa/src/fxfa/parser/xfa_docdata.h" | 14 #include "xfa/fxfa/parser/xfa_docdata.h" |
15 #include "xfa/src/fxfa/parser/xfa_doclayout.h" | 15 #include "xfa/fxfa/parser/xfa_doclayout.h" |
16 #include "xfa/src/fxfa/parser/xfa_document.h" | 16 #include "xfa/fxfa/parser/xfa_document.h" |
17 #include "xfa/src/fxfa/parser/xfa_document_layout_imp.h" | 17 #include "xfa/fxfa/parser/xfa_document_layout_imp.h" |
18 #include "xfa/src/fxfa/parser/xfa_localemgr.h" | 18 #include "xfa/fxfa/parser/xfa_localemgr.h" |
19 #include "xfa/src/fxfa/parser/xfa_parser.h" | 19 #include "xfa/fxfa/parser/xfa_parser.h" |
20 #include "xfa/src/fxfa/parser/xfa_script.h" | 20 #include "xfa/fxfa/parser/xfa_script.h" |
21 #include "xfa/src/fxfa/parser/xfa_utils.h" | 21 #include "xfa/fxfa/parser/xfa_utils.h" |
22 | 22 |
23 CXFA_Object::CXFA_Object(CXFA_Document* pDocument, FX_DWORD uFlags) | 23 CXFA_Object::CXFA_Object(CXFA_Document* pDocument, FX_DWORD uFlags) |
24 : m_pDocument(pDocument), m_uFlags(uFlags) {} | 24 : m_pDocument(pDocument), m_uFlags(uFlags) {} |
25 void CXFA_Object::GetClassName(CFX_WideStringC& wsName) const { | 25 void CXFA_Object::GetClassName(CFX_WideStringC& wsName) const { |
26 wsName = XFA_GetElementByID(GetClassID())->pName; | 26 wsName = XFA_GetElementByID(GetClassID())->pName; |
27 } | 27 } |
28 uint32_t CXFA_Object::GetClassHashCode() const { | 28 uint32_t CXFA_Object::GetClassHashCode() const { |
29 return XFA_GetElementByID(GetClassID())->uHash; | 29 return XFA_GetElementByID(GetClassID())->uHash; |
30 } | 30 } |
31 XFA_ELEMENT CXFA_Object::GetClassID() const { | 31 XFA_ELEMENT CXFA_Object::GetClassID() const { |
(...skipping 5367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5399 return m_pAttachNode->InsertChild(pNewNode, pBeforeNode); | 5399 return m_pAttachNode->InsertChild(pNewNode, pBeforeNode); |
5400 } | 5400 } |
5401 FX_BOOL CXFA_AttachNodeList::Remove(CXFA_Node* pNode) { | 5401 FX_BOOL CXFA_AttachNodeList::Remove(CXFA_Node* pNode) { |
5402 return m_pAttachNode->RemoveChild(pNode); | 5402 return m_pAttachNode->RemoveChild(pNode); |
5403 } | 5403 } |
5404 CXFA_Node* CXFA_AttachNodeList::Item(int32_t iIndex) { | 5404 CXFA_Node* CXFA_AttachNodeList::Item(int32_t iIndex) { |
5405 return m_pAttachNode->GetChild( | 5405 return m_pAttachNode->GetChild( |
5406 iIndex, XFA_ELEMENT_UNKNOWN, | 5406 iIndex, XFA_ELEMENT_UNKNOWN, |
5407 m_pAttachNode->GetClassID() == XFA_ELEMENT_Subform); | 5407 m_pAttachNode->GetClassID() == XFA_ELEMENT_Subform); |
5408 } | 5408 } |
OLD | NEW |