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_MGR_H | 7 #ifndef _FPDFSDK_MGR_H |
8 #define _FPDFSDK_MGR_H | 8 #define _FPDFSDK_MGR_H |
9 | 9 |
| 10 #include "../../public/fpdf_formfill.h" |
| 11 #include "../../public/fpdf_fwlevent.h" // cross platform keycode and events def
ine. |
10 #include "fsdk_common.h" | 12 #include "fsdk_common.h" |
11 #include "fsdk_define.h" | 13 #include "fsdk_define.h" |
12 #include "fx_systemhandler.h" | 14 #include "fx_systemhandler.h" |
13 #include "fpdfxfa/fpdfxfa_doc.h" | 15 #include "fpdfxfa/fpdfxfa_doc.h" |
14 #include "fpdfxfa/fpdfxfa_page.h" | 16 #include "fpdfxfa/fpdfxfa_page.h" |
15 #include "fsdk_baseannot.h" | 17 #include "fsdk_baseannot.h" |
16 #include "fsdk_baseform.h" | 18 #include "fsdk_baseform.h" |
17 #include "fpdfformfill.h" | |
18 #include "fsdk_annothandler.h" | 19 #include "fsdk_annothandler.h" |
19 #include "fsdk_actionhandler.h" | 20 #include "fsdk_actionhandler.h" |
20 | 21 |
21 //cross platform keycode and events define. | |
22 #include "fpdf_fwlevent.h" | |
23 | |
24 | |
25 class CPDFSDK_Document; | 22 class CPDFSDK_Document; |
26 class CPDFSDK_PageView; | 23 class CPDFSDK_PageView; |
27 class CPDFSDK_Annot; | 24 class CPDFSDK_Annot; |
28 class CFFL_IFormFiller; | 25 class CFFL_IFormFiller; |
29 class CPDFSDK_Widget; | 26 class CPDFSDK_Widget; |
30 class IFX_SystemHandler; | 27 class IFX_SystemHandler; |
31 class CPDFSDK_ActionHandler; | 28 class CPDFSDK_ActionHandler; |
32 class CJS_RuntimeFactory; | 29 class CJS_RuntimeFactory; |
33 | 30 |
34 #include "javascript/IJavaScript.h" | 31 #include "javascript/IJavaScript.h" |
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
910 } | 907 } |
911 } | 908 } |
912 | 909 |
913 if (nStartPos < m) QuickSort(nStartPos, m, bAscend, pCompare); | 910 if (nStartPos < m) QuickSort(nStartPos, m, bAscend, pCompare); |
914 if (nStopPos > m) QuickSort(m, nStopPos, bAscend, pCompare); | 911 if (nStopPos > m) QuickSort(m, nStopPos, bAscend, pCompare); |
915 } | 912 } |
916 }; | 913 }; |
917 | 914 |
918 | 915 |
919 #endif //_FPDFSDK_MGR_H | 916 #endif //_FPDFSDK_MGR_H |
OLD | NEW |