| 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 | 11 |
| 12 #include "../../core/include/fpdftext/fpdf_text.h" | 12 #include "../../core/include/fpdftext/fpdf_text.h" |
| 13 #include "../../public/fpdf_formfill.h" | |
| 14 #include "../../public/fpdf_fwlevent.h" // cross platform keycode and events de
fine. | |
| 15 #include "fsdk_actionhandler.h" | 13 #include "fsdk_actionhandler.h" |
| 16 #include "fsdk_annothandler.h" | 14 #include "fsdk_annothandler.h" |
| 17 #include "fsdk_baseannot.h" | 15 #include "fsdk_baseannot.h" |
| 18 #include "fsdk_baseform.h" | 16 #include "fsdk_baseform.h" |
| 19 #include "fsdk_common.h" | 17 #include "fsdk_common.h" |
| 20 #include "fsdk_define.h" | 18 #include "fsdk_define.h" |
| 21 #include "fx_systemhandler.h" | 19 #include "fx_systemhandler.h" |
| 22 #include "javascript/IJavaScript.h" | 20 #include "javascript/IJavaScript.h" |
| 21 #include "public/fpdf_formfill.h" |
| 22 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. |
| 23 #include "third_party/base/nonstd_unique_ptr.h" | 23 #include "third_party/base/nonstd_unique_ptr.h" |
| 24 | 24 |
| 25 class CFFL_IFormFiller; | 25 class CFFL_IFormFiller; |
| 26 class CPDFSDK_ActionHandler; | 26 class CPDFSDK_ActionHandler; |
| 27 class CPDFSDK_Annot; | 27 class CPDFSDK_Annot; |
| 28 class CPDFSDK_Document; | 28 class CPDFSDK_Document; |
| 29 class CPDFSDK_InterForm; | 29 class CPDFSDK_InterForm; |
| 30 class CPDFSDK_PageView; | 30 class CPDFSDK_PageView; |
| 31 class CPDFSDK_Widget; | 31 class CPDFSDK_Widget; |
| 32 class IFX_SystemHandler; | 32 class IFX_SystemHandler; |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 } | 428 } |
| 429 | 429 |
| 430 if (nStartPos < m) | 430 if (nStartPos < m) |
| 431 QuickSort(nStartPos, m, bAscend, pCompare); | 431 QuickSort(nStartPos, m, bAscend, pCompare); |
| 432 if (nStopPos > m) | 432 if (nStopPos > m) |
| 433 QuickSort(m, nStopPos, bAscend, pCompare); | 433 QuickSort(m, nStopPos, bAscend, pCompare); |
| 434 } | 434 } |
| 435 }; | 435 }; |
| 436 | 436 |
| 437 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 437 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ |
| OLD | NEW |