| 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/fpdf_page/include/cpdf_page.h" | 12 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
| 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 14 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" | 14 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" |
| 15 #include "fpdfsdk/include/fsdk_define.h" | 15 #include "fpdfsdk/include/fsdk_define.h" |
| 16 #include "fpdfsdk/include/fsdk_mgr.h" | 16 #include "fpdfsdk/include/fsdk_mgr.h" |
| 17 #include "public/fpdfview.h" | 17 #include "public/fpdfview.h" |
| 18 #include "third_party/base/stl_util.h" | 18 #include "third_party/base/stl_util.h" |
| 19 | 19 |
| 20 #ifdef PDF_ENABLE_XFA | 20 #ifdef PDF_ENABLE_XFA |
| 21 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" | 21 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" |
| 22 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" | 22 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h" |
| 23 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" | 23 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" |
| 24 #include "xfa/include/fxfa/xfa_ffapp.h" | 24 #include "xfa/fxfa/include/xfa_ffapp.h" |
| 25 #include "xfa/include/fxfa/xfa_ffdocview.h" | 25 #include "xfa/fxfa/include/xfa_ffdocview.h" |
| 26 #include "xfa/include/fxfa/xfa_ffpageview.h" | 26 #include "xfa/fxfa/include/xfa_ffpageview.h" |
| 27 #include "xfa/include/fxfa/xfa_ffwidget.h" | 27 #include "xfa/fxfa/include/xfa_ffwidget.h" |
| 28 #endif // PDF_ENABLE_XFA | 28 #endif // PDF_ENABLE_XFA |
| 29 | 29 |
| 30 namespace { | 30 namespace { |
| 31 | 31 |
| 32 CPDFSDK_InterForm* FormHandleToInterForm(FPDF_FORMHANDLE hHandle) { | 32 CPDFSDK_InterForm* FormHandleToInterForm(FPDF_FORMHANDLE hHandle) { |
| 33 CPDFSDK_Document* pSDKDoc = CPDFSDK_Document::FromFPDFFormHandle(hHandle); | 33 CPDFSDK_Document* pSDKDoc = CPDFSDK_Document::FromFPDFFormHandle(hHandle); |
| 34 return pSDKDoc ? pSDKDoc->GetInterForm() : nullptr; | 34 return pSDKDoc ? pSDKDoc->GetInterForm() : nullptr; |
| 35 } | 35 } |
| 36 | 36 |
| 37 CPDFSDK_PageView* FormHandleToPageView(FPDF_FORMHANDLE hHandle, | 37 CPDFSDK_PageView* FormHandleToPageView(FPDF_FORMHANDLE hHandle, |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 pActionHandler->DoAction_Page(action, CPDF_AAction::OpenPage, pSDKDoc); | 719 pActionHandler->DoAction_Page(action, CPDF_AAction::OpenPage, pSDKDoc); |
| 720 } | 720 } |
| 721 } else { | 721 } else { |
| 722 if (aa.ActionExist(CPDF_AAction::ClosePage)) { | 722 if (aa.ActionExist(CPDF_AAction::ClosePage)) { |
| 723 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage); | 723 CPDF_Action action = aa.GetAction(CPDF_AAction::ClosePage); |
| 724 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, pSDKDoc); | 724 pActionHandler->DoAction_Page(action, CPDF_AAction::ClosePage, pSDKDoc); |
| 725 } | 725 } |
| 726 } | 726 } |
| 727 } | 727 } |
| 728 } | 728 } |
| OLD | NEW |