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 | 12 |
13 #include "core/include/fpdftext/fpdf_text.h" | 13 #include "core/include/fpdftext/fpdf_text.h" |
14 #include "fsdk_actionhandler.h" | 14 #include "fsdk_actionhandler.h" |
15 #include "fsdk_annothandler.h" | 15 #include "fsdk_annothandler.h" |
16 #include "fsdk_baseannot.h" | 16 #include "fsdk_baseannot.h" |
17 #include "fsdk_baseform.h" | 17 #include "fsdk_baseform.h" |
18 #include "fsdk_common.h" | 18 #include "fsdk_common.h" |
19 #include "fsdk_define.h" | 19 #include "fsdk_define.h" |
20 #include "fx_systemhandler.h" | 20 #include "fx_systemhandler.h" |
21 #include "javascript/IJavaScript.h" | 21 #include "javascript/IJavaScript.h" |
22 #include "public/fpdf_formfill.h" | 22 #include "public/fpdf_formfill.h" |
23 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. | 23 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. |
24 | 24 |
25 #ifdef PDF_ENABLE_XFA | 25 #ifdef PDF_ENABLE_XFA |
26 #include "fpdfxfa/fpdfxfa_doc.h" | 26 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" |
27 #include "fpdfxfa/fpdfxfa_page.h" | 27 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" |
28 #endif // PDF_ENABLE_XFA | 28 #endif // PDF_ENABLE_XFA |
29 | 29 |
30 class CFFL_IFormFiller; | 30 class CFFL_IFormFiller; |
31 class CPDFSDK_ActionHandler; | 31 class CPDFSDK_ActionHandler; |
32 class CPDFSDK_Annot; | 32 class CPDFSDK_Annot; |
33 class CPDFSDK_Document; | 33 class CPDFSDK_Document; |
34 class CPDFSDK_InterForm; | 34 class CPDFSDK_InterForm; |
35 class CPDFSDK_PageView; | 35 class CPDFSDK_PageView; |
36 class CPDFSDK_Widget; | 36 class CPDFSDK_Widget; |
37 class IFX_SystemHandler; | 37 class IFX_SystemHandler; |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 } | 732 } |
733 | 733 |
734 if (nStartPos < m) | 734 if (nStartPos < m) |
735 QuickSort(nStartPos, m, bAscend, pCompare); | 735 QuickSort(nStartPos, m, bAscend, pCompare); |
736 if (nStopPos > m) | 736 if (nStopPos > m) |
737 QuickSort(m, nStopPos, bAscend, pCompare); | 737 QuickSort(m, nStopPos, bAscend, pCompare); |
738 } | 738 } |
739 }; | 739 }; |
740 | 740 |
741 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 741 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ |
OLD | NEW |