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