| 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 #include "public/fpdf_formfill.h" | 7 #include "public/fpdf_formfill.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "core/fpdfapi/page/cpdf_page.h" | 12 #include "core/fpdfapi/page/cpdf_page.h" |
| 13 #include "core/fpdfapi/parser/cpdf_document.h" | 13 #include "core/fpdfapi/parser/cpdf_document.h" |
| 14 #include "core/fpdfapi/render/cpdf_renderoptions.h" | 14 #include "core/fpdfapi/render/cpdf_renderoptions.h" |
| 15 #include "core/fpdfdoc/cpdf_formcontrol.h" | 15 #include "core/fpdfdoc/cpdf_formcontrol.h" |
| 16 #include "core/fpdfdoc/cpdf_formfield.h" | 16 #include "core/fpdfdoc/cpdf_formfield.h" |
| 17 #include "core/fpdfdoc/cpdf_interform.h" | 17 #include "core/fpdfdoc/cpdf_interform.h" |
| 18 #include "core/fpdfdoc/cpdf_occontext.h" | 18 #include "core/fpdfdoc/cpdf_occontext.h" |
| 19 #include "core/fxge/cfx_fxgedevice.h" | 19 #include "core/fxge/cfx_fxgedevice.h" |
| 20 #include "fpdfsdk/cpdfsdk_formfillenvironment.h" | 20 #include "fpdfsdk/cpdfsdk_formfillenvironment.h" |
| 21 #include "fpdfsdk/cpdfsdk_interform.h" | 21 #include "fpdfsdk/cpdfsdk_interform.h" |
| 22 #include "fpdfsdk/cpdfsdk_pageview.h" | 22 #include "fpdfsdk/cpdfsdk_pageview.h" |
| 23 #include "fpdfsdk/fsdk_actionhandler.h" | 23 #include "fpdfsdk/fsdk_actionhandler.h" |
| 24 #include "fpdfsdk/fsdk_define.h" | 24 #include "fpdfsdk/fsdk_define.h" |
| 25 #include "public/fpdfview.h" | 25 #include "public/fpdfview.h" |
| 26 #include "third_party/base/ptr_util.h" | 26 #include "third_party/base/ptr_util.h" |
| 27 #include "third_party/base/stl_util.h" | 27 #include "third_party/base/stl_util.h" |
| 28 | 28 |
| 29 #ifdef PDF_ENABLE_XFA | 29 #ifdef PDF_ENABLE_XFA |
| 30 #include "fpdfsdk/fpdfxfa/cpdfxfa_app.h" | |
| 31 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" | 30 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h" |
| 32 #include "fpdfsdk/fpdfxfa/cpdfxfa_page.h" | 31 #include "fpdfsdk/fpdfxfa/cpdfxfa_page.h" |
| 33 #include "xfa/fxfa/xfa_ffdocview.h" | 32 #include "xfa/fxfa/xfa_ffdocview.h" |
| 34 #include "xfa/fxfa/xfa_ffpageview.h" | 33 #include "xfa/fxfa/xfa_ffpageview.h" |
| 35 #include "xfa/fxfa/xfa_ffwidget.h" | 34 #include "xfa/fxfa/xfa_ffwidget.h" |
| 36 #endif // PDF_ENABLE_XFA | 35 #endif // PDF_ENABLE_XFA |
| 37 | 36 |
| 38 namespace { | 37 namespace { |
| 39 | 38 |
| 40 CPDFSDK_FormFillEnvironment* HandleToCPDFSDKEnvironment( | 39 CPDFSDK_FormFillEnvironment* HandleToCPDFSDKEnvironment( |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 pFormFillEnv); | 740 pFormFillEnv); |
| 742 } | 741 } |
| 743 } else { | 742 } else { |
| 744 if (aa.ActionExist(CPDF_AAction::ClosePage)) { | 743 if (aa.ActionExist(CPDF_AAction::ClosePage)) { |
| 745 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage); | 744 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage); |
| 746 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, | 745 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, |
| 747 pFormFillEnv); | 746 pFormFillEnv); |
| 748 } | 747 } |
| 749 } | 748 } |
| 750 } | 749 } |
| OLD | NEW |