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 FPDFSDK_INCLUDE_FSDK_MGR_H_ | 7 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_ |
8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_ | 8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 FPDF_WIDESTRING encode = | 371 FPDF_WIDESTRING encode = |
372 (FPDF_WIDESTRING)bsEncode.GetBuffer(bsEncode.GetLength()); | 372 (FPDF_WIDESTRING)bsEncode.GetBuffer(bsEncode.GetLength()); |
373 | 373 |
374 return m_pInfo->FFI_PutRequestURL(m_pInfo, URL, data, encode); | 374 return m_pInfo->FFI_PutRequestURL(m_pInfo, URL, data, encode); |
375 } | 375 } |
376 return FALSE; | 376 return FALSE; |
377 } | 377 } |
378 | 378 |
379 FPDF_BOOL FFI_ShowFileDialog(const FX_WCHAR* wsTitle, | 379 FPDF_BOOL FFI_ShowFileDialog(const FX_WCHAR* wsTitle, |
380 const FX_WCHAR* wsFilter, | 380 const FX_WCHAR* wsFilter, |
381 CFX_WideStringArray& wsPathArr, | 381 std::vector<CFX_WideString>& wsPathArr, |
382 FX_BOOL bOpen) { | 382 FX_BOOL bOpen) { |
383 return FALSE; | 383 return FALSE; |
384 } | 384 } |
385 | 385 |
386 CFX_WideString FFI_GetLanguage() { | 386 CFX_WideString FFI_GetLanguage() { |
387 if (m_pInfo && m_pInfo->FFI_GetLanguage) { | 387 if (m_pInfo && m_pInfo->FFI_GetLanguage) { |
388 int nRequiredLen = m_pInfo->FFI_GetLanguage(m_pInfo, NULL, 0); | 388 int nRequiredLen = m_pInfo->FFI_GetLanguage(m_pInfo, NULL, 0); |
389 if (nRequiredLen <= 0) | 389 if (nRequiredLen <= 0) |
390 return L""; | 390 return L""; |
391 | 391 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 FX_BOOL m_bTakeOverPage; | 654 FX_BOOL m_bTakeOverPage; |
655 #endif // PDF_ENABLE_XFA | 655 #endif // PDF_ENABLE_XFA |
656 FX_BOOL m_bEnterWidget; | 656 FX_BOOL m_bEnterWidget; |
657 FX_BOOL m_bExitWidget; | 657 FX_BOOL m_bExitWidget; |
658 FX_BOOL m_bOnWidget; | 658 FX_BOOL m_bOnWidget; |
659 FX_BOOL m_bValid; | 659 FX_BOOL m_bValid; |
660 FX_BOOL m_bLocked; | 660 FX_BOOL m_bLocked; |
661 }; | 661 }; |
662 | 662 |
663 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 663 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ |
OLD | NEW |