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/fxfa.h" |
11 #include "xfa/fxfa/parser/xfa_localemgr.h" | 11 #include "xfa/fxfa/parser/xfa_localemgr.h" |
12 #include "xfa/fxfa/parser/xfa_object.h" | 12 #include "xfa/fxfa/parser/xfa_object.h" |
13 | 13 |
14 enum XFA_VERSION { | 14 enum XFA_VERSION { |
15 XFA_VERSION_UNKNOWN = 0, | 15 XFA_VERSION_UNKNOWN = 0, |
16 XFA_VERSION_200 = 200, | 16 XFA_VERSION_200 = 200, |
17 XFA_VERSION_202 = 202, | 17 XFA_VERSION_202 = 202, |
18 XFA_VERSION_204 = 204, | 18 XFA_VERSION_204 = 204, |
19 XFA_VERSION_205 = 205, | 19 XFA_VERSION_205 = 205, |
20 XFA_VERSION_206 = 206, | 20 XFA_VERSION_206 = 206, |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 CScript_HostPseudoModel* m_pScriptHost; | 115 CScript_HostPseudoModel* m_pScriptHost; |
116 CScript_LogPseudoModel* m_pScriptLog; | 116 CScript_LogPseudoModel* m_pScriptLog; |
117 CScript_LayoutPseudoModel* m_pScriptLayout; | 117 CScript_LayoutPseudoModel* m_pScriptLayout; |
118 CScript_SignaturePseudoModel* m_pScriptSignature; | 118 CScript_SignaturePseudoModel* m_pScriptSignature; |
119 CXFA_NodeSet m_PurgeNodes; | 119 CXFA_NodeSet m_PurgeNodes; |
120 XFA_VERSION m_eCurVersionMode; | 120 XFA_VERSION m_eCurVersionMode; |
121 uint32_t m_dwDocFlags; | 121 uint32_t m_dwDocFlags; |
122 }; | 122 }; |
123 | 123 |
124 #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ | 124 #endif // XFA_FXFA_PARSER_CXFA_DOCUMENT_H_ |
OLD | NEW |