| 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/fpdftext/fpdf_text.h" | 14 #include "core/include/fpdftext/fpdf_text.h" |
| 15 #include "fsdk_actionhandler.h" | 15 #include "fpdfsdk/include/fsdk_actionhandler.h" |
| 16 #include "fsdk_annothandler.h" | 16 #include "fpdfsdk/include/fsdk_annothandler.h" |
| 17 #include "fsdk_baseannot.h" | 17 #include "fpdfsdk/include/fsdk_baseannot.h" |
| 18 #include "fsdk_baseform.h" | 18 #include "fpdfsdk/include/fsdk_baseform.h" |
| 19 #include "fsdk_common.h" | 19 #include "fpdfsdk/include/fsdk_common.h" |
| 20 #include "fsdk_define.h" | 20 #include "fpdfsdk/include/fsdk_define.h" |
| 21 #include "fx_systemhandler.h" | 21 #include "fpdfsdk/include/fx_systemhandler.h" |
| 22 #include "javascript/IJavaScript.h" | 22 #include "javascript/IJavaScript.h" |
| 23 #include "public/fpdf_formfill.h" | 23 #include "public/fpdf_formfill.h" |
| 24 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. | 24 #include "public/fpdf_fwlevent.h" // cross platform keycode and events define. |
| 25 | 25 |
| 26 #ifdef PDF_ENABLE_XFA | 26 #ifdef PDF_ENABLE_XFA |
| 27 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" | 27 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" |
| 28 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" | 28 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_page.h" |
| 29 #endif // PDF_ENABLE_XFA | 29 #endif // PDF_ENABLE_XFA |
| 30 | 30 |
| 31 class CFFL_IFormFiller; | 31 class CFFL_IFormFiller; |
| (...skipping 622 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 |