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_XFA_SCRIPT_RESOLVEPROCESSOR_H_ | 7 #ifndef XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ |
8 #define XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ | 8 #define XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ |
9 | 9 |
10 #include "xfa/fxfa/parser/xfa_object.h" | 10 #include "xfa/fxfa/parser/xfa_object.h" |
11 #include "xfa/fxfa/parser/xfa_script.h" | 11 #include "xfa/fxfa/parser/xfa_script.h" |
12 | 12 |
13 class CXFA_NodeHelper; | 13 class CXFA_NodeHelper; |
14 class CXFA_ScriptContext; | 14 class CXFA_ScriptContext; |
15 | 15 |
16 class CXFA_ResolveNodesData { | 16 class CXFA_ResolveNodesData { |
17 public: | 17 public: |
18 CXFA_ResolveNodesData(CXFA_ScriptContext* pSC = NULL); | 18 CXFA_ResolveNodesData(CXFA_ScriptContext* pSC = nullptr); |
19 ~CXFA_ResolveNodesData(); | 19 ~CXFA_ResolveNodesData(); |
20 | 20 |
21 CXFA_ScriptContext* m_pSC; | 21 CXFA_ScriptContext* m_pSC; |
22 CXFA_Object* m_CurNode; | 22 CXFA_Object* m_CurNode; |
23 CFX_WideString m_wsName; | 23 CFX_WideString m_wsName; |
24 XFA_HashCode m_uHashName; | 24 XFA_HashCode m_uHashName; |
25 CFX_WideString m_wsCondition; | 25 CFX_WideString m_wsCondition; |
26 int32_t m_nLevel; | 26 int32_t m_nLevel; |
27 CXFA_ObjArray m_Nodes; | 27 CXFA_ObjArray m_Nodes; |
28 uint32_t m_dwStyles; | 28 uint32_t m_dwStyles; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 CXFA_NodeHelper* GetNodeHelper() { return m_pNodeHelper; } | 69 CXFA_NodeHelper* GetNodeHelper() { return m_pNodeHelper; } |
70 | 70 |
71 private: | 71 private: |
72 CXFA_NodeHelper* m_pNodeHelper; | 72 CXFA_NodeHelper* m_pNodeHelper; |
73 | 73 |
74 public: | 74 public: |
75 int32_t m_iCurStart; | 75 int32_t m_iCurStart; |
76 }; | 76 }; |
77 | 77 |
78 #endif // XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ | 78 #endif // XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_ |
OLD | NEW |