Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: core/fpdfdoc/doc_annot.cpp

Issue 1840413002: Split core/include/fpdfdoc/fpdf_ap.h (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfdoc/cpvt_provider.h ('k') | core/fpdfdoc/doc_ap.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « core/fpdfdoc/cpvt_provider.h ('k') | core/fpdfdoc/doc_ap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698