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/fpdfapi/fpdf_parser/include/cpdf_document.h" |
15 #include "fpdfsdk/include/fsdk_actionhandler.h" | 15 #include "fpdfsdk/include/fsdk_actionhandler.h" |
16 #include "fpdfsdk/include/fsdk_annothandler.h" | 16 #include "fpdfsdk/include/fsdk_annothandler.h" |
17 #include "fpdfsdk/include/fsdk_baseannot.h" | 17 #include "fpdfsdk/include/fsdk_baseannot.h" |
18 #include "fpdfsdk/include/fsdk_baseform.h" | 18 #include "fpdfsdk/include/fsdk_baseform.h" |
19 #include "fpdfsdk/include/fsdk_common.h" | 19 #include "fpdfsdk/include/fsdk_common.h" |
20 #include "fpdfsdk/include/fsdk_define.h" | 20 #include "fpdfsdk/include/fsdk_define.h" |
21 #include "fpdfsdk/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" | 24 #include "public/fpdf_fwlevent.h" |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 FX_BOOL m_bTakeOverPage; | 647 FX_BOOL m_bTakeOverPage; |
648 #endif // PDF_ENABLE_XFA | 648 #endif // PDF_ENABLE_XFA |
649 FX_BOOL m_bEnterWidget; | 649 FX_BOOL m_bEnterWidget; |
650 FX_BOOL m_bExitWidget; | 650 FX_BOOL m_bExitWidget; |
651 FX_BOOL m_bOnWidget; | 651 FX_BOOL m_bOnWidget; |
652 FX_BOOL m_bValid; | 652 FX_BOOL m_bValid; |
653 FX_BOOL m_bLocked; | 653 FX_BOOL m_bLocked; |
654 }; | 654 }; |
655 | 655 |
656 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 656 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ |
OLD | NEW |