| 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 "core/fpdfdoc/include/cpdf_annotlist.h" | 7 #include "core/fpdfdoc/include/cpdf_annotlist.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" | 9 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
| 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" | 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" |
| 12 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" | 12 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" |
| 13 #include "core/fpdfdoc/cpvt_generateap.h" | 13 #include "core/fpdfdoc/cpvt_generateap.h" |
| 14 #include "core/fpdfdoc/include/cpdf_annot.h" | 14 #include "core/fpdfdoc/include/cpdf_annot.h" |
| 15 #include "core/fpdfdoc/include/cpdf_interform.h" | 15 #include "core/fpdfdoc/include/cpdf_interform.h" |
| 16 #include "core/fpdfdoc/include/cpdf_occontext.h" | 16 #include "core/fpdfdoc/include/cpdf_occontext.h" |
| 17 #include "core/fxge/include/cfx_renderdevice.h" |
| 17 | 18 |
| 18 CPDF_AnnotList::CPDF_AnnotList(CPDF_Page* pPage) | 19 CPDF_AnnotList::CPDF_AnnotList(CPDF_Page* pPage) |
| 19 : m_pDocument(pPage->m_pDocument) { | 20 : m_pDocument(pPage->m_pDocument) { |
| 20 if (!pPage->m_pFormDict) | 21 if (!pPage->m_pFormDict) |
| 21 return; | 22 return; |
| 22 | 23 |
| 23 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayBy("Annots"); | 24 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayBy("Annots"); |
| 24 if (!pAnnots) | 25 if (!pAnnots) |
| 25 return; | 26 return; |
| 26 | 27 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 CPDF_RenderContext* pContext, | 126 CPDF_RenderContext* pContext, |
| 126 FX_BOOL bPrinting, | 127 FX_BOOL bPrinting, |
| 127 CFX_Matrix* pMatrix, | 128 CFX_Matrix* pMatrix, |
| 128 FX_BOOL bShowWidget, | 129 FX_BOOL bShowWidget, |
| 129 CPDF_RenderOptions* pOptions) { | 130 CPDF_RenderOptions* pOptions) { |
| 130 uint32_t dwAnnotFlags = bShowWidget ? ANNOTFLAG_INVISIBLE | ANNOTFLAG_HIDDEN | 131 uint32_t dwAnnotFlags = bShowWidget ? ANNOTFLAG_INVISIBLE | ANNOTFLAG_HIDDEN |
| 131 : ANNOTFLAG_INVISIBLE; | 132 : ANNOTFLAG_INVISIBLE; |
| 132 DisplayAnnots(pPage, nullptr, pContext, bPrinting, pMatrix, dwAnnotFlags, | 133 DisplayAnnots(pPage, nullptr, pContext, bPrinting, pMatrix, dwAnnotFlags, |
| 133 pOptions, nullptr); | 134 pOptions, nullptr); |
| 134 } | 135 } |
| OLD | NEW |