| 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 #ifndef XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ | 7 #ifndef XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ |
| 8 #define XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ | 8 #define XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ |
| 9 | 9 |
| 10 #include "xfa/fxfa/include/fxfa.h" | 10 #include "xfa/fxfa/include/fxfa.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 FX_BOOL bDataMerge, | 98 FX_BOOL bDataMerge, |
| 99 FX_BOOL bUpLevel); | 99 FX_BOOL bUpLevel); |
| 100 void DataMerge_UpdateBindingRelations(CXFA_Node* pFormUpdateRoot); | 100 void DataMerge_UpdateBindingRelations(CXFA_Node* pFormUpdateRoot); |
| 101 | 101 |
| 102 void ClearLayoutData(); | 102 void ClearLayoutData(); |
| 103 | 103 |
| 104 CFX_MapPtrTemplate<uint32_t, CXFA_Node*> m_rgGlobalBinding; | 104 CFX_MapPtrTemplate<uint32_t, CXFA_Node*> m_rgGlobalBinding; |
| 105 CXFA_NodeArray m_pPendingPageSet; | 105 CXFA_NodeArray m_pPendingPageSet; |
| 106 | 106 |
| 107 protected: | 107 protected: |
| 108 friend class CXFA_SimpleParser; | |
| 109 | |
| 110 CXFA_DocumentParser* m_pParser; | 108 CXFA_DocumentParser* m_pParser; |
| 111 CXFA_ScriptContext* m_pScriptContext; | 109 CXFA_ScriptContext* m_pScriptContext; |
| 112 CXFA_LayoutProcessor* m_pLayoutProcessor; | 110 CXFA_LayoutProcessor* m_pLayoutProcessor; |
| 113 CXFA_Node* m_pRootNode; | 111 CXFA_Node* m_pRootNode; |
| 114 CXFA_LocaleMgr* m_pLocalMgr; | 112 CXFA_LocaleMgr* m_pLocalMgr; |
| 115 CScript_DataWindow* m_pScriptDataWindow; | 113 CScript_DataWindow* m_pScriptDataWindow; |
| 116 CScript_EventPseudoModel* m_pScriptEvent; | 114 CScript_EventPseudoModel* m_pScriptEvent; |
| 117 CScript_HostPseudoModel* m_pScriptHost; | 115 CScript_HostPseudoModel* m_pScriptHost; |
| 118 CScript_LogPseudoModel* m_pScriptLog; | 116 CScript_LogPseudoModel* m_pScriptLog; |
| 119 CScript_LayoutPseudoModel* m_pScriptLayout; | 117 CScript_LayoutPseudoModel* m_pScriptLayout; |
| 120 CScript_SignaturePseudoModel* m_pScriptSignature; | 118 CScript_SignaturePseudoModel* m_pScriptSignature; |
| 121 CXFA_NodeSet m_PurgeNodes; | 119 CXFA_NodeSet m_PurgeNodes; |
| 122 XFA_VERSION m_eCurVersionMode; | 120 XFA_VERSION m_eCurVersionMode; |
| 123 uint32_t m_dwDocFlags; | 121 uint32_t m_dwDocFlags; |
| 124 }; | 122 }; |
| 125 | 123 |
| 126 #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ | 124 #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ |
| OLD | NEW |