| 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 FPDFXFA_DOC_H_ | 7 #ifndef FPDFXFA_DOC_H_ |
| 8 #define FPDFXFA_DOC_H_ | 8 #define FPDFXFA_DOC_H_ |
| 9 | 9 |
| 10 #include "public/fpdfview.h" | 10 #include "public/fpdfview.h" |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 virtual CXFA_NodeList* Enumerate(IXFA_Doc* hDoc) { return 0; } | 134 virtual CXFA_NodeList* Enumerate(IXFA_Doc* hDoc) { return 0; } |
| 135 virtual FX_BOOL Clear(IXFA_Doc* hDoc, | 135 virtual FX_BOOL Clear(IXFA_Doc* hDoc, |
| 136 CXFA_Node* pSigNode, | 136 CXFA_Node* pSigNode, |
| 137 FX_BOOL bCleared = TRUE) { | 137 FX_BOOL bCleared = TRUE) { |
| 138 return 0; | 138 return 0; |
| 139 } | 139 } |
| 140 | 140 |
| 141 // Get document path | 141 // Get document path |
| 142 virtual void GetURL(IXFA_Doc* hDoc, CFX_WideString& wsDocURL); | 142 virtual void GetURL(IXFA_Doc* hDoc, CFX_WideString& wsDocURL); |
| 143 virtual FX_ARGB GetHighlightColor(IXFA_Doc* hDoc); | 143 virtual FX_ARGB GetHighlightColor(IXFA_Doc* hDoc); |
| 144 virtual void AddDoRecord(IXFA_Widget* hWidget); | 144 |
| 145 /** | 145 /** |
| 146 *Submit data to email, http, ftp. | 146 *Submit data to email, http, ftp. |
| 147 * @param[in] hDoc The document handler. | 147 * @param[in] hDoc The document handler. |
| 148 * @param[in] eFormat Determines the format in which the data will be | 148 * @param[in] eFormat Determines the format in which the data will be |
| 149 *submitted. XFA_ATTRIBUTEENUM_Xdp, XFA_ATTRIBUTEENUM_Xml... | 149 *submitted. XFA_ATTRIBUTEENUM_Xdp, XFA_ATTRIBUTEENUM_Xml... |
| 150 * @param[in] wsTarget The URL to which the data will be submitted. | 150 * @param[in] wsTarget The URL to which the data will be submitted. |
| 151 * @param[in] eEncoding The encoding of text content. | 151 * @param[in] eEncoding The encoding of text content. |
| 152 * @param[in] pXDPContent Controls what subset of the data is submitted, used | 152 * @param[in] pXDPContent Controls what subset of the data is submitted, used |
| 153 *only when the format property is xdp. | 153 *only when the format property is xdp. |
| 154 * @param[in] bEmbedPDF, specifies whether PDF is embedded in the submitted | 154 * @param[in] bEmbedPDF, specifies whether PDF is embedded in the submitted |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 CPDF_Document* m_pPDFDoc; | 219 CPDF_Document* m_pPDFDoc; |
| 220 CPDFSDK_Document* m_pSDKDoc; | 220 CPDFSDK_Document* m_pSDKDoc; |
| 221 IXFA_Doc* m_pXFADoc; | 221 IXFA_Doc* m_pXFADoc; |
| 222 IXFA_DocView* m_pXFADocView; | 222 IXFA_DocView* m_pXFADocView; |
| 223 CPDFXFA_App* m_pApp; | 223 CPDFXFA_App* m_pApp; |
| 224 IJS_Context* m_pJSContext; | 224 IJS_Context* m_pJSContext; |
| 225 CFX_ArrayTemplate<CPDFXFA_Page*> m_XFAPageList; | 225 CFX_ArrayTemplate<CPDFXFA_Page*> m_XFAPageList; |
| 226 }; | 226 }; |
| 227 | 227 |
| 228 #endif // FPDFXFA_DOC_H_ | 228 #endif // FPDFXFA_DOC_H_ |
| OLD | NEW |