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" | 7 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" |
8 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" | 8 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.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_parser/ipdf_occontext.h" | 12 #include "core/fpdfapi/fpdf_parser/ipdf_occontext.h" |
13 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" | 13 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" |
14 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" | 14 #include "core/fpdfapi/fpdf_render/include/cpdf_renderoptions.h" |
| 15 #include "core/fpdfdoc/cpvt_generateap.h" |
15 #include "core/include/fpdfdoc/fpdf_doc.h" | 16 #include "core/include/fpdfdoc/fpdf_doc.h" |
16 #include "core/include/fxge/fx_ge.h" | 17 #include "core/include/fxge/fx_ge.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) |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 CFX_PathData path; | 347 CFX_PathData path; |
347 width /= 2; | 348 width /= 2; |
348 path.AppendRect(rect.left + width, rect.bottom + width, rect.right - width, | 349 path.AppendRect(rect.left + width, rect.bottom + width, rect.right - width, |
349 rect.top - width); | 350 rect.top - width); |
350 int fill_type = 0; | 351 int fill_type = 0; |
351 if (pOptions && (pOptions->m_Flags & RENDER_NOPATHSMOOTH)) { | 352 if (pOptions && (pOptions->m_Flags & RENDER_NOPATHSMOOTH)) { |
352 fill_type |= FXFILL_NOPATHSMOOTH; | 353 fill_type |= FXFILL_NOPATHSMOOTH; |
353 } | 354 } |
354 pDevice->DrawPath(&path, pUser2Device, &graph_state, argb, argb, fill_type); | 355 pDevice->DrawPath(&path, pUser2Device, &graph_state, argb, argb, fill_type); |
355 } | 356 } |
OLD | NEW |