| 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> | 
| 11 #include <memory> | 11 #include <memory> | 
| 12 #include <vector> | 12 #include <vector> | 
| 13 | 13 | 
|  | 14 #include "core/include/fpdfapi/cpdf_document.h" | 
| 14 #include "core/include/fpdftext/fpdf_text.h" | 15 #include "core/include/fpdftext/fpdf_text.h" | 
| 15 #include "fpdfsdk/include/fsdk_actionhandler.h" | 16 #include "fpdfsdk/include/fsdk_actionhandler.h" | 
| 16 #include "fpdfsdk/include/fsdk_annothandler.h" | 17 #include "fpdfsdk/include/fsdk_annothandler.h" | 
| 17 #include "fpdfsdk/include/fsdk_baseannot.h" | 18 #include "fpdfsdk/include/fsdk_baseannot.h" | 
| 18 #include "fpdfsdk/include/fsdk_baseform.h" | 19 #include "fpdfsdk/include/fsdk_baseform.h" | 
| 19 #include "fpdfsdk/include/fsdk_common.h" | 20 #include "fpdfsdk/include/fsdk_common.h" | 
| 20 #include "fpdfsdk/include/fsdk_define.h" | 21 #include "fpdfsdk/include/fsdk_define.h" | 
| 21 #include "fpdfsdk/include/fx_systemhandler.h" | 22 #include "fpdfsdk/include/fx_systemhandler.h" | 
| 22 #include "javascript/IJavaScript.h" | 23 #include "javascript/IJavaScript.h" | 
| 23 #include "public/fpdf_formfill.h" | 24 #include "public/fpdf_formfill.h" | 
| 24 #include "public/fpdf_fwlevent.h"  // cross platform keycode and events define. | 25 #include "public/fpdf_fwlevent.h"  // cross platform keycode and events define. | 
| 25 | 26 | 
| 26 #ifdef PDF_ENABLE_XFA | 27 #ifdef PDF_ENABLE_XFA | 
| 27 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | 28 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | 
| 28 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" | 29 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" | 
| 29 #endif  // PDF_ENABLE_XFA | 30 #endif  // PDF_ENABLE_XFA | 
| 30 | 31 | 
| 31 class CFFL_IFormFiller; | 32 class CFFL_IFormFiller; | 
| 32 class CPDFSDK_ActionHandler; | 33 class CPDFSDK_ActionHandler; | 
| 33 class CPDFSDK_Annot; | 34 class CPDFSDK_Annot; | 
| 34 class CPDFSDK_Document; |  | 
| 35 class CPDFSDK_InterForm; | 35 class CPDFSDK_InterForm; | 
| 36 class CPDFSDK_PageView; | 36 class CPDFSDK_PageView; | 
| 37 class CPDFSDK_Widget; | 37 class CPDFSDK_Widget; | 
| 38 class IFX_SystemHandler; | 38 class IFX_SystemHandler; | 
| 39 | 39 | 
| 40 // NOTE: |bsUTF16LE| must outlive the use of the result. Care must be taken | 40 // NOTE: |bsUTF16LE| must outlive the use of the result. Care must be taken | 
| 41 // since modifying the result would impact |bsUTF16LE|. | 41 // since modifying the result would impact |bsUTF16LE|. | 
| 42 FPDF_WIDESTRING AsFPDFWideString(CFX_ByteString* bsUTF16LE); | 42 FPDF_WIDESTRING AsFPDFWideString(CFX_ByteString* bsUTF16LE); | 
| 43 | 43 | 
| 44 class CPDFDoc_Environment final { | 44 class CPDFDoc_Environment final { | 
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 653   FX_BOOL m_bTakeOverPage; | 653   FX_BOOL m_bTakeOverPage; | 
| 654 #endif  // PDF_ENABLE_XFA | 654 #endif  // PDF_ENABLE_XFA | 
| 655   FX_BOOL m_bEnterWidget; | 655   FX_BOOL m_bEnterWidget; | 
| 656   FX_BOOL m_bExitWidget; | 656   FX_BOOL m_bExitWidget; | 
| 657   FX_BOOL m_bOnWidget; | 657   FX_BOOL m_bOnWidget; | 
| 658   FX_BOOL m_bValid; | 658   FX_BOOL m_bValid; | 
| 659   FX_BOOL m_bLocked; | 659   FX_BOOL m_bLocked; | 
| 660 }; | 660 }; | 
| 661 | 661 | 
| 662 #endif  // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 662 #endif  // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 
| OLD | NEW | 
|---|