| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 "fpdfsdk/include/cpdfsdk_pageview.h" | 7 #include "fpdfsdk/include/cpdfsdk_pageview.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" | 12 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
| 13 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" | 13 #include "core/fpdfapi/fpdf_render/cpdf_renderoptions.h" |
| 14 #include "core/fpdfdoc/include/cpdf_annotlist.h" | 14 #include "core/fpdfdoc/include/cpdf_annotlist.h" |
| 15 #include "core/fpdfdoc/include/cpdf_interform.h" | 15 #include "core/fpdfdoc/include/cpdf_interform.h" |
| 16 #include "fpdfsdk/include/cpdfsdk_annot.h" | 16 #include "fpdfsdk/include/cpdfsdk_annot.h" |
| 17 #include "fpdfsdk/include/cpdfsdk_annothandlermgr.h" | 17 #include "fpdfsdk/include/cpdfsdk_annothandlermgr.h" |
| 18 #include "fpdfsdk/include/cpdfsdk_annotiterator.h" | 18 #include "fpdfsdk/include/cpdfsdk_annotiterator.h" |
| 19 #include "fpdfsdk/include/cpdfsdk_environment.h" | 19 #include "fpdfsdk/include/cpdfsdk_environment.h" |
| 20 #include "fpdfsdk/include/cpdfsdk_interform.h" | 20 #include "fpdfsdk/include/cpdfsdk_interform.h" |
| 21 | 21 |
| 22 #ifdef PDF_ENABLE_XFA | 22 #ifdef PDF_ENABLE_XFA |
| 23 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" | 23 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_page.h" |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 return pAnnot; | 582 return pAnnot; |
| 583 } | 583 } |
| 584 return nullptr; | 584 return nullptr; |
| 585 } | 585 } |
| 586 | 586 |
| 587 int CPDFSDK_PageView::GetPageIndexForStaticPDF() const { | 587 int CPDFSDK_PageView::GetPageIndexForStaticPDF() const { |
| 588 CPDF_Dictionary* pDict = GetPDFPage()->m_pFormDict; | 588 CPDF_Dictionary* pDict = GetPDFPage()->m_pFormDict; |
| 589 CPDF_Document* pDoc = m_pSDKDoc->GetPDFDocument(); | 589 CPDF_Document* pDoc = m_pSDKDoc->GetPDFDocument(); |
| 590 return (pDoc && pDict) ? pDoc->GetPageIndex(pDict->GetObjNum()) : -1; | 590 return (pDoc && pDict) ? pDoc->GetPageIndex(pDict->GetObjNum()) : -1; |
| 591 } | 591 } |
| OLD | NEW |