OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ | 7 #ifndef FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
8 #define FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ | 8 #define FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 FPDF_WIDESTRING pSubject, | 140 FPDF_WIDESTRING pSubject, |
141 FPDF_WIDESTRING pCC, | 141 FPDF_WIDESTRING pCC, |
142 FPDF_WIDESTRING pBcc, | 142 FPDF_WIDESTRING pBcc, |
143 FPDF_WIDESTRING pMsg); | 143 FPDF_WIDESTRING pMsg); |
144 void UploadTo(FPDF_FILEHANDLER* fileHandler, | 144 void UploadTo(FPDF_FILEHANDLER* fileHandler, |
145 int fileFlag, | 145 int fileFlag, |
146 FPDF_WIDESTRING uploadTo); | 146 FPDF_WIDESTRING uploadTo); |
147 FPDF_FILEHANDLER* OpenFile(int fileType, | 147 FPDF_FILEHANDLER* OpenFile(int fileType, |
148 FPDF_WIDESTRING wsURL, | 148 FPDF_WIDESTRING wsURL, |
149 const char* mode); | 149 const char* mode); |
150 IFX_FileRead* DownloadFromURL(const FX_WCHAR* url); | 150 IFX_SeekableReadStream* DownloadFromURL(const FX_WCHAR* url); |
151 CFX_WideString PostRequestURL(const FX_WCHAR* wsURL, | 151 CFX_WideString PostRequestURL(const FX_WCHAR* wsURL, |
152 const FX_WCHAR* wsData, | 152 const FX_WCHAR* wsData, |
153 const FX_WCHAR* wsContentType, | 153 const FX_WCHAR* wsContentType, |
154 const FX_WCHAR* wsEncode, | 154 const FX_WCHAR* wsEncode, |
155 const FX_WCHAR* wsHeader); | 155 const FX_WCHAR* wsHeader); |
156 FPDF_BOOL PutRequestURL(const FX_WCHAR* wsURL, | 156 FPDF_BOOL PutRequestURL(const FX_WCHAR* wsURL, |
157 const FX_WCHAR* wsData, | 157 const FX_WCHAR* wsData, |
158 const FX_WCHAR* wsEncode); | 158 const FX_WCHAR* wsEncode); |
159 CFX_WideString GetLanguage(); | 159 CFX_WideString GetLanguage(); |
160 | 160 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm; | 217 std::unique_ptr<CPDFSDK_InterForm> m_pInterForm; |
218 CPDFSDK_Annot::ObservedPtr m_pFocusAnnot; | 218 CPDFSDK_Annot::ObservedPtr m_pFocusAnnot; |
219 UnderlyingDocumentType* m_pUnderlyingDoc; | 219 UnderlyingDocumentType* m_pUnderlyingDoc; |
220 std::unique_ptr<CFFL_InteractiveFormFiller> m_pFormFiller; | 220 std::unique_ptr<CFFL_InteractiveFormFiller> m_pFormFiller; |
221 std::unique_ptr<CFX_SystemHandler> m_pSysHandler; | 221 std::unique_ptr<CFX_SystemHandler> m_pSysHandler; |
222 bool m_bChangeMask; | 222 bool m_bChangeMask; |
223 bool m_bBeingDestroyed; | 223 bool m_bBeingDestroyed; |
224 }; | 224 }; |
225 | 225 |
226 #endif // FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ | 226 #endif // FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
OLD | NEW |