| 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_SRC_FXFA_PARSER_XFA_UTILS_H_ | 7 #ifndef XFA_FXFA_PARSER_XFA_UTILS_H_ |
| 8 #define XFA_SRC_FXFA_PARSER_XFA_UTILS_H_ | 8 #define XFA_FXFA_PARSER_XFA_UTILS_H_ |
| 9 | 9 |
| 10 #include "xfa/fde/xml/fde_xml.h" |
| 10 #include "xfa/include/fxfa/fxfa_basic.h" | 11 #include "xfa/include/fxfa/fxfa_basic.h" |
| 11 #include "xfa/src/fde/xml/fde_xml.h" | |
| 12 | 12 |
| 13 class CXFA_LocaleValue; | 13 class CXFA_LocaleValue; |
| 14 | 14 |
| 15 FX_BOOL XFA_FDEExtension_ResolveNamespaceQualifier( | 15 FX_BOOL XFA_FDEExtension_ResolveNamespaceQualifier( |
| 16 IFDE_XMLElement* pNode, | 16 IFDE_XMLElement* pNode, |
| 17 const CFX_WideStringC& wsQualifier, | 17 const CFX_WideStringC& wsQualifier, |
| 18 CFX_WideString& wsNamespaceURI); | 18 CFX_WideString& wsNamespaceURI); |
| 19 template <class NodeType, class TraverseStrategy> | 19 template <class NodeType, class TraverseStrategy> |
| 20 class CXFA_NodeIteratorTemplate { | 20 class CXFA_NodeIteratorTemplate { |
| 21 public: | 21 public: |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 FX_BOOL bLayoutContainer = FALSE); | 209 FX_BOOL bLayoutContainer = FALSE); |
| 210 FX_BOOL XFA_IsTakingupSpace(XFA_ATTRIBUTEENUM ePresence); | 210 FX_BOOL XFA_IsTakingupSpace(XFA_ATTRIBUTEENUM ePresence); |
| 211 FX_BOOL XFA_IsFlowingLayout(XFA_ATTRIBUTEENUM eLayout); | 211 FX_BOOL XFA_IsFlowingLayout(XFA_ATTRIBUTEENUM eLayout); |
| 212 FX_BOOL XFA_IsHorizontalFlow(XFA_ATTRIBUTEENUM eLayout); | 212 FX_BOOL XFA_IsHorizontalFlow(XFA_ATTRIBUTEENUM eLayout); |
| 213 void XFA_DataExporter_DealWithDataGroupNode(CXFA_Node* pDataNode); | 213 void XFA_DataExporter_DealWithDataGroupNode(CXFA_Node* pDataNode); |
| 214 void XFA_DataExporter_RegenerateFormFile(CXFA_Node* pNode, | 214 void XFA_DataExporter_RegenerateFormFile(CXFA_Node* pNode, |
| 215 IFX_Stream* pStream, | 215 IFX_Stream* pStream, |
| 216 const FX_CHAR* pChecksum = NULL, | 216 const FX_CHAR* pChecksum = NULL, |
| 217 FX_BOOL bSaveXML = FALSE); | 217 FX_BOOL bSaveXML = FALSE); |
| 218 | 218 |
| 219 #endif // XFA_SRC_FXFA_PARSER_XFA_UTILS_H_ | 219 #endif // XFA_FXFA_PARSER_XFA_UTILS_H_ |
| OLD | NEW |