| 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 "core/fpdfapi/fpdf_page/include/cpdf_form.h" |
| 8 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
| 7 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
| 8 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" | 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" |
| 10 #include "core/fpdfapi/fpdf_parser/ipdf_occontext.h" | 12 #include "core/fpdfapi/fpdf_parser/ipdf_occontext.h" |
| 11 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" | 13 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" |
| 12 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" | 14 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" |
| 13 #include "core/include/fpdfapi/fpdf_page.h" | |
| 14 #include "core/include/fpdfapi/fpdf_pageobj.h" | 15 #include "core/include/fpdfapi/fpdf_pageobj.h" |
| 15 #include "core/include/fpdfdoc/fpdf_doc.h" | 16 #include "core/include/fpdfdoc/fpdf_doc.h" |
| 16 | 17 |
| 17 CPDF_AnnotList::CPDF_AnnotList(CPDF_Page* pPage) | 18 CPDF_AnnotList::CPDF_AnnotList(CPDF_Page* pPage) |
| 18 : m_pDocument(pPage->m_pDocument) { | 19 : m_pDocument(pPage->m_pDocument) { |
| 19 if (!pPage->m_pFormDict) | 20 if (!pPage->m_pFormDict) |
| 20 return; | 21 return; |
| 21 | 22 |
| 22 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayBy("Annots"); | 23 CPDF_Array* pAnnots = pPage->m_pFormDict->GetArrayBy("Annots"); |
| 23 if (!pAnnots) | 24 if (!pAnnots) |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 CFX_PathData path; | 346 CFX_PathData path; |
| 346 width /= 2; | 347 width /= 2; |
| 347 path.AppendRect(rect.left + width, rect.bottom + width, rect.right - width, | 348 path.AppendRect(rect.left + width, rect.bottom + width, rect.right - width, |
| 348 rect.top - width); | 349 rect.top - width); |
| 349 int fill_type = 0; | 350 int fill_type = 0; |
| 350 if (pOptions && (pOptions->m_Flags & RENDER_NOPATHSMOOTH)) { | 351 if (pOptions && (pOptions->m_Flags & RENDER_NOPATHSMOOTH)) { |
| 351 fill_type |= FXFILL_NOPATHSMOOTH; | 352 fill_type |= FXFILL_NOPATHSMOOTH; |
| 352 } | 353 } |
| 353 pDevice->DrawPath(&path, pUser2Device, &graph_state, argb, argb, fill_type); | 354 pDevice->DrawPath(&path, pUser2Device, &graph_state, argb, argb, fill_type); |
| 354 } | 355 } |
| OLD | NEW |